/*
Theme Name: TysTake
Theme URI: https://tystake.com
Author: TysTake
Author URI: https://tystake.com
Description: Custom theme for TysTake.com - Sports & Music Blog
Version: 1.0
License: GNU General Public License v2 or later
Tags: sports, blog, music, custom
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --bg:          #f0e8d8;
  --bg-card:     #ffffff;
  --bg-nav:      #e8dcc8;
  --bg-footer:   #1a1a1a;
  --navy:        #1a3a8f;
  --red:         #cc1b1b;
  --tan-border:  #d8ccb8;
  --tan-dark:    #c8b89a;
  --text-dark:   #1a1a1a;
  --text-mid:    #555555;
  --text-light:  #999999;
  --chrome:      #c0c0c0;
  --orange:      #e87722;
  --shadow-sm:   0 1px 6px rgba(0,0,0,0.07);
  --shadow-md:   0 3px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 6px 28px rgba(0,0,0,0.13);
  --radius:      5px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}

.display-title {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  background: var(--bg-nav);
  border-bottom: 3px solid var(--navy);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  letter-spacing: 1px;
  line-height: 1;
}

.site-logo .logo-text span { color: var(--red); }
.site-logo .logo-text small {
  color: var(--text-light);
  font-size: 16px;
  letter-spacing: 0px;
}

.primary-nav {
  display: flex;
  align-items: center;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav li {
  position: relative;
}

.primary-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  display: block;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current-menu-parent > a {
  background: var(--navy);
  color: #fff;
}

/* Dropdown */
.primary-nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--tan-border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  z-index: 200;
  flex-direction: column;
  gap: 0;
  padding: 6px 0;
}

.primary-nav li:hover > ul {
  display: flex;
}

.primary-nav ul ul a {
  font-size: 12px;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 0;
  letter-spacing: 1px;
}

.primary-nav ul ul a:hover {
  background: var(--bg);
  color: var(--red);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* ============================================
   HERO / FEATURED SECTION
   ============================================ */
.hero-section {
  background: linear-gradient(160deg, #ddd0b8 0%, var(--bg) 60%);
  border-bottom: 1px solid var(--tan-border);
  padding: 32px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

/* Featured Article */
.featured-article {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--tan-border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.featured-article:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.14);
}

.featured-article .article-thumb {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), #0d1f50);
}

.featured-article .article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.featured-article:hover .article-thumb img {
  transform: scale(1.02);
}

.featured-article .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f50 100%);
  font-size: 80px;
}

.featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(204,27,27,0.4);
}

.featured-article .article-body {
  padding: 22px 24px 26px;
}

.featured-article .article-cat {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.featured-article .article-title {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.featured-article .article-excerpt {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.featured-article .article-meta {
  color: var(--text-light);
  font-size: 12px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

/* Recent sidebar */
.recent-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.recent-sidebar h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  letter-spacing: 1px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px;
  margin-bottom: 4px;
}

.sidebar-post {
  background: var(--bg-card);
  border: 1px solid var(--tan-border);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.sidebar-post:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.sidebar-post-thumb {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), #0d1f50);
}

.sidebar-post-thumb.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.sidebar-post-cat {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.sidebar-post-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-top: 3px;
}

.sidebar-post-meta {
  color: var(--text-light);
  font-size: 11px;
  margin-top: 4px;
}

/* ============================================
   ARTICLE GRID (HOME)
   ============================================ */
.articles-section {
  padding: 40px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--tan-border);
}

.section-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-dark);
  letter-spacing: 1px;
  position: relative;
  padding-left: 14px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--red);
  border-radius: 2px;
}

.section-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.section-link:hover { color: var(--red); border-bottom-color: var(--red); }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Article Card */
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--tan-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-card .card-thumb {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy), #0d1f50);
}

.article-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.article-card:hover .card-thumb img {
  transform: scale(1.02);
}

.article-card .card-thumb .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.card-top-accent {
  height: 3px;
  background: var(--navy);
}

.article-card:nth-child(2) .card-top-accent { background: var(--red); }
.article-card:nth-child(3) .card-top-accent { background: var(--orange); }
.article-card:nth-child(4) .card-top-accent { background: var(--chrome); }

.article-card .card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-cat {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  flex: 1;
  margin-bottom: 12px;
}

.card-title a:hover { color: var(--red); }

.card-meta {
  color: var(--text-light);
  font-size: 11px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  border-top: 1px solid var(--tan-border);
  padding-top: 10px;
  margin-top: auto;
}

/* ============================================
   SINGLE POST
   ============================================ */
.single-post {
  padding: 40px 0 60px;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.post-header { margin-bottom: 24px; }

.post-cat {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.post-title {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.post-meta {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.5px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--tan-border);
  margin-bottom: 24px;
}

.post-featured-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
}

.post-content {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mid);
}

.post-content p { margin-bottom: 20px; }
.post-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-dark);
  margin: 32px 0 14px;
  letter-spacing: 0.3px;
}
.post-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 10px;
}
.post-content blockquote {
  border-left: 4px solid var(--red);
  padding: 12px 20px;
  margin: 24px 0;
  background: rgba(204,27,27,0.05);
  font-style: italic;
  color: var(--text-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-content ul, .post-content ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
.post-content li { margin-bottom: 6px; }
.post-content a { color: var(--navy); border-bottom: 1px solid var(--navy); }
.post-content a:hover { color: var(--red); border-bottom-color: var(--red); }

/* Post Sidebar */
.post-sidebar { position: sticky; top: 90px; }

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--tan-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}

/* ============================================
   SCORES TICKER
   ============================================ */
.scores-ticker-bar {
  background: #111;
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 42px;
}

.ticker-tabs {
  display: flex;
  flex-shrink: 0;
  border-right: 1px solid #333;
}

.ticker-tab {
  background: #1a1a1a;
  color: rgba(255,255,255,0.6);
  border: none;
  padding: 0 14px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid #2a2a2a;
  white-space: nowrap;
}

.ticker-tab:hover { background: #222; color: #fff; }

.ticker-tab.active {
  background: var(--red);
  color: #fff;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: default;
  min-width: 0;
}

.ticker-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  will-change: transform;
  gap: 8px;
  width: 100%;
  text-align: center;
}

.ticker-item {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: #e0e0e0;
  letter-spacing: 0.5px;
  margin-right: 8px;
}

.ticker-sep {
  color: #444;
  margin-right: 8px;
  font-size: 10px;
}

.ticker-live {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  animation: pulse 1.5s infinite;
  margin-left: 4px;
}

.ticker-final {
  color: #888;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 4px;
}

.ticker-upcoming {
  color: #4a9eff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-left: 4px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes flipOut {
  0%   { transform: rotateX(0deg); opacity: 1; }
  100% { transform: rotateX(90deg); opacity: 0; }
}

@keyframes flipIn {
  0%   { transform: rotateX(-90deg); opacity: 0; }
  100% { transform: rotateX(0deg); opacity: 1; }
}

.ticker-static {
  gap: 8px;
  padding: 0 16px;
}

.ticker-card {
  display: inline-block;
  perspective: 400px;
  transform-style: preserve-3d;
}

.flip-out {
  animation: flipOut 0.2s ease-in forwards;
}

.flip-in {
  animation: flipIn 0.3s ease-out forwards;
}

@media (max-width: 768px) {
  .ticker-tab { padding: 0 10px; font-size: 10px; }
  .ticker-item { font-size: 12px; }
  .scores-ticker-bar { flex-direction: column; min-height: auto; }
  .ticker-tabs { border-right: none; border-bottom: 1px solid #333; width: 100%; justify-content: center; }
  .ticker-tab { flex: 1; text-align: center; padding: 6px 0; }
  .ticker-track { width: 100%; padding: 6px 0; min-height: 32px; }
}

/* ============================================
   CATEGORY BAR
   ============================================ */
.category-bar {
  background: var(--navy);
  padding: 10px 0;
  overflow-x: auto;
}

.category-bar-inner {
  display: flex;
  gap: 4px;
  align-items: center;
}

.cat-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 6px 16px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.cat-link:hover, .cat-link.active {
  background: var(--red);
  color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-footer);
  color: #aaa;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
  margin-bottom: 20px;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.footer-brand .footer-logo span { color: var(--red); }

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  color: #777;
  max-width: 260px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}

.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: #777;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #555;
}

/* ============================================
   UTILITY
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(204,27,27,0.3);
}
.btn-primary:hover { background: #a81515; color: #fff; }

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: #122d72; color: #fff; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: 56px 0 48px;
  background: linear-gradient(160deg, #ddd0b8 0%, var(--bg) 65%);
  border-bottom: 1px solid var(--tan-border);
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy), #0d1f50);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 96px;
  color: rgba(255,255,255,0.15);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.about-photo-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--red);
  border-radius: 6px;
  z-index: 0;
}

.about-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.about-name {
  font-family: var(--font-display);
  font-size: 58px;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.about-tagline {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--tan-border);
}

.about-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
}

.about-content p { margin-bottom: 16px; }

/* Covers grid */
.about-covers {
  padding: 52px 0;
  border-bottom: 1px solid var(--tan-border);
}

.covers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cover-card {
  background: var(--bg-card);
  border: 1px solid var(--tan-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 3px solid var(--navy);
}

.cover-card:nth-child(2) { border-top-color: var(--red); }
.cover-card:nth-child(3) { border-top-color: var(--orange); }
.cover-card:nth-child(4) { border-top-color: var(--chrome); }

.cover-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cover-icon {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1;
}

.cover-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.cover-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Latest section on about */
.about-latest {
  padding: 52px 0 64px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .covers-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-inner { grid-template-columns: 260px 1fr; gap: 36px; }
  .about-name { font-size: 44px; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .recent-sidebar { display: none; }
  .primary-nav { display: none; }
  .primary-nav.open { display: flex; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-photo-wrap { max-width: 280px; margin: 0 auto; }
  .about-name { font-size: 38px; }
  .covers-grid { grid-template-columns: repeat(2, 1fr); }
  .primary-nav.open {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0; right: 0;
    background: var(--bg-nav);
    border-bottom: 2px solid var(--navy);
    padding: 12px 24px;
    z-index: 99;
  }
  .primary-nav.open > ul {
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }
  .primary-nav.open ul ul {
    position: static;
    display: flex;
    border: none;
    border-left: 3px solid var(--red);
    border-top: none;
    box-shadow: none;
    padding: 4px 0 4px 12px;
    margin-top: 2px;
    min-width: unset;
  }
  .nav-hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .post-title { font-size: 32px; }
}

@media (max-width: 480px) {
  .articles-grid { grid-template-columns: 1fr; }
  .featured-article .article-title { font-size: 24px; }
}
