/**
 * Goaltender Hub — Dark Field Gold Design System
 *
 * @package InGoal
 * @since 2026-03-30
 *
 * Colors:
 *   --ig-navy (#0A1628) primary dark
 *   --ig-accent-blue (#31487A) accent
 *   --igh-ice-blue (#E8F4F8) light accent
 *   --igh-gold (#C9A84C) Dark Field Gold accent
 *
 * Typography:
 *   Headings: Inter 700
 *   Body: Merriweather 400
 *   Labels/UI: Inter 400/600
 *
 * Accessibility: WCAG 2.1 AA minimum
 *   Body: 18px, line-height 1.6
 *   Labels: 16px minimum
 *   Table cells: 16px minimum
 *   Stat values: 32px minimum
 *   Player name: 48px minimum
 *   Contrast: 4.5:1 minimum all combinations
 */

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

.ingoal-goaltender,
.ingoal-goaltender-archive {
    --igh-navy: var(--ig-navy, #0A1628);
    --igh-navy-medium: #0F2035;
    --igh-navy-light: #152940;
    --igh-accent: var(--ig-accent-blue, #31487A);
    --igh-ice-blue: #E8F4F8;
    --igh-gold: #C9A84C;
    --igh-gold-soft: rgba(201, 168, 76, 0.15);
    --igh-gold-border: rgba(201, 168, 76, 0.3);
    --igh-text-primary: #FFFFFF;
    --igh-text-secondary: #B8C5D6;
    --igh-text-muted: #8A9BB5;
    --igh-border: rgba(255, 255, 255, 0.08);
    --igh-card-bg: #0F2035;
    --igh-font-heading: var(--ig-font-heading, 'Inter', sans-serif);
    --igh-font-body: var(--ig-font-body, 'Merriweather', serif);
    --igh-font-ui: var(--ig-font-ui, 'Inter', sans-serif);
    --igh-radius: var(--ig-radius-md, 8px);
    --igh-radius-lg: var(--ig-radius-lg, 12px);
    --igh-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --igh-transition: 0.2s ease;
}


/* ==========================================================================
   Base Layout
   ========================================================================== */

.ingoal-goaltender .igh-page,
.ingoal-goaltender-archive .igh-page {
    background: var(--igh-navy);
    color: var(--igh-text-primary);
    min-height: 100vh;
}

.igh-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .igh-container {
        padding: 0 24px;
    }
}


/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.igh-breadcrumb {
    font-family: var(--igh-font-ui);
    font-size: 14px;
    color: var(--igh-text-muted);
    margin-bottom: 20px;
}

.igh-breadcrumb a {
    color: var(--igh-text-muted);
    text-decoration: none;
}

.igh-breadcrumb a:hover {
    color: var(--igh-text-primary);
    text-decoration: underline;
}

.igh-breadcrumb__sep {
    margin: 0 8px;
    opacity: 0.5;
}


/* ==========================================================================
   Hero Bar
   ========================================================================== */

.igh-hero {
    background: var(--igh-navy);
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--igh-border);
}

.igh-hero__inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.igh-hero__photo-wrap {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--igh-gold);
    background: var(--igh-navy-medium);
}

.igh-hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.igh-hero__photo--silhouette {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.igh-hero__photo--silhouette svg {
    width: 60%;
    height: 60%;
    opacity: 0.4;
}

.igh-hero__info {
    flex: 1;
    min-width: 0;
}

.igh-hero__name {
    font-family: var(--igh-font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 12px;
    color: var(--igh-text-primary);
}

.igh-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.igh-hero__team {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--igh-font-ui);
    font-size: 18px;
    font-weight: 600;
    color: var(--igh-ice-blue);
}

.igh-hero__team-logo {
    width: 32px;
    height: 32px;
}

.igh-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--igh-gold);
    color: var(--igh-navy);
    font-family: var(--igh-font-heading);
    font-size: 20px;
    font-weight: 700;
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.igh-hero__detail {
    font-family: var(--igh-font-ui);
    font-size: 16px;
    color: var(--igh-text-secondary);
}

.igh-hero__detail-sep {
    color: var(--igh-text-muted);
}

.igh-hero__details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-family: var(--igh-font-ui);
    font-size: 16px;
    color: var(--igh-text-secondary);
}

.igh-hero__details-row dt {
    font-weight: 600;
    color: var(--igh-text-muted);
    display: inline;
}

.igh-hero__details-row dd {
    display: inline;
    margin: 0;
}

.igh-hero__details-row .igh-detail-pair {
    display: flex;
    gap: 6px;
}

.igh-hero__photo-credit {
    font-family: var(--igh-font-ui);
    font-size: 12px;
    color: var(--igh-text-muted);
    text-align: center;
    margin-top: 8px;
}

.igh-hero__flag {
    font-size: 20px;
    line-height: 1;
}

.igh-hero__updated {
    font-family: var(--igh-font-ui);
    font-size: 14px;
    color: var(--igh-text-muted);
    margin-top: 12px;
}

@media (max-width: 768px) {
    .igh-hero__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .igh-hero__photo-wrap {
        width: 150px;
        height: 150px;
    }

    .igh-hero__name {
        font-size: 36px;
    }

    .igh-hero__meta {
        justify-content: center;
    }

    .igh-hero__details-row {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .igh-hero__name {
        font-size: 28px;
    }
}


/* ==========================================================================
   Stat Cards
   ========================================================================== */

.igh-stats {
    padding: 40px 0;
}

.igh-stats__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.igh-stat-card {
    background: var(--igh-card-bg);
    border: 1px solid var(--igh-border);
    border-radius: var(--igh-radius);
    padding: 24px 20px;
    text-align: center;
    transition: border-color var(--igh-transition);
}

.igh-stat-card:hover {
    border-color: var(--igh-gold-border);
}

.igh-stat-card__value {
    font-family: var(--igh-font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--igh-ice-blue);
    line-height: 1.2;
    margin-bottom: 8px;
}

.igh-stat-card__value--gold {
    color: var(--igh-gold);
}

.igh-stat-card__label {
    font-family: var(--igh-font-ui);
    font-size: 16px;
    font-weight: 500;
    color: var(--igh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .igh-stats__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .igh-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .igh-stat-card__value {
        font-size: 28px;
    }
}

/* ---- CScore card — InGoal-exclusive metric ---- */

.igh-stat-card--cscore {
    border-color: var(--igh-gold-border);
    position: relative;
}

.igh-stat-card--cscore:hover {
    border-color: var(--igh-gold);
}

.igh-stat-card__rank {
    font-family: var(--igh-font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--igh-text-muted);
    margin-top: 4px;
    letter-spacing: 0.03em;
}

.igh-stat-card__ingoal-badge {
    display: inline-block;
    font-family: var(--igh-font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--igh-navy);
    background: var(--igh-gold);
    padding: 2px 6px;
    border-radius: 3px;
    margin-bottom: 10px;
}

/* ---- Tooltip ---- */

.igh-tooltip-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.igh-tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--igh-text-muted);
    color: var(--igh-text-muted);
    font-family: var(--igh-font-ui);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    cursor: help;
    flex-shrink: 0;
    transition: border-color var(--igh-transition), color var(--igh-transition);
}

.igh-tooltip-icon:hover,
.igh-tooltip-wrap:focus-within .igh-tooltip-icon {
    border-color: var(--igh-gold);
    color: var(--igh-gold);
}

.igh-tooltip-bubble {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    background: #1a2f4a;
    border: 1px solid var(--igh-gold-border);
    border-radius: var(--igh-radius);
    padding: 14px 16px;
    font-family: var(--igh-font-ui);
    font-size: 13px;
    line-height: 1.5;
    color: var(--igh-text-secondary);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
}

.igh-tooltip-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1a2f4a;
}

.igh-tooltip-wrap:hover .igh-tooltip-bubble,
.igh-tooltip-wrap:focus-within .igh-tooltip-bubble {
    opacity: 1;
    visibility: visible;
}

.igh-tooltip-bubble strong {
    color: var(--igh-gold);
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
}

/* On small screens, pin tooltip left so it doesn't bleed off screen */
@media (max-width: 480px) {
    .igh-tooltip-bubble {
        left: auto;
        right: 0;
        transform: none;
        width: 220px;
    }

    .igh-tooltip-bubble::after {
        left: auto;
        right: 20px;
        transform: none;
    }
}


/* ==========================================================================
   AI Bio Block
   ========================================================================== */

.igh-bio {
    padding: 0 0 48px;
}

.igh-bio__text {
    font-family: var(--igh-font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--igh-text-secondary);
    max-width: 900px;
}

.igh-bio__text p {
    margin: 0 0 16px;
}

.igh-bio__text p:last-child {
    margin-bottom: 0;
}


/* ==========================================================================
   InGoal Coverage Block
   ========================================================================== */

.igh-coverage {
    padding: 0 0 48px;
}

.igh-section-title {
    font-family: var(--igh-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--igh-text-primary);
    margin: 0 0 24px;
}

.igh-coverage__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.igh-coverage-card {
    background: var(--igh-card-bg);
    border: 1px solid var(--igh-border);
    border-radius: var(--igh-radius);
    overflow: hidden;
    transition: transform var(--igh-transition), border-color var(--igh-transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.igh-coverage-card:hover {
    transform: translateY(-3px);
    border-color: var(--igh-gold-border);
}

.igh-coverage-card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.igh-coverage-card__image--placeholder {
    background: var(--igh-navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
}

.igh-coverage-card__body {
    padding: 20px;
}

.igh-coverage-card__title {
    font-family: var(--igh-font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--igh-text-primary);
    line-height: 1.4;
    margin: 0 0 8px;
}

.igh-coverage-card__type {
    display: inline-block;
    font-family: var(--igh-font-ui);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--igh-accent, #31487A);
    background: rgba(49, 72, 122, 0.08);
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
}

.igh-coverage-card__date {
    font-family: var(--igh-font-ui);
    font-size: 14px;
    color: var(--igh-text-muted);
}

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

    .igh-coverage-card__image {
        height: 200px;
    }
}


/* ==========================================================================
   Career Stats Table
   ========================================================================== */

.igh-career {
    padding: 0 0 48px;
}

.igh-career__wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.igh-career__table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--igh-font-ui);
    font-size: 16px;
    min-width: 700px;
}

.igh-career__table thead {
    border-bottom: 2px solid var(--igh-gold-border);
}

.igh-career__table th {
    font-family: var(--igh-font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--igh-text-muted);
    padding: 12px 16px;
    text-align: right;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.igh-career__table th:first-child {
    text-align: left;
}

.igh-career__table th[aria-sort]::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.igh-career__table th[aria-sort="ascending"]::after {
    border-bottom: 5px solid var(--igh-gold);
}

.igh-career__table th[aria-sort="descending"]::after {
    border-top: 5px solid var(--igh-gold);
}

.igh-career__table td {
    font-size: 16px;
    color: var(--igh-text-secondary);
    padding: 12px 16px;
    text-align: right;
    border-bottom: 1px solid var(--igh-border);
    white-space: nowrap;
}

.igh-career__table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--igh-text-primary);
}

.igh-career__table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Current season highlight */
.igh-career__table tr.igh-row--current {
    background: var(--igh-gold-soft);
}

.igh-career__table tr.igh-row--current td {
    color: var(--igh-gold);
    font-weight: 600;
}

.igh-career__table tr.igh-row--current td:first-child {
    color: var(--igh-gold);
}

/* Career totals row */
.igh-career__table tfoot tr {
    border-top: 2px solid var(--igh-gold-border);
}

.igh-career__table tfoot td {
    font-weight: 700;
    color: var(--igh-text-primary);
}

@media (max-width: 768px) {
    .igh-career__table {
        font-size: 14px;
    }

    .igh-career__table th,
    .igh-career__table td {
        padding: 10px 12px;
    }
}


/* ==========================================================================
   Related Goaltenders
   ========================================================================== */

.igh-related {
    padding: 0 0 60px;
}

.igh-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.igh-related-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--igh-card-bg);
    border: 1px solid var(--igh-border);
    border-radius: var(--igh-radius);
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: border-color var(--igh-transition), transform var(--igh-transition);
}

.igh-related-card:hover {
    border-color: var(--igh-gold-border);
    transform: translateY(-2px);
}

.igh-related-card__photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--igh-border);
    flex-shrink: 0;
}

.igh-related-card__info {
    min-width: 0;
}

.igh-related-card__name {
    font-family: var(--igh-font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--igh-text-primary);
    margin: 0 0 4px;
}

.igh-related-card__team {
    font-family: var(--igh-font-ui);
    font-size: 14px;
    color: var(--igh-text-muted);
    margin: 0 0 4px;
}

.igh-related-card__stat {
    font-family: var(--igh-font-ui);
    font-size: 14px;
    color: var(--igh-ice-blue);
}

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


/* ==========================================================================
   Archive Page
   ========================================================================== */

.igh-archive-hero {
    background: var(--igh-navy);
    padding: 48px 0;
    border-bottom: 1px solid var(--igh-border);
}

.igh-archive-hero__title {
    font-family: var(--igh-font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--igh-text-primary);
    margin: 0 0 8px;
}

.igh-archive-hero__subtitle {
    font-family: var(--igh-font-ui);
    font-size: 18px;
    color: var(--igh-text-secondary);
    margin: 0;
}

.igh-archive-filters {
    padding: 24px 0;
    border-bottom: 1px solid var(--igh-border);
}

.igh-archive-filters__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.igh-archive-filters__label {
    font-family: var(--igh-font-ui);
    font-size: 16px;
    font-weight: 600;
    color: var(--igh-text-secondary);
}

.igh-archive-filters__divider {
    width: 1px;
    height: 24px;
    background: var(--igh-border);
    margin: 0 4px;
}

.igh-filter-btn {
    font-family: var(--igh-font-ui);
    font-size: 14px;
    font-weight: 500;
    color: var(--igh-text-secondary);
    background: transparent;
    border: 1px solid var(--igh-border);
    border-radius: 20px;
    padding: 6px 16px;
    cursor: pointer;
    transition: all var(--igh-transition);
    white-space: nowrap;
}

.igh-filter-btn:hover {
    border-color: var(--igh-gold-border);
    color: var(--igh-text-primary);
}

.igh-filter-btn--active {
    background: var(--igh-gold);
    color: var(--igh-navy);
    border-color: var(--igh-gold);
    font-weight: 600;
}

.igh-filter-btn--active:hover {
    color: var(--igh-navy);
}

.igh-archive-sort {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.igh-archive-sort__select {
    font-family: var(--igh-font-ui);
    font-size: 14px;
    color: var(--igh-text-primary);
    background: var(--igh-navy-medium);
    border: 1px solid var(--igh-border);
    border-radius: var(--igh-radius);
    padding: 8px 12px;
    cursor: pointer;
}

.igh-archive-body {
    padding: 32px 0 60px;
}

.igh-archive-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--igh-font-ui);
    font-size: 16px;
}

.igh-archive-table thead {
    border-bottom: 2px solid var(--igh-gold-border);
}

.igh-archive-table th {
    font-family: var(--igh-font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--igh-text-muted);
    padding: 12px 16px;
    text-align: right;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
}

.igh-archive-table th:first-child,
.igh-archive-table th:nth-child(2) {
    text-align: left;
}

.igh-archive-table th[aria-sort]::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.igh-archive-table th[aria-sort="ascending"]::after {
    border-bottom: 5px solid var(--igh-gold);
}

.igh-archive-table th[aria-sort="descending"]::after {
    border-top: 5px solid var(--igh-gold);
}

.igh-archive-table td {
    padding: 14px 16px;
    text-align: right;
    border-bottom: 1px solid var(--igh-border);
    color: var(--igh-text-secondary);
    white-space: nowrap;
}

.igh-archive-table td:first-child,
.igh-archive-table td:nth-child(2) {
    text-align: left;
}

.igh-archive-table tbody tr {
    transition: background var(--igh-transition);
}

.igh-archive-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.igh-archive-player {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--igh-text-primary);
}

.igh-archive-player:hover {
    color: var(--igh-gold);
}

.igh-archive-player__photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--igh-border);
}

.igh-archive-player__name {
    font-weight: 600;
    font-size: 16px;
}

.igh-archive-no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--igh-text-muted);
    font-family: var(--igh-font-ui);
    font-size: 18px;
}

@media (max-width: 768px) {
    .igh-archive-hero__title {
        font-size: 32px;
    }

    .igh-archive-filters__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .igh-archive-sort {
        margin-left: 0;
        width: 100%;
    }

    .igh-archive-table {
        font-size: 14px;
    }

    .igh-archive-table th,
    .igh-archive-table td {
        padding: 10px 10px;
    }

    .igh-archive-player__photo {
        width: 32px;
        height: 32px;
    }
}

/* Row hidden by team filter */
.igh-archive-table tbody tr.igh-hidden {
    display: none;
}

/* =========================================================================
   PWHL goalie pages
   ========================================================================= */

/* Career Highlights block */
.igh-highlights {
    padding: 40px 0 48px;
    background: #fff;
}

.igh-highlights__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.igh-highlights__item {
    padding: 14px 18px 14px 42px;
    background: var(--ig-surface, #f5f6f8);
    border-left: 3px solid var(--ig-accent-blue, #31487A);
    border-radius: 4px;
    font-family: var(--ig-font-body, Merriweather, Georgia, serif);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ig-text-primary, #0A1628);
    position: relative;
}

.igh-highlights__item::before {
    content: "▸";
    position: absolute;
    left: 18px;
    top: 14px;
    color: var(--ig-accent-blue, #31487A);
    font-size: 18px;
    line-height: 1.55;
}

.igh-highlights__raw {
    font-family: var(--ig-font-body, Merriweather, Georgia, serif);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ig-text-primary, #0A1628);
}

.igh-highlights__raw ul {
    padding-left: 24px;
}

.igh-highlights__raw li {
    margin-bottom: 8px;
}

@media (min-width: 700px) {
    .igh-highlights__list {
        grid-template-columns: 1fr 1fr;
    }
}

/* PWHL data attribution strip */
.igh-attribution {
    padding: 20px 0 28px;
    background: #fff;
    border-top: 1px solid var(--ig-border-color, #e3e5e9);
}

.igh-attribution__text {
    font-family: var(--ig-font-ui, Inter, sans-serif);
    font-size: 13px;
    line-height: 1.5;
    color: var(--ig-text-secondary, #5a6270);
    margin: 0;
    text-align: center;
}

.igh-attribution__text a {
    color: var(--ig-accent-blue, #31487A);
    text-decoration: underline;
}

/* PWHL archive template */
.igh-archive--pwhl .igh-archive-hero--pwhl {
    background: linear-gradient(135deg, var(--ig-navy, #0A1628) 0%, var(--ig-accent-blue, #31487A) 100%);
    color: #fff;
    padding: 48px 0 40px;
}

.igh-archive-hero__title {
    font-family: var(--ig-font-heading, Inter, sans-serif);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.1;
    margin: 12px 0 8px;
    color: #fff;
}

.igh-archive-hero__subtitle {
    font-family: var(--ig-font-body, Merriweather, Georgia, serif);
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 640px;
}

.igh-archive--pwhl .igh-breadcrumb a,
.igh-archive--pwhl .igh-breadcrumb span {
    color: rgba(255, 255, 255, 0.85);
}

.igh-archive-body {
    padding: 40px 0 60px;
    background: #f7f8fa;
}

.igh-archive-team {
    margin-bottom: 40px;
}

.igh-archive-team__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ig-font-heading, Inter, sans-serif);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--ig-navy, #0A1628);
}

.igh-archive-team__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.igh-archive--pwhl .igh-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.igh-archive--pwhl .igh-archive-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(10, 22, 40, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
    color: inherit;
}

.igh-archive--pwhl .igh-archive-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 22, 40, 0.12);
}

.igh-archive--pwhl .igh-archive-card__photo,
.igh-archive--pwhl .igh-archive-card__photo--placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #e8ebf0;
    display: block;
}

.igh-archive--pwhl .igh-archive-card__body {
    padding: 14px 16px 16px;
}

.igh-archive--pwhl .igh-archive-card__name {
    font-family: var(--ig-font-heading, Inter, sans-serif);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
    margin: 0 0 6px;
    color: var(--ig-navy, #0A1628);
}

.igh-archive--pwhl .igh-archive-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--ig-font-ui, Inter, sans-serif);
    font-size: 13px;
    line-height: 1.4;
    color: var(--ig-text-secondary, #5a6270);
}

.igh-archive-empty {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    color: var(--ig-text-secondary, #5a6270);
    font-family: var(--ig-font-body, Merriweather, Georgia, serif);
    font-size: 16px;
}
