/* =========================
   HERO — BASE
========================= */

.hero {
    position: relative;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 14, 15, .55) 0%,
        rgba(15, 14, 15, .65) 100%
    );
}

.hero__container {
    position: relative;
    z-index: 2;

    width: min(1180px, 92%);
    margin: auto;
}

/* =========================
   HERO — BANNER VARIANT
   (abouts / contact / help)
========================= */

.hero--banner {
    min-height: 360px;
    padding: 130px 0 60px;
}

.hero--banner .hero__content {
    max-width: 820px;
    margin: auto;
    text-align: center;
}

.hero--banner .hero__title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--gold-400);
    margin-bottom: 18px;
    line-height: 1.05;
}

.hero--banner .hero__description {
    color: var(--white);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 576px) {

    .hero--banner {
        min-height: 300px;
        padding: 110px 0 48px;
    }
}
