
  :root {
    --red: #E8002A;
    --dark-red: #A8001F;
    --cream: #F5F0E8;
    --dark: #0D0D0D;
    --mid: #1A1A1A;
    --gray: #888;
    --light-gray: #D0CAB8;
    --gold: #FFB800;
    --green: #00C853;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: 'Barlow', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ===== TOP BAR ===== */
  .top-bar {
    background: var(--dark);
    color: var(--cream);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 6px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ticker-wrap {
    overflow: hidden;
    flex: 1;
  }
  .ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
  }
  .ticker-track:hover { animation-play-state: paused; }
  .ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
  }
  .ticker-item span { color: var(--red); font-weight: 700; margin-right: 6px; }
  @keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  /* legacy fallback */
  .top-bar .ticker span { color: var(--red); font-weight: 700; margin-right: 6px; }
  .top-bar .right { display: flex; gap: 20px; }
  .top-bar .right a { color: var(--light-gray); text-decoration: none; }
  .top-bar .right a:hover { color: var(--red); }

  /* ===== HEADER ===== */
  header {
    background: var(--dark);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 24px;
    gap: 24px;
    border-bottom: 3px solid var(--red);
  }
  .logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 52px;
    color: var(--cream);
    letter-spacing: 0.04em;
    line-height: 1;
    padding: 12px 0;
  }
  .logo span { color: var(--red); }
  nav {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
  }
  nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light-gray);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 2px;
    transition: all 0.2s;
  }
  nav a:hover, nav a.active { color: var(--cream); background: var(--red); }
  .header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
  .date-time {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--gray);
    font-size: 13px;
    letter-spacing: 0.05em;
  }
  .live-badge {
    background: var(--red);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse-badge 1.5s ease-in-out infinite;
  }
  .live-dot { width: 7px; height: 7px; background: white; border-radius: 50%; animation: blink 1s ease-in-out infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
  @keyframes pulse-badge { 0%,100%{box-shadow:0 0 0 0 rgba(232,0,42,0.4)} 50%{box-shadow:0 0 0 6px rgba(232,0,42,0)} }

  
  /* ===== LAYOUT ===== */
  .main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 24px;
  }

  /* ===== SECTION LABEL ===== */
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #D0CAB8, transparent);
  }

  /* ===== HERO ===== */
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    grid-template-rows: auto auto;
    gap: 2px;
    margin-bottom: 28px;
    background: #ccc4b0;
  }
  .hero-main {
    grid-row: span 2;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark);
  }
  .hero-main img, .hero-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.75);
  }
  .hero-main:hover img, .hero-side:hover img { transform: scale(1.04); filter: brightness(0.85); }
  .hero-main { min-height: 480px; }
  .hero-side { min-height: 237px; position: relative; overflow: hidden; cursor: pointer; background: var(--dark); }
  .card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
  }
  .card-overlay .category {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--red);
    background: rgba(232,0,42,0.15);
    border: 1px solid var(--red);
    padding: 2px 8px;
    display: inline-block;
    margin-bottom: 8px;
    border-radius: 2px;
  }
  .card-overlay h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: 0.01em;
  }
  .hero-side .card-overlay h2 { font-size: 20px; }
  .card-overlay .meta {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.05em;
  }
  .card-overlay .meta span { color: var(--gold); }

  /* ===== NEWS GRID ===== */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
  }
  .news-card {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }
  .news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
  .news-card-img {
    height: 160px;
    overflow: hidden;
    background: #eee;
  }
  .news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; filter: brightness(0.92); }
  .news-card:hover .news-card-img img { transform: scale(1.06); filter: brightness(1); }
  .news-card-body { padding: 14px 16px 16px; }
  .card-cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
  }
  .news-card-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 8px;
  }
  .news-card-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .card-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.04em;
    display: flex;
    justify-content: space-between;
  }
  .card-meta .reading-time { color: var(--gold); }

  /* ===== 2-COL LAYOUT ===== */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    margin-bottom: 36px;
  }

  /* ===== STANDINGS TABLE ===== */
  .widget-box {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }
  .widget-header {
    background: var(--dark);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .widget-header h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--cream);
    text-transform: uppercase;
  }
  .widget-header a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    color: var(--red);
    text-decoration: none;
    letter-spacing: 0.1em;
  }
  table { width: 100%; border-collapse: collapse; }
  thead tr { background: #f5f0e8; }
  thead th {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gray);
    padding: 8px 12px;
    text-align: left;
    text-transform: uppercase;
  }
  thead th:not(:first-child) { text-align: center; }
  tbody tr {
    border-bottom: 1px solid #f0ebe0;
    transition: background 0.15s;
    cursor: pointer;
  }
  tbody tr:hover { background: #fdf8f0; }
  tbody tr.highlight-row { background: rgba(232,0,42,0.04); border-left: 3px solid var(--red); }
  tbody td {
    padding: 9px 12px;
    font-size: 13px;
    color: var(--dark);
  }
  tbody td:not(:first-child):not(:nth-child(2)) { text-align: center; color: #555; }
  .team-rank {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    width: 24px;
    text-align: center;
    display: inline-block;
  }
  .team-name-cell { font-weight: 600; display: flex; align-items: center; gap: 8px; }
  .team-badge { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; background: #ddd; }
  .pts-cell { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: var(--dark) !important; }
  .form-dots { display: flex; gap: 3px; justify-content: center; }
  .form-dot {
    width: 8px; height: 8px; border-radius: 50%;
  }
  .form-w { background: var(--green); }
  .form-d { background: var(--gold); }
  .form-l { background: var(--red); }

  /* ===== LIVE SCORES FULL WIDGET ===== */
  .live-matches-list { padding: 8px 0; }
  .match-row {
    padding: 12px 16px;
    border-bottom: 1px solid #f0ebe0;
    cursor: pointer;
    transition: background 0.15s;
  }
  .match-row:hover { background: #fdf8f0; }
  .match-row:last-child { border-bottom: none; }
  .match-competition {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  
  .match-team {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    flex: 1;
  }
  .match-team.right { text-align: right; }
  .match-score-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
  }
  .match-score-nums {
    font-family: 'Bebas Neue', cursive;
    font-size: 26px;
    color: var(--dark);
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .match-score-nums.live { color: var(--red); }
  .match-time-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 2px 6px;
    border-radius: 2px;
    margin-top: 3px;
  }

  /* ===== HIGHLIGHTS SECTION ===== */
  .highlights-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
  }
  .highlight-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2px;
    background: var(--dark);
    min-height: 220px;
  }
  .highlight-card img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.55); transition: all 0.4s; }
  .highlight-card:hover img { filter: brightness(0.7); transform: scale(1.04); }
  .highlight-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
  }
  .play-btn {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -60%);
    transition: all 0.3s;
    backdrop-filter: blur(4px);
  }
  .highlight-card:hover .play-btn { background: var(--red); border-color: var(--red); transform: translate(-50%, -60%) scale(1.12); }
  .play-btn svg { width: 16px; height: 16px; fill: white; margin-left: 2px; }
  .highlight-overlay h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 4px;
  }
  .highlight-overlay span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
  }

  /* ===== TRANSFERS ===== */
  .transfer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f0ebe0;
    cursor: pointer;
    transition: background 0.15s;
  }
  .transfer-item:hover { background: #fdf8f0; }
  .transfer-item:last-child { border-bottom: none; }
  .transfer-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8e0d0, #c8bfaa);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
  }
  .transfer-info { flex: 1; }
  .transfer-info .player-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
  }
  .transfer-clubs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    color: var(--gray);
  }
  .transfer-clubs .from { color: #888; }
  .transfer-clubs .arrow { color: var(--red); font-size: 14px; }
  .transfer-clubs .to { color: var(--dark); font-weight: 600; }
  .transfer-fee {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    text-align: right;
  }
  .transfer-fee.loan { color: var(--gold); }
  .transfer-fee.free { color: var(--gray); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark);
    color: var(--cream);
    margin-top: 48px;
    padding: 40px 24px 20px;
  }
  .footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #2a2a2a;
  }
  .footer-brand .logo { font-size: 40px; padding: 0; margin-bottom: 12px; display: block; }
  .footer-brand p { font-size: 13px; color: var(--gray); line-height: 1.6; max-width: 260px; }
  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a {
    font-size: 13px;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--cream); }
  .footer-bottom {
    max-width: 1400px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #555;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.05em;
  }

  /* ===== SCORES MODAL ===== */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
  }
  .modal-overlay.open { display: flex; }
  .modal-box {
    background: var(--cream);
    max-width: 600px;
    width: 90%;
    border-radius: 2px;
    overflow: hidden;
    animation: modal-in 0.3s ease;
  }
  @keyframes modal-in { from{opacity:0;transform:scale(0.95) translateY(20px)} to{opacity:1;transform:none} }
  .modal-header {
    background: var(--dark);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .modal-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.05em;
  }
  .modal-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
  }
  .modal-close:hover { color: var(--red); }
  .modal-body { padding: 20px; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-main { min-height: 320px; }
    .hero-side { min-height: 180px; }
    .news-grid { grid-template-columns: repeat(2,1fr); }
    .two-col { grid-template-columns: 1fr; }
    .highlights-strip { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav a { font-size: 12px; padding: 6px 10px; }
  }
  @media (max-width: 600px) {
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    header { grid-template-columns: 1fr; padding: 12px 16px; }
    .header-right { display: none; }
  }

  /* ===== SKELETON LOADING ===== */
  .skeleton-box {
    background: linear-gradient(90deg, #e8e0d0 25%, #d8d0c0 50%, #e8e0d0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 2px;
  }
  @keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

  /* Fade in on load */
  .main-wrapper, header {
    animation: fade-up 0.5s ease both;
  }
  .main-wrapper { animation-delay: 0.1s; }
  @keyframes fade-up { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }

  /* selected tab */
  .tab-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    color: var(--gray);
  }
  .tab-btn.active, .tab-btn:hover { background: var(--red); color: white; }
  .tab-group { display: flex; gap: 4px; padding: 10px 12px; border-bottom: 1px solid #f0ebe0; }

/* ===== ADDITIONAL SEO THEME STYLES ===== */
.cat-label { display:inline-block;padding:3px 10px;font-family:'Barlow Condensed',sans-serif;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;text-decoration:none;color:white;background:var(--red);border-radius:2px; }
.cat-label.cat-basketbol { background:#E65100; }
.cat-label.cat-voleybol { background:#6A1B9A; }
.cat-label.cat-transfer { background:#1565C0; }
.cat-label.cat-avrupa { background:#00695C; }
.cat-label.cat-milli-takim { background:#B71C1C; }
.cat-label.cat-atletizm { background:#558B2F; }
.article-wrap { max-width:820px;margin:0 auto;padding:40px 24px 80px; }
.article-header { margin-bottom:32px; }
.article-title { font-family:'Bebas Neue',sans-serif;font-size:clamp(32px,5vw,56px);line-height:1.05;color:var(--dark);margin:16px 0 20px; }
.article-meta { display:flex;align-items:center;gap:16px;flex-wrap:wrap;font-family:'Barlow',sans-serif;font-size:13px;color:var(--gray); }
.article-meta .source-link { color:var(--red);text-decoration:none;font-weight:600; }
.article-hero-img { width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:2px;margin-bottom:32px; }
.article-body { font-family:'Barlow',sans-serif;font-size:17px;line-height:1.75;color:#1a1a1a; }
.article-body p { margin-bottom:20px; }
.article-body a { color:var(--red); }
.article-source-box { margin-top:40px;padding:20px 24px;background:#f8f8f8;border-left:4px solid var(--red);border-radius:2px; }
.article-source-box p { margin:0;font-family:'Barlow',sans-serif;font-size:14px;color:var(--gray); }
.article-source-box a { color:var(--red);font-weight:700; }
.related-section { margin-top:60px;padding-top:32px;border-top:2px solid #eee; }
.related-section h3 { font-family:'Barlow Condensed',sans-serif;font-size:20px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;margin-bottom:20px; }
.related-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:20px; }
.related-card { text-decoration:none;color:inherit;display:block; }
.related-card img { width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:2px;margin-bottom:10px; }
.related-card h4 { font-family:'Barlow Condensed',sans-serif;font-size:16px;font-weight:700;line-height:1.3;color:var(--dark); }
.related-card:hover h4 { color:var(--red); }
.archive-header { padding: 28px 24px 20px; border-bottom: 3px solid var(--red); margin-bottom: 32px; background: white; }
.archive-title { font-family:'Bebas Neue',sans-serif; font-size: 40px; color: var(--dark); margin: 8px 0 0; }
.archive-desc { font-family:'Barlow',sans-serif; font-size: 15px; color: var(--gray); margin-top: 8px; }
.breadcrumb { font-family:'Barlow',sans-serif; font-size: 13px; color: var(--gray); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gray); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: #bbb; }

/* ── Archive grid (restored after refactor) ── */
.archive-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:40px; }
@media(max-width:640px) { .archive-grid { grid-template-columns:1fr; } }
.archive-card { display:block; text-decoration:none; color:inherit; background:white; border-radius:2px; overflow:hidden; box-shadow:0 1px 4px rgba(0,0,0,0.07); transition:transform 0.2s; }
.archive-card:hover { transform:translateY(-2px); }
.archive-card img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.archive-card-body { padding:14px 16px 16px; }
.archive-card h2 { font-family:'Barlow Condensed',sans-serif; font-size:20px; font-weight:700; line-height:1.3; color:var(--dark); margin:8px 0 6px; }
.archive-card:hover h2 { color:var(--red); }
.archive-card .meta { font-family:'Barlow',sans-serif; font-size:12px; color:var(--gray); }

/* ── Pagination ── */
.pagination { display:flex; gap:8px; justify-content:center; margin:40px 0; flex-wrap:wrap; }
.pagination a, .pagination span { padding:8px 14px; font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:15px; border:2px solid #eee; border-radius:2px; text-decoration:none; color:var(--dark); }
.pagination .current { background:var(--red); color:white; border-color:var(--red); }
.pagination a:hover { border-color:var(--red); color:var(--red); }
