.home-page {
    padding-bottom: 72px;
}

.home-hero {
    padding: 64px 0 42px;
    background:
        radial-gradient(circle at top right, rgba(227, 27, 35, 0.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
}

.home-hero__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.home-hero__intro {
    max-width: 760px;
}

.home-eyebrow,
.section-heading__eyebrow,
.home-panel__header span {
    display: inline-block;
    color: var(--fo-red);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.home-hero h1 {
    margin: 14px 0 18px;
    max-width: 760px;
    font-size: clamp(2.7rem, 5vw, 5.3rem);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.home-hero h1 span {
    color: var(--fo-red);
}

.home-hero p {
    max-width: 650px;
    margin: 0;
    color: var(--fo-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.home-location {
    min-width: 220px;
}

.home-location__label {
    display: block;
    margin-bottom: 9px;
    color: var(--fo-muted);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.home-location__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid var(--fo-border);
    border-radius: 14px;
    background: #ffffff;
    color: var(--fo-text);
    font-weight: 750;
    box-shadow: 0 8px 25px rgba(20, 24, 32, 0.06);
    cursor: pointer;
}

.home-location__button svg,
.section-heading__link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-today {
    padding: 46px 0 28px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 24px;
}

.section-heading h2 {
    margin: 7px 0 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 820;
    letter-spacing: -0.04em;
}

.section-heading__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--fo-red);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 750;
}

.home-stat-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.home-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 112px;
    padding: 20px;
    border: 1px solid rgba(230, 232, 235, 0.85);
    border-radius: var(--fo-radius);
    background: #ffffff;
    color: var(--fo-text);
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(20, 24, 32, 0.055);
    transition:
        transform var(--fo-transition),
        box-shadow var(--fo-transition),
        border-color var(--fo-transition);
}

.home-stat-card:hover {
    color: var(--fo-text);
    border-color: rgba(227, 27, 35, 0.22);
    transform: translateY(-3px);
    box-shadow: var(--fo-shadow);
}

.home-stat-card__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(227, 27, 35, 0.09);
    color: var(--fo-red);
}

.home-stat-card__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-stat-card strong {
    display: block;
    font-size: 1.55rem;
    line-height: 1;
}

.home-stat-card span {
    display: block;
    margin-top: 7px;
    color: var(--fo-muted);
    font-size: 0.86rem;
    font-weight: 650;
}

.home-content {
    padding-top: 30px;
}

.home-content-grid {
    display: grid;
    grid-template-columns: minmax(310px, 0.95fr) minmax(420px, 1.35fr) minmax(300px, 0.9fr);
    gap: 22px;
    align-items: start;
}

.home-panel {
    overflow: hidden;
    border: 1px solid var(--fo-border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(20, 24, 32, 0.065);
}

.home-panel__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--fo-border);
}

.home-panel__header h2 {
    margin: 5px 0 0;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.home-panel__header a {
    color: var(--fo-red);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 750;
}

.match-list,
.activity-feed,
.opportunity-list {
    display: flex;
    flex-direction: column;
}

.match-card,
.activity-item {
    padding: 21px 24px;
    border-bottom: 1px solid var(--fo-border);
}

.match-card:last-child,
.activity-item:last-child {
    border-bottom: 0;
}

.match-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
    color: var(--fo-muted);
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
}

.match-card__teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.match-card__teams > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.match-card__club {
    font-weight: 720;
}

.match-card__teams strong {
    flex-shrink: 0;
    color: var(--fo-red);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.activity-item__badge,
.opportunity-card__type {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(227, 27, 35, 0.09);
    color: var(--fo-red);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.activity-item h3 {
    margin: 12px 0 8px;
    font-size: 1rem;
    font-weight: 780;
    line-height: 1.45;
}

.activity-item p {
    margin: 0 0 11px;
    color: var(--fo-muted);
    font-size: 0.87rem;
    line-height: 1.6;
}

.activity-item time {
    color: #9a9ea5;
    font-size: 0.76rem;
}

.opportunity-list {
    padding: 12px;
    gap: 10px;
}

.opportunity-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 17px;
    border-radius: 14px;
    background: #f8f9fa;
    color: var(--fo-text);
    text-decoration: none;
    transition:
        transform var(--fo-transition),
        background var(--fo-transition);
}

.opportunity-card:hover {
    color: var(--fo-text);
    background: #f1f2f4;
    transform: translateY(-2px);
}

.opportunity-card strong {
    font-size: 0.92rem;
    line-height: 1.45;
}

.opportunity-card > span:last-child {
    color: var(--fo-muted);
    font-size: 0.8rem;
    font-weight: 650;
}

@media (max-width: 1199.98px) {
    .home-stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-panel--opportunities {
        grid-column: 1 / -1;
    }

    .opportunity-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .home-hero {
        padding: 40px 0 28px;
    }

    .home-hero__content {
        align-items: stretch;
        flex-direction: column;
        gap: 28px;
    }

    .home-location {
        width: 100%;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .home-stat-grid,
    .home-content-grid,
    .opportunity-list {
        grid-template-columns: 1fr;
    }

    .home-panel--opportunities {
        grid-column: auto;
    }
}

@media (max-width: 575.98px) {
    .home-hero h1 {
        font-size: 2.55rem;
    }

    .home-stat-card {
        min-height: 92px;
    }

    .home-panel__header,
    .match-card,
    .activity-item {
        padding-right: 18px;
        padding-left: 18px;
    }
}

.home-stories {
    padding: 66px 0 34px;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(380px, 0.75fr);
    gap: 24px;
}

.story-grid__secondary {
    display: grid;
    gap: 24px;
}

.story-card {
    overflow: hidden;
    border: 1px solid var(--fo-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 36px rgba(20, 24, 32, 0.07);
}

.story-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(135deg, #202124, #4b4e53);
}

.story-card--featured .story-card__image {
    aspect-ratio: 16 / 9;
}

.story-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease;
}

.story-card:hover .story-card__image img {
    transform: scale(1.035);
}

.story-card__category {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--fo-red);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.story-card__content {
    padding: 22px;
}

.story-card--featured .story-card__content {
    padding: 28px;
}

.story-card__meta {
    color: var(--fo-red);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.story-card h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.story-card--featured h3 {
    font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.story-card h3 a {
    color: var(--fo-text);
    text-decoration: none;
}

.story-card p {
    margin: 0 0 17px;
    color: var(--fo-muted);
    line-height: 1.65;
}

.story-card time {
    color: #969ba2;
    font-size: 0.76rem;
}

.home-photo {
    padding: 34px 0 72px;
}

.photo-feature {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 28px;
    background: #191919;
    box-shadow: 0 22px 55px rgba(20, 24, 32, 0.16);
}

.photo-feature > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-feature__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 10, 0.9) 0%,
            rgba(10, 10, 10, 0.62) 45%,
            rgba(10, 10, 10, 0.08) 100%
        );
}

.photo-feature__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 520px;
    max-width: 650px;
    padding: 62px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    color: #ffffff;
}

.photo-feature__eyebrow {
    color: #ffffff;
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.photo-feature h2 {
    margin: 14px 0 18px;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.055em;
}

.photo-feature p {
    max-width: 520px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.photo-feature a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 0 21px;
    border-radius: 999px;
    background: var(--fo-red);
    color: #ffffff;
    text-decoration: none;
    font-weight: 750;
}

@media (max-width: 991.98px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-grid__secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .story-grid__secondary {
        grid-template-columns: 1fr;
    }

    .photo-feature,
    .photo-feature__content {
        min-height: 460px;
    }

    .photo-feature__content {
        padding: 34px 26px;
    }

    .photo-feature__overlay {
        background: linear-gradient(
            0deg,
            rgba(10, 10, 10, 0.95) 0%,
            rgba(10, 10, 10, 0.4) 100%
        );
    }
}