/* ── Fonts ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Paper texture ─────────────────────────────────────────── */
body {
  font-family: 'Special Elite', 'Courier New', monospace;
  background-color: #D6E4F0;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.paper-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: multiply;
  opacity: 0.55;
}

/* Stack content above grain */
nav, main, footer, header, section, article, .admin-wrap, .admin-login-wrap {
  position: relative;
  z-index: 1;
}

/* ── Links ─────────────────────────────────────────────────── */
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

/* ── Hover smudge effect ───────────────────────────────────── */
.nav-link,
.home-page-link,
.footer-icon-link,
.footer-admin-link,
.table-link,
.back-link,
.btn-primary,
.btn-secondary,
.admin-nav-link,
.admin-dashboard-card,
.page-select-card,
.action-btn {
  transition: box-shadow 0.18s ease, color 0.18s ease, background-color 0.18s ease;
  border-radius: 2px;
  padding: 3px 6px;
  display: inline-block;
}

.nav-link:hover,
.home-page-link:hover,
.footer-admin-link:hover,
.back-link:hover,
.table-link:hover,
.admin-nav-link:hover,
.page-select-card:hover,
.action-btn:hover {
  color: #FAF0E6;
  background-color: rgba(75, 79, 84, 0.18);
  box-shadow: 0 0 10px 5px rgba(75, 79, 84, 0.38);
}

.footer-icon-link:hover {
  color: #FAF0E6;
  background-color: rgba(75, 79, 84, 0.18);
  box-shadow: 0 0 10px 5px rgba(75, 79, 84, 0.38);
  border-radius: 50%;
  padding: 6px;
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  background-color: rgba(214, 228, 240, 0.92);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(4px);
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.navbar-brand {
  font-size: 1.15rem;
  font-weight: normal;
  letter-spacing: 0.03em;
  padding: 4px 6px;
  transition: box-shadow 0.18s ease, color 0.18s ease, background-color 0.18s ease;
  border-radius: 2px;
}

.navbar-brand:hover {
  color: #FAF0E6;
  background-color: rgba(75, 79, 84, 0.18);
  box-shadow: 0 0 10px 5px rgba(75, 79, 84, 0.38);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.nav-link.active {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 6px;
  font-family: inherit;
  color: #000;
  transition: box-shadow 0.18s ease, color 0.18s ease, background-color 0.18s ease;
  border-radius: 2px;
}

.nav-toggle:hover {
  color: #FAF0E6;
  background-color: rgba(75, 79, 84, 0.18);
  box-shadow: 0 0 10px 5px rgba(75, 79, 84, 0.38);
}

/* ── Main content ──────────────────────────────────────────── */
.main-content {
  flex: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* ── Homepage ──────────────────────────────────────────────── */
.home-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 3rem;
}

/* Hero row: text left, headshot right */
.home-hero {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.home-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.home-headshot-wrap {
  flex-shrink: 0;
  width: 220px;
  display: flex;
  align-items: flex-start;
}

.home-headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 50%;
}

.home-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: normal;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 1.1rem;
}

.home-subhead {
  font-size: clamp(0.95rem, 2.5vw, 1.18rem);
  max-width: 620px;
  line-height: 1.6;
  opacity: 0.85;
}

.home-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-bottom: 3.5rem;
}

.home-page-link {
  font-size: clamp(1.35rem, 3.5vw, 2.1rem);
  letter-spacing: 0.02em;
  padding: 4px 8px;
}

/* ── Featured content ──────────────────────────────────────── */
.featured-heading {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 1rem;
  font-weight: normal;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.featured-card {
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 3px;
  background-color: rgba(250, 240, 230, 0.35);
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.featured-card:hover {
  background-color: rgba(250, 240, 230, 0.6);
  border-color: rgba(75, 79, 84, 0.4);
  box-shadow: 0 2px 12px rgba(75, 79, 84, 0.18);
}

.featured-card-link {
  display: block;
  padding: 0;
  color: inherit;
}

.featured-card-inner {
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.featured-outlet {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

.featured-headline {
  font-size: 1.05rem;
  font-weight: normal;
  line-height: 1.35;
}

.featured-subhead {
  font-size: 0.88rem;
  opacity: 0.72;
  line-height: 1.4;
}

.featured-date {
  font-size: 0.78rem;
  opacity: 0.55;
  margin-top: 0.25rem;
}

/* ── Content pages ─────────────────────────────────────────── */
.page-container {
  padding-top: 0.5rem;
}

.page-heading {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: normal;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.featured-section {
  margin-bottom: 2.5rem;
}

/* ── Content table ─────────────────────────────────────────── */
.content-table-section {
  overflow-x: auto;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.content-table thead th {
  text-align: left;
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.5;
  padding: 0 0.5rem 0.65rem;
  font-weight: normal;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.content-table tbody .content-row td {
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: top;
  line-height: 1.45;
}

.col-outlet { width: 18%; min-width: 110px; }
.col-headline { width: 52%; }
.col-subhead { width: 35%; }
.col-date { width: 14%; min-width: 100px; white-space: nowrap; font-size: 0.85rem; opacity: 0.7; }

.table-link {
  padding: 1px 3px;
}

.empty-message {
  opacity: 0.5;
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* ── Article detail ────────────────────────────────────────── */
.article-container {
  max-width: 720px;
}

.back-link {
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 2rem;
  opacity: 0.7;
}

.back-link:hover {
  opacity: 1;
}

.article-headline {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.article-date {
  font-size: 0.83rem;
  opacity: 0.55;
  margin-bottom: 0.5rem;
}

.article-subhead {
  font-size: 1.1rem;
  opacity: 0.75;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.article-content {
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 1.5rem;
}

.article-content p { margin-bottom: 1em; }
.article-content h1, .article-content h2, .article-content h3 {
  font-weight: normal;
  margin-bottom: 0.75em;
  margin-top: 1.5em;
}
.article-content a { text-decoration: underline; text-underline-offset: 2px; }
.article-content img { max-width: 100%; height: auto; margin: 1rem 0; }
.article-content ul, .article-content ol { padding-left: 1.5em; margin-bottom: 1em; }
.article-content li { margin-bottom: 0.4em; }
.article-content blockquote {
  border-left: 3px solid rgba(0,0,0,0.2);
  padding-left: 1em;
  opacity: 0.8;
  margin: 1em 0;
}

/* ── Article video embed ───────────────────────────────────── */
.article-video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  margin-bottom: 1.75rem;
  border-radius: 3px;
  background-color: #000;
}

.article-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 1.25rem 1.5rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  opacity: 0.7;
  transition: opacity 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.footer-icon-link:hover {
  opacity: 1;
}

.footer-admin-link {
  font-size: 0.78rem;
  opacity: 0.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-admin-link:hover {
  opacity: 1;
}

/* ── Flash messages ────────────────────────────────────────── */
.flash-messages {
  margin-bottom: 1.25rem;
}

.flash {
  padding: 0.65rem 1rem;
  border-radius: 3px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.flash-success {
  background-color: rgba(0, 100, 50, 0.1);
  border: 1px solid rgba(0, 100, 50, 0.25);
  color: #1a5c35;
}

.flash-error {
  background-color: rgba(180, 30, 30, 0.1);
  border: 1px solid rgba(180, 30, 30, 0.25);
  color: #8b1a1a;
}

/* ── Admin shared ──────────────────────────────────────────── */
.admin-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-header {
  background-color: rgba(214, 228, 240, 0.95);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-title {
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.03em;
}

.admin-nav {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.admin-nav-link {
  font-size: 0.84rem;
  opacity: 0.7;
}

.admin-nav-link:hover { opacity: 1; }

.admin-main {
  padding: 2rem 1.5rem 3rem;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
}

.admin-section-label {
  font-size: 0.85rem;
  opacity: 0.6;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

/* ── Admin login ───────────────────────────────────────────── */
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.admin-login-box {
  width: 100%;
  max-width: 380px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  padding: 2.25rem 2rem;
  background-color: rgba(250, 240, 230, 0.3);
}

.admin-login-title {
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 1.5rem;
  text-align: center;
}

.login-error {
  background-color: #c0392b;
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  border-radius: 3px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.settings-error {
  background-color: rgba(180, 30, 30, 0.12);
  border: 1px solid rgba(180, 30, 30, 0.3);
  color: #8b1a1a;
  padding: 0.65rem 1rem;
  border-radius: 3px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* ── Forms ─────────────────────────────────────────────────── */
.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.83rem;
  opacity: 0.65;
  letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="url"],
.form-group input[type="email"],
.form-group textarea {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.95rem;
  background-color: rgba(250, 240, 230, 0.5);
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 3px;
  padding: 0.55rem 0.75rem;
  color: #000;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(75, 79, 84, 0.5);
  box-shadow: 0 0 0 2px rgba(75, 79, 84, 0.12);
}

.required { color: #8b1a1a; }

/* Quill editor */
.quill-editor-box {
  background-color: rgba(250, 240, 230, 0.5);
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 0 0 3px 3px;
  min-height: 280px;
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.95rem;
}

.ql-toolbar {
  background-color: rgba(214, 228, 240, 0.6);
  border: 1px solid rgba(0,0,0,0.2) !important;
  border-bottom: none !important;
  border-radius: 3px 3px 0 0;
  font-family: inherit;
}

.ql-container {
  border: none !important;
  font-family: 'Special Elite', 'Courier New', monospace !important;
  font-size: 0.95rem !important;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary,
.btn-secondary {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 3px;
  padding: 0.55rem 1.25rem;
  letter-spacing: 0.04em;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: rgba(75, 79, 84, 0.85);
  color: #FAF0E6;
  border-color: rgba(75, 79, 84, 0.85);
}

.btn-primary:hover {
  background-color: rgba(75, 79, 84, 1);
  box-shadow: 0 0 10px 4px rgba(75, 79, 84, 0.35);
  color: #FAF0E6;
}

.btn-secondary {
  background-color: transparent;
  color: #000;
}

.btn-secondary:hover {
  color: #FAF0E6;
  background-color: rgba(75, 79, 84, 0.18);
  box-shadow: 0 0 10px 5px rgba(75, 79, 84, 0.38);
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ── Admin dashboard cards ─────────────────────────────────── */
.admin-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.admin-dashboard-card {
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  background-color: rgba(250, 240, 230, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background-color 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.admin-dashboard-card:hover {
  background-color: rgba(75, 79, 84, 0.1);
  box-shadow: 0 0 14px 4px rgba(75, 79, 84, 0.2);
  color: inherit;
}

.admin-card-icon {
  font-size: 1.8rem;
  opacity: 0.6;
  margin-bottom: 0.25rem;
}

.admin-card-title {
  font-size: 1.15rem;
  font-weight: normal;
}

.admin-card-desc {
  font-size: 0.83rem;
  opacity: 0.6;
  line-height: 1.5;
}

/* ── Page select ───────────────────────────────────────────── */
.page-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.page-select-card {
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 3px;
  padding: 1.1rem 1.25rem;
  background-color: rgba(250, 240, 230, 0.3);
  font-size: 0.95rem;
  text-align: center;
  display: block;
  transition: background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

/* ── Manage table ──────────────────────────────────────────── */
.manage-filter {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

.manage-filter select {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.85rem;
  background-color: rgba(250, 240, 230, 0.5);
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 3px;
  padding: 0.3rem 0.6rem;
  color: #000;
  cursor: pointer;
}

.manage-table-wrap {
  overflow-x: auto;
}

.manage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.manage-table thead th {
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  padding: 0 0.6rem 0.6rem;
  font-weight: normal;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  white-space: nowrap;
}

.manage-table tbody .manage-row td {
  padding: 0.65rem 0.6rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: top;
  line-height: 1.4;
}

.manage-page-cell { opacity: 0.65; font-size: 0.82rem; white-space: nowrap; }
.manage-headline-cell { max-width: 300px; }
.manage-date-cell { white-space: nowrap; opacity: 0.65; font-size: 0.82rem; }
.manage-featured-cell { }
.manage-actions-cell { white-space: nowrap; }

.featured-tag {
  display: inline-block;
  font-size: 0.72rem;
  padding: 1px 5px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 10px;
  opacity: 0.7;
  margin-right: 3px;
}

.not-featured { opacity: 0.3; }

.action-btn {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.78rem;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 2px;
  padding: 2px 7px;
  color: #000;
  margin-right: 3px;
}

.action-btn-danger {
  border-color: rgba(180, 30, 30, 0.35);
  color: #8b1a1a;
}

.action-btn-danger:hover {
  background-color: rgba(180, 30, 30, 0.15) !important;
  box-shadow: 0 0 8px 3px rgba(180, 30, 30, 0.2) !important;
  color: #8b1a1a !important;
}

.delete-form {
  display: inline;
}

.admin-empty {
  opacity: 0.55;
  font-size: 0.95rem;
}

.admin-empty a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Settings sections ─────────────────────────────────────── */
.settings-section {
  margin-bottom: 2rem;
}

.settings-section-title {
  font-size: 1.15rem;
  font-weight: normal;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.settings-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 2rem 0;
}

/* ── Radio buttons ─────────────────────────────────────────── */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  line-height: 1.45;
}

.radio-label input[type="radio"] {
  margin-top: 2px;
  accent-color: #4B4F54;
  flex-shrink: 0;
}

/* ── Feature form ──────────────────────────────────────────── */
.feature-article-info {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 3px;
  padding: 1rem 1.25rem;
  background-color: rgba(250, 240, 230, 0.25);
  margin-bottom: 1.5rem;
}

.feature-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.25rem;
}

.feature-headline {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-page {
  font-size: 0.82rem;
  opacity: 0.6;
}

.feature-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.feature-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  cursor: pointer;
}

.feature-checkbox-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: #4B4F54;
}

.feature-note {
  font-size: 0.78rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 700px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    padding-bottom: 0.5rem;
  }

  .nav-links.open {
    display: flex;
  }

  .navbar-inner {
    flex-wrap: wrap;
  }

  .home-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .home-page-link {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .content-table thead th,
  .col-subhead {
    font-size: 0.72rem;
  }

  .col-outlet { width: 28%; }
  .col-headline { width: 44%; }
  .col-date { width: 18%; }

  .admin-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .manage-table {
    font-size: 0.8rem;
  }

  .admin-main {
    padding: 1.25rem 1rem 2rem;
  }

  .main-content {
    padding: 1.5rem 1rem 2rem;
  }

  .home-inner {
    padding: 2rem 1rem 2rem;
  }

  .home-hero {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .home-headshot-wrap {
    width: 200px;
    height: 200px;
    order: 1;
  }

  .home-text {
    order: 0;
    width: 100%;
  }
}

@media (min-width: 701px) and (max-width: 960px) {
  .home-headshot-wrap {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .manage-table .manage-page-cell,
  .manage-table .manage-featured-cell {
    display: none;
  }
}
