.visa-hero-section {
    height: clamp(260px, 38vh, 390px);
}

.visa-hero-section .hero-overlay {
    background-color: rgba(0, 0, 0, 0.42);
}

.visa-hero-content {
    align-items: center;
    justify-content: center;
    padding-bottom: 42px;
}

.visa-hero-title {
    margin: 0;
    color: var(--lp-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    line-height: 1.35;
}

.visa-hero-title span {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
}

.visa-hero-title small {
    font-size: clamp(15px, 1.5vw, 21px);
    font-weight: 500;
}

@media (max-width: 768px) {
    .visa-hero-section {
        height: clamp(230px, 34vh, 320px);
    }

    .visa-hero-content {
        padding-bottom: 32px;
    }

    .visa-hero-title {
        gap: 9px;
    }
}

@media (max-width: 480px) {
    .visa-hero-section {
        height: 230px;
    }

    .visa-hero-title span {
        font-size: 25px;
    }

    .visa-hero-title small {
        font-size: 14px;
    }
}