.guest-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 620px;
    margin: -1.5rem -1.5rem 0;
    padding: 2rem 1.5rem 1.25rem;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border-bottom: 1px solid rgba(245, 185, 66, .22);
    background: #0f1f33;
    text-align: center;
}

.guest-hero__background,
.guest-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.guest-hero__background {
    z-index: -3;
    object-fit: cover;
    object-position: center bottom;
}

.guest-hero__shade {
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(7, 13, 22, .06) 0%, rgba(7, 13, 22, .12) 50%, rgba(7, 13, 22, .32) 100%),
        radial-gradient(circle at 50% 35%, rgba(15, 31, 51, .04), rgba(7, 13, 22, .22) 76%);
}

.guest-hero__content {
    display: flex;
    width: min(100%, 760px);
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .25rem 0 1.5rem;
}

.guest-hero__crest {
    width: 150px;
    height: 150px;
    margin-bottom: .35rem;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .34));
}

.guest-hero__title {
    margin: 0 0 .75rem;
    color: #f8fafc;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    text-shadow: 0 4px 14px rgba(0, 0, 0, .5);
}

.guest-hero__title span {
    color: #f5b942;
}

.guest-hero__tagline {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    color: #dbe5f3;
    font-size: 1.08rem;
    line-height: 1.55;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .65);
}

.guest-hero__actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
}

.guest-hero__actions .btn {
    min-width: 150px;
    font-weight: 800;
}

.guest-hero__manual {
    margin-top: .9rem;
    color: #f5b942;
    font-size: .84rem;
    text-decoration: none;
}

.guest-hero__manual:hover,
.guest-hero__manual:focus-visible {
    color: #ffe08a;
    text-decoration: underline;
}

.guest-hero__stats {
    display: grid;
    width: min(100%, 760px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(245, 185, 66, .25);
    border-radius: 6px;
    background: rgba(7, 13, 22, .74);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
    backdrop-filter: blur(8px);
}

.guest-hero__stat {
    display: flex;
    min-height: 66px;
    padding: .7rem .75rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.guest-hero__stat + .guest-hero__stat {
    border-left: 1px solid rgba(255, 255, 255, .1);
}

.guest-hero__stat strong {
    color: #f5b942;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.1;
}

.guest-hero__stat > span {
    margin-top: .28rem;
    color: #94a3b8;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.guest-hero__stat--live .badge {
    font-size: .65rem;
    vertical-align: middle;
}

@media (max-width: 767.98px) {
    .guest-hero {
        min-height: 610px;
        padding: 1.25rem 1rem 1rem;
    }

    .guest-hero__content {
        padding-bottom: 1rem;
    }

    .guest-hero__crest {
        width: 112px;
        height: 112px;
    }

    .guest-hero__title {
        font-size: 2.55rem;
    }

    .guest-hero__tagline {
        max-width: 34rem;
        font-size: .95rem;
    }

    .guest-hero__actions {
        width: min(100%, 330px);
    }

    .guest-hero__actions .btn {
        min-width: 0;
        flex: 1;
        padding-right: .8rem;
        padding-left: .8rem;
        font-size: .9rem;
    }

    .guest-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guest-hero__stat {
        min-height: 56px;
        padding: .5rem;
    }

    .guest-hero__stat:nth-child(3) {
        border-left: 0;
    }

    .guest-hero__stat:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .guest-hero__stat strong {
        font-size: 1.15rem;
    }
}

@media (max-width: 420px) {
    .guest-hero {
        min-height: 590px;
        margin-right: -1rem;
        margin-left: -1rem;
    }

    .guest-hero__title {
        font-size: 2.2rem;
    }

    .guest-hero__tagline {
        font-size: .88rem;
    }
}
