.home-hero {
    position: relative;
    min-height: calc(100vh - 5rem);
    overflow: hidden;
    background: #000;
}

.home-hero__media,
.home-hero__overlay {
    position: absolute;
    inset: 0;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.home-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    width: min(100% - 2rem, 26.41rem);
    margin: 0 auto;
    padding-top: 10rem;
    text-align: center;
}

.home-hero__mark {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
}

.home-hero__mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-hero__logo {
    width: 100%;
    max-width: 26.41rem;
}

.home-hero__subtitle {
    margin: 1.2rem 0 0;
    color: #ffd230;
    font-size: 1.875rem;
    line-height: 1.2;
}

.home-hero__lead {
    margin: 1rem 0 0;
    color: #d1d5dc;
    font-size: 1.25rem;
    line-height: 1.4;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.home-hero__actions .button {
    min-height: 3.625rem;
    padding-inline: 1.75rem;
    font-size: 1rem;
}

.home-hero__actions .button-ghost {
    border-color: rgba(255, 185, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.home-hero__scroll {
    position: absolute;
    inset-inline: 0;
    bottom: 2.5rem;
    z-index: 1;
    display: grid;
    justify-items: center;
    animation: home-hero-scroll-float 3.6s ease-in-out infinite;
}

.home-hero__scroll span {
    display: grid;
    place-items: start center;
    width: 1.5rem;
    height: 2.5rem;
    padding-top: 0.65rem;
    border: 2px solid rgba(255, 185, 0, 0.5);
    border-radius: 999px;
}

.home-hero__scroll span::before {
    content: "";
    width: 0.25rem;
    height: 0.75rem;
    border-radius: 999px;
    background: #ffb900;
}

@keyframes home-hero-scroll-float {
    0%,
    100% {
        transform: translateY(-0.25rem);
    }

    50% {
        transform: translateY(0.25rem);
    }
}

.home-news {
    padding: 4rem 0;
    background: linear-gradient(180deg, #000 0%, #101828 100%);
}

.home-news .page-section-heading {
    position: relative;
    margin-bottom: 3rem;
}

.home-news .page-section-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1rem;
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #ffb900 50%, rgba(0, 0, 0, 0) 100%);
    transform: translateX(-50%);
}

.home-news .page-section-heading h2 {
    font-size: 3rem;
}

.home-news__list {
    display: grid;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.home-news-card {
    padding: 1.55rem;
    border: 1px solid rgba(123, 51, 6, 0.3);
    border-radius: 0.625rem;
    background: rgba(0, 0, 0, 0.4);
}

.home-news-card__date {
    display: inline-block;
    margin: 0;
    padding: 0.28rem 0.8rem;
    border: 1px solid rgba(255, 185, 0, 0.3);
    border-radius: 0.25rem;
    background: rgba(255, 185, 0, 0.1);
    color: #ffb900;
    font-size: 0.875rem;
}

.home-news-card__title {
    margin: 1rem 0 0;
    font-size: 1.5rem;
}

.home-news-card__excerpt {
    margin: 0.75rem 0 0;
    color: #d1d5dc;
    font-size: 1rem;
}

.home-news__action {
    margin: 2rem 0 0;
    text-align: center;
}

@media (max-width: 767px) {
    .home-hero__content {
        width: min(100% - 2rem, 22rem);
        padding-top: 6.5rem;
    }

    .home-hero__mark {
        width: 2rem;
        height: 2rem;
        margin-bottom: 1rem;
    }

    .home-hero__subtitle {
        font-size: 1.4rem;
    }

    .home-hero__lead {
        font-size: 0.9rem;
    }

    .home-news .page-section-heading h2 {
        font-size: 2.3rem;
    }

    .home-news-card {
        padding: 1rem;
    }

    .home-news-card__date {
        font-size: 0.7rem;
    }

    .home-news-card__title {
        font-size: 1rem;
    }

    .home-news-card__excerpt {
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__scroll {
        animation: none;
    }
}
