/* ═══════════════════════════════════════════════════════════════
   WKC Championships Page
   ═══════════════════════════════════════════════════════════════ */

.wkc-champs {
    font-family: var(--wkc-font);
    background: var(--wkc-bg);
    color: var(--wkc-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.wkc-champs *,
.wkc-champs *::before,
.wkc-champs *::after {
    box-sizing: border-box;
}

.champs-main {
    padding-bottom: 64px;
}

.champs-hero {
    position: relative;
    background: linear-gradient(135deg, var(--wkc-navy) 0%, var(--wkc-blue) 55%, #2563A8 100%);
    color: #fff;
    padding: 56px 0 72px;
    overflow: hidden;
}

.champs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(45, 184, 78, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.champs-hero__inner {
    position: relative;
    max-width: 820px;
}

.champs-hero__eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wkc-green-bright);
    margin-bottom: 12px;
}

.champs-hero__title {
    font-size: clamp(2rem, 6vw, 3.25rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.champs-hero__sub {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin-bottom: 22px;
}

.champs-hero__path {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.champs-hero__path span:nth-child(odd) {
    color: var(--wkc-green-bright);
}

.champs-hero__path span[aria-hidden="true"] {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 900;
}

.champs-wrap {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    margin-top: -36px;
    position: relative;
    z-index: 2;
}

.champs-sidebar {
    position: sticky;
    top: calc(var(--wkc-header-h, 72px) + 16px);
    background: var(--wkc-white);
    border: 1px solid rgba(12, 50, 96, 0.08);
    border-radius: 14px;
    padding: 16px 12px;
    box-shadow: 0 8px 24px rgba(12, 50, 96, 0.06);
}

.champs-sidebar__label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wkc-text-muted);
    padding: 0 10px 10px;
}

.champs-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.champs-nav__link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--wkc-text-muted);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.champs-nav__link:hover,
.champs-nav__link.is-active {
    background: var(--wkc-bg);
    color: var(--wkc-blue);
}

.champs-nav__num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--wkc-bg);
    color: var(--wkc-blue);
    font-size: 11px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.champs-nav__link.is-active .champs-nav__num {
    background: var(--wkc-blue);
    color: #fff;
}

.champs-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.champ-card {
    background: var(--wkc-white);
    border: 1px solid rgba(12, 50, 96, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(12, 50, 96, 0.05);
}

.champ-card__head {
    padding: clamp(24px, 4vw, 32px);
    background: linear-gradient(135deg, rgba(12, 50, 96, 0.04) 0%, rgba(45, 184, 78, 0.06) 100%);
    border-bottom: 1px solid rgba(12, 50, 96, 0.06);
}

.champ-card__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wkc-blue);
    margin-bottom: 10px;
}

.champ-card__head h2 {
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 900;
    color: var(--wkc-navy);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.champ-card__motto {
    font-size: 1rem;
    font-weight: 800;
    color: var(--wkc-green);
    margin-bottom: 18px;
}

.champ-card__cta {
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--wkc-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
}

.champ-card__cta:hover {
    background: var(--wkc-navy);
    transform: translateY(-1px);
}

.champ-card__body {
    padding: clamp(22px, 4vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.champ-block h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--wkc-navy);
    margin-bottom: 12px;
}

.champ-block p {
    color: var(--wkc-text-muted);
    margin: 0 0 12px;
    font-size: 15px;
}

.champ-block p:last-child {
    margin-bottom: 0;
}

.champ-list {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.champ-list li {
    position: relative;
    padding-left: 20px;
    color: var(--wkc-text-muted);
    font-size: 15px;
}

.champ-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--wkc-green);
}

.champ-summary {
    background: linear-gradient(135deg, var(--wkc-navy) 0%, var(--wkc-blue) 100%);
    color: #fff;
    border-radius: 16px;
    padding: clamp(24px, 4vw, 36px);
    text-align: center;
}

.champ-summary h2 {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 900;
    margin-bottom: 14px;
}

.champ-summary p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin: 0 auto 24px;
    font-size: 15px;
}

.champ-summary__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.champ-summary__btn {
    display: inline-flex;
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    transition: background 0.15s, border-color 0.15s;
}

.champ-summary__btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.champ-summary__btn--primary {
    background: var(--wkc-green);
    border-color: var(--wkc-green);
}

.champ-summary__btn--primary:hover {
    background: #25a045;
    border-color: #25a045;
}

@media (max-width: 900px) {
    .champs-wrap {
        grid-template-columns: 1fr;
        margin-top: -24px;
    }

    .champs-sidebar {
        position: static;
    }

    .champs-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .champs-nav__link {
        background: var(--wkc-bg);
        min-height: 100%;
    }
}

@media (max-width: 520px) {
    .champs-nav {
        grid-template-columns: 1fr;
    }
}
