/* Hero banner público: móvil imagen completa (3:2); tablet+ cover */
.hero-section.hero-section--public-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    aspect-ratio: 3 / 2;
    min-height: calc(100vw * 2 / 3);
    background-size: cover;
    background-position: center top;
    background-color: transparent;
}

.hero-section.hero-section--public-banner .hero-section--public-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    padding: 1rem 1.25rem;
}

.hero-section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
    gap: 0.35rem;
}

.hero-section--public-banner .hero-section__title {
    font-size: clamp(1.1rem, 4.25vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 !important;
    padding: 0 0.25rem;
    text-wrap: balance;
}

.hero-section--public-banner .hero-section__title i {
    margin-right: 0.35rem;
}

.hero-section--public-banner .hero-section__subtitle {
    font-size: clamp(0.8125rem, 3.35vw, 0.875rem);
    line-height: 1.45;
    margin: 0 !important;
    padding: 0 0.25rem;
    opacity: 0.95;
    text-wrap: balance;
}

main > .hero-section.hero-section--public-banner:first-child {
    margin-top: calc(-1 * (var(--public-navbar-height) + env(safe-area-inset-top, 0px)));
    padding-top: calc(var(--public-navbar-height) + env(safe-area-inset-top, 0px));
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .hero-section.hero-section--public-banner {
        aspect-ratio: auto;
        min-height: clamp(220px, 42vh, 480px);
        padding: 20px 0;
        background-size: cover;
        background-color: transparent;
    }

    .hero-section.hero-section--public-banner .hero-section--public-banner__inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-section__content {
        max-width: 32rem;
    }

    .hero-section--public-banner .hero-section__title {
        font-size: 1.5rem;
    }

    .hero-section--public-banner .hero-section__subtitle {
        font-size: 0.9rem;
    }
}
