/*
Theme Name: Depor Fan
Theme URI: https://deportivo-la-coruna.com
Author: Depor Fan Site
Description: Unofficial Deportivo de La Coruña fan site & Spanish football resource
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: depor-fan
*/

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
    --df-blue:        #003DA5;
    --df-blue-dark:   #002878;
    --df-blue-light:  #1a5bb5;
    --df-white:       #ffffff;
    --df-gold:        #C8A84B;
    --df-gold-light:  #e8c96e;
    --df-gray-light:  #f4f6f9;
    --df-gray-mid:    #e1e5ee;
    --df-gray:        #6b7280;
    --df-text:        #1a1f2e;
    --df-text-light:  #4a5568;

    --df-font-serif:  'Source Serif 4', Georgia, serif;
    --df-font-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --df-radius:      6px;
    --df-radius-lg:   12px;
    --df-shadow:      0 2px 8px rgba(0,0,0,0.08);
    --df-shadow-md:   0 4px 16px rgba(0,0,0,0.12);

    --df-max-width:   1200px;
    --df-content-width: 760px;
}

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

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

body {
    font-family: var(--df-font-sans);
    color: var(--df-text);
    background: var(--df-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--df-blue); text-decoration: none; }
a:hover { color: var(--df-blue-dark); text-decoration: underline; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--df-font-serif);
    font-weight: 700;
    line-height: 1.25;
    color: var(--df-text);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.875rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.375rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1.25rem; color: var(--df-text-light); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.df-container {
    max-width: var(--df-max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.df-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.df-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.df-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; }

/* ============================================================
   HEADER
   ============================================================ */
.df-header {
    background: var(--df-blue);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,61,165,0.4);
}

.df-header__inner {
    max-width: var(--df-max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.df-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.df-logo__text {
    color: var(--df-white);
    font-family: var(--df-font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
}

.df-logo__sub {
    color: var(--df-gold);
    font-family: var(--df-font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
}

/* Nav */
.df-nav { display: flex; align-items: center; gap: 0.25rem; }

.df-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    border-radius: var(--df-radius);
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}

.df-nav a:hover, .df-nav a.current {
    background: rgba(255,255,255,0.12);
    color: var(--df-white);
}

/* Mobile menu toggle */
.df-menu-toggle {
    display: none;
    background: none;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--df-white);
    padding: 0.4rem 0.7rem;
    border-radius: var(--df-radius);
    cursor: pointer;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .df-menu-toggle { display: block; }
    .df-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--df-blue-dark);
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem;
        gap: 0.25rem;
    }
    .df-nav.open { display: flex; }
    .df-nav a { padding: 0.75rem 1rem; }
    .df-lang-switch { gap: 0.35rem; }
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.df-lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

.df-lang-switch a {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: color 0.15s, border-color 0.15s;
}

.df-lang-switch a:hover,
.df-lang-switch a.current-lang {
    color: var(--df-gold);
    border-color: var(--df-gold);
}

/* Polylang outputs <li> directly inside the div — strip all list chrome */
.df-lang-switch ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: contents; /* let the div's flex handle layout */
}
.df-lang-switch li {
    list-style: none;
    display: flex;      /* override display:list-item which causes bullets */
    align-items: center;
    margin: 0;
    padding: 0;
}


/* ============================================================
   HERO
   ============================================================ */
.df-hero {
    background: linear-gradient(135deg, var(--df-blue-dark) 0%, var(--df-blue) 60%, #1a5bb5 100%);
    color: var(--df-white);
    padding: 4rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.df-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(200,168,75,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.df-hero__badge {
    display: inline-block;
    background: var(--df-gold);
    color: var(--df-blue-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.df-hero h1 {
    color: var(--df-white);
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 1rem;
}

.df-hero__sub {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 2rem;
}

.df-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.df-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--df-radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.15s;
    cursor: pointer;
    border: none;
}

.df-btn--primary {
    background: var(--df-gold);
    color: var(--df-blue-dark);
}
.df-btn--primary:hover {
    background: var(--df-gold-light);
    color: var(--df-blue-dark);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--df-shadow-md);
}

.df-btn--outline {
    background: transparent;
    color: var(--df-white);
    border: 2px solid rgba(255,255,255,0.5);
}
.df-btn--outline:hover {
    background: rgba(255,255,255,0.1);
    color: var(--df-white);
    text-decoration: none;
}

.df-btn--blue {
    background: var(--df-blue);
    color: var(--df-white);
}
.df-btn--blue:hover {
    background: var(--df-blue-dark);
    color: var(--df-white);
    text-decoration: none;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.df-section {
    padding: 4rem 0;
}

.df-section--gray { background: var(--df-gray-light); }
.df-section--blue { background: var(--df-blue); color: var(--df-white); }
.df-section--blue h2, .df-section--blue h3 { color: var(--df-white); }
.df-section--blue p { color: rgba(255,255,255,0.8); }

.df-section__header {
    margin-bottom: 2.5rem;
}

.df-section__eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--df-gold);
    margin-bottom: 0.5rem;
}

.df-section__header h2 { margin-bottom: 0.5rem; }
.df-section__header p { max-width: 560px; }

.df-section__footer { margin-top: 2rem; text-align: center; }

/* ============================================================
   CARDS
   ============================================================ */
/* Player card */
.df-player-card {
    background: var(--df-white);
    border-radius: var(--df-radius-lg);
    box-shadow: var(--df-shadow);
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
    display: block;
    color: var(--df-text);
}

.df-player-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--df-shadow-md);
    text-decoration: none;
    color: var(--df-text);
}

.df-player-card__img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top center;
    background: var(--df-blue);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 3rem;
}

.df-player-card__body { padding: 1rem 1.25rem 1.25rem; }

.df-player-card__pos {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--df-gold);
    margin-bottom: 0.25rem;
}

.df-player-card__name {
    font-family: var(--df-font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.df-player-card__years {
    font-size: 0.8rem;
    color: var(--df-gray);
}

.df-player-card__stats {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--df-gray-mid);
}

.df-stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.df-stat-pill__num {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--df-blue);
    line-height: 1;
}

.df-stat-pill__label {
    font-size: 0.65rem;
    color: var(--df-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Content card (articles, history) */
.df-content-card {
    background: var(--df-white);
    border-radius: var(--df-radius-lg);
    box-shadow: var(--df-shadow);
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: var(--df-text);
    transition: transform 0.15s, box-shadow 0.15s;
}

.df-content-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--df-shadow-md);
    text-decoration: none;
    color: var(--df-text);
}

.df-content-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--df-gray-mid);
}

.df-content-card__body { padding: 1.25rem; }

.df-content-card__tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--df-blue);
    margin-bottom: 0.4rem;
    display: block;
}

.df-content-card__title {
    font-family: var(--df-font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.df-content-card__excerpt {
    font-size: 0.875rem;
    color: var(--df-gray);
    line-height: 1.55;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Stadium card */
.df-stadium-card {
    background: var(--df-white);
    border-radius: var(--df-radius-lg);
    border: 1px solid var(--df-gray-mid);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.15s, box-shadow 0.15s;
    text-decoration: none;
    color: var(--df-text);
}

.df-stadium-card:hover {
    border-color: var(--df-blue);
    box-shadow: var(--df-shadow);
    text-decoration: none;
    color: var(--df-text);
}

.df-stadium-card__name {
    font-family: var(--df-font-serif);
    font-size: 1rem;
    font-weight: 700;
}

.df-stadium-card__club {
    font-size: 0.8rem;
    color: var(--df-gray);
}

.df-stadium-card__stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
}

.df-stadium-card__stat strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--df-blue);
}

/* ============================================================
   STATS BAR (for season summaries)
   ============================================================ */
.df-stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.df-stat-badge {
    background: var(--df-gray-light);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--df-text);
    white-space: nowrap;
}

.df-stat-badge--gold { background: var(--df-gold); color: var(--df-blue-dark); }
.df-stat-badge--blue { background: var(--df-blue); color: var(--df-white); }

/* ============================================================
   PLAYER PROFILE PAGE
   ============================================================ */
.df-profile {
    padding: 3rem 0;
}

.df-profile__hero {
    background: var(--df-blue);
    color: var(--df-white);
    padding: 3rem 0 0;
    margin-bottom: 0;
}

.df-profile__hero-inner {
    max-width: var(--df-max-width);
    margin: 0 auto;
    padding: 0 1.25rem 2rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: end;
}

@media (max-width: 640px) {
    .df-profile__hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.df-profile__photo {
    width: 180px;
    height: 220px;
    border-radius: var(--df-radius-lg);
    object-fit: cover;
    border: 4px solid var(--df-gold);
    background: var(--df-blue-dark);
}

.df-profile__pos {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--df-gold);
    margin-bottom: 0.5rem;
}

.df-profile__name {
    color: var(--df-white);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 0.5rem;
}

.df-profile__years {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.df-profile__quickstats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.df-profile__quickstat {
    text-align: center;
}

.df-profile__quickstat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--df-white);
    line-height: 1;
}

.df-profile__quickstat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Career timeline */
.df-career-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.df-career-table th {
    background: var(--df-blue);
    color: var(--df-white);
    padding: 0.6rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.df-career-table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--df-gray-mid);
    color: var(--df-text-light);
}

.df-career-table tr:last-child td { border-bottom: none; }
.df-career-table tr:hover td { background: var(--df-gray-light); }

.df-career-table .highlight-row td {
    background: #eef2fb;
    color: var(--df-blue);
    font-weight: 600;
}

/* ============================================================
   SEASON TABLE
   ============================================================ */
.df-season-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.df-season-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    min-width: 600px;
}

.df-season-table thead th {
    background: var(--df-blue);
    color: var(--df-white);
    padding: 0.65rem 0.75rem;
    text-align: left;
    white-space: nowrap;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.df-season-table tbody td {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid var(--df-gray-mid);
}

.df-season-table tbody tr:hover td { background: var(--df-gray-light); }

.df-season-table .pos-good { color: #15803d; font-weight: 700; }
.df-season-table .pos-bad { color: #b91c1c; font-weight: 700; }
.df-season-table .pos-mid { color: var(--df-text); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.df-breadcrumb {
    padding: 0.75rem 0;
    font-size: 0.8rem;
    color: var(--df-gray);
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.df-breadcrumb a { color: var(--df-blue); }
.df-breadcrumb__sep { color: var(--df-gray-mid); }

/* ============================================================
   CONTENT BODY (single post/page)
   ============================================================ */
.df-content-body {
    max-width: var(--df-content-width);
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
}

.df-content-body h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-top: 2rem;
    border-top: 2px solid var(--df-gray-mid);
}

.df-content-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.df-content-body h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.df-content-body ul, .df-content-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.df-content-body li { margin-bottom: 0.4rem; color: var(--df-text-light); }

/* Info box */
.df-infobox {
    background: var(--df-gray-light);
    border-left: 4px solid var(--df-blue);
    border-radius: 0 var(--df-radius) var(--df-radius) 0;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}

.df-infobox--gold { border-left-color: var(--df-gold); }
.df-infobox h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.df-infobox p { margin-bottom: 0; }

/* ============================================================
   HOMEPAGE FEATURE BLOCK (Riazor)
   ============================================================ */
.df-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--df-radius-lg);
    overflow: hidden;
    box-shadow: var(--df-shadow-md);
}

@media (max-width: 768px) { .df-feature { grid-template-columns: 1fr; } }

.df-feature__img {
    min-height: 280px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    background: var(--df-blue);
}

.df-feature__body {
    background: var(--df-blue);
    color: var(--df-white);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.df-feature__body h2 { color: var(--df-white); font-size: 1.75rem; }
.df-feature__body p { color: rgba(255,255,255,0.8); margin-bottom: 0; }

/* ============================================================
   HONORS PAGE
   ============================================================ */
.df-trophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }

.df-trophy-card {
    background: var(--df-white);
    border-radius: var(--df-radius-lg);
    border: 1px solid var(--df-gray-mid);
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.15s;
}

.df-trophy-card:hover { border-color: var(--df-gold); }

.df-trophy-card__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.df-trophy-card__name {
    font-family: var(--df-font-serif);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.df-trophy-card__count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--df-gold);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.df-trophy-card__years { font-size: 0.8rem; color: var(--df-gray); }

/* ============================================================
   RELATED CONTENT
   ============================================================ */
.df-related {
    padding: 3rem 0;
    border-top: 1px solid var(--df-gray-mid);
    margin-top: 3rem;
}

.df-related h2 { margin-bottom: 1.5rem; }

/* ============================================================
   SIDEBAR LAYOUT
   ============================================================ */
.df-layout-sidebar {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 900px) { .df-layout-sidebar { grid-template-columns: 1fr; } }

.df-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.df-sidebar-widget {
    background: var(--df-gray-light);
    border-radius: var(--df-radius-lg);
    padding: 1.25rem;
}

.df-sidebar-widget h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--df-blue);
    margin-bottom: 1rem;
}

.df-sidebar-widget ul { list-style: none; padding: 0; margin: 0; }
.df-sidebar-widget ul li { padding: 0.4rem 0; border-bottom: 1px solid var(--df-gray-mid); }
.df-sidebar-widget ul li:last-child { border-bottom: none; }
.df-sidebar-widget ul li a { font-size: 0.875rem; color: var(--df-text-light); }
.df-sidebar-widget ul li a:hover { color: var(--df-blue); }

/* ============================================================
   PAGINATION
   ============================================================ */
.df-pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.df-pagination a, .df-pagination span {
    padding: 0.5rem 0.875rem;
    border-radius: var(--df-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.df-pagination a {
    background: var(--df-gray-light);
    color: var(--df-text);
    text-decoration: none;
}

.df-pagination a:hover { background: var(--df-blue); color: var(--df-white); }
.df-pagination .current { background: var(--df-blue); color: var(--df-white); }

/* ============================================================
   FOOTER
   ============================================================ */
.df-footer {
    background: var(--df-text);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 1.5rem;
}

.df-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) { .df-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .df-footer__grid { grid-template-columns: 1fr; } }

.df-footer__brand h3 {
    color: var(--df-white);
    font-family: var(--df-font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.df-footer__brand p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 0; }

.df-footer__disclaimer {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.06);
    border-radius: var(--df-radius);
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    color: rgba(255,255,255,0.5);
}

.df-footer__col h4 {
    color: var(--df-white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.875rem;
}

.df-footer__col ul { list-style: none; padding: 0; margin: 0; }
.df-footer__col ul li { margin-bottom: 0.4rem; }
.df-footer__col ul li a { color: rgba(255,255,255,0.6); font-size: 0.85rem; text-decoration: none; }
.df-footer__col ul li a:hover { color: var(--df-white); }

.df-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--df-gold); }
.text-blue { color: var(--df-blue); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none; }

/* ============================================================
   SKIP LINK (accessibility)
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--df-blue);
    color: var(--df-white);
    padding: 0.5rem 1rem;
    border-radius: var(--df-radius);
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus { top: 0.5rem; }
