/* Hero Banner Component - Mobile First */
/* Basado en el diseño de Figma "Container" / Hero Banner */

/* Base Styles - Mobile */
.dh-hero {
    width: 100%;
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary-red-100) 10%, transparent) 0%, color-mix(in srgb, var(--primary-red-100) 0%, transparent) 100%), var(--white-red);
}

.dh-hero__container {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 40px 0;
    margin: 0 auto;
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary-red-100) 10%, transparent) 0%, color-mix(in srgb, var(--primary-red-100) 0%, transparent) 100%), var(--white-red);
}

/* Home Page Specific Hero Background */
body.home .dh-hero,
body.home .dh-hero__container {
    background: linear-gradient(180deg, rgba(223, 0, 47, 0.00) 0%, rgba(223, 0, 47, 0.10) 100%), #FFF8F8;
    background-blend-mode: multiply, normal;
}

body.home .dh-hero__title {
    color: #DF002F;
}

/* Variante roles - background invertido (más blanco, gradiente más sutil) */
.dh-hero--roles {
    background: linear-gradient(180deg, rgba(223, 0, 47, 0.10) 0%, rgba(223, 0, 47, 0.00) 100%), #FFF8F8;
    background-blend-mode: normal;
}

.dh-hero--roles .dh-hero__container {
    background: linear-gradient(180deg, rgba(223, 0, 47, 0.10) 0%, rgba(223, 0, 47, 0.00) 100%), #FFF8F8;
    background-blend-mode: normal;
}

/* Ocultar desktop en mobile */
.dh-hero__desktop {
    display: none;
}

/* Mostrar mobile en mobile */
.dh-hero__mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.dh-hero__title {
    color: var(--primary-black-100);
    font-family: var(--font-lato, 'Lato');
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    margin: 0;
    margin-bottom: 30px;
    /* Ensure space between title and form if description is missing */
    padding: 0;
}

/* Variante roles - título rojo */
.dh-hero__title--roles {
    color: var(--primary-red-100);
    padding-bottom: 0;
}

/* Descripción para variante roles */
.dh-hero__description {
    color: var(--primary-black-100);
    font-family: var(--font-lato, 'Lato');
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
    margin: 0;
    padding: 0;
}

/* Divider para variante roles */
.dh-hero__divider {
    width: 100%;
    height: 0;
    border: none;
    border-top: 1px solid var(--primary-red-20);
    margin: 0;
    padding: 0;
    opacity: 1;
    margin-top: 8px;
}

.dh-hero__calendly {
    width: 100%;
    margin-bottom: 30px;
}

.dh-hero__calendly-wrapper {
    width: 100%;
    background: var(--primary-white);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 6px 16px 0 rgba(27, 27, 27, 0.08);
    overflow: hidden;
    box-sizing: border-box;
    background: var(--primary-grey-10);
}

.dh-hero__calendly-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 36px;
    padding: 0px 28px;
}

.dh-hero__calendly-title {
    color: var(--primary-black-100);
    font-family: var(--font-lato, 'Lato');
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.dh-hero__calendly-description {
    color: var(--primary-black-100);
    font-family: var(--font-lato, 'Lato');
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
    margin: 0;
}

.dh-hero__calendly-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.dh-hero__calendly-info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.dh-hero__calendly-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
    margin-top: 2px;
}

.dh-hero__calendly-info-text {
    color: var(--primary-black-100);
    font-family: var(--font-lato, 'Lato');
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
}

.dh-hero__calendly-wrapper .calendly-inline-widget {
    width: 100%;
    min-height: 493px;
    max-height: 493px;
    max-width: 100%;
    overflow: hidden;
}

.dh-hero__calendly-wrapper .calendly-inline-widget iframe {
    max-width: 100%;
    width: 100%;
}

.dh-hero__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.dh-hero__header-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Variante roles - gap diferente en header section */
.dh-hero--roles .dh-hero__header-section {
    gap: 16px;
}

.dh-hero__overline {
    display: flex;
    align-self: flex-start;
}

.dh-hero__overline p {
    display: flex;
    padding: 5px 10px;
    flex-direction: column;
    align-items: center;
    border-radius: 9999px;
    background: var(--primary-white);
    color: var(--primary-red-100);
    text-align: center;
    font-family: var(--font-lato, 'Lato');
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    margin: 0;
}

.dh-hero__benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dh-hero__benefits-title {
    color: var(--primary-red-90);
    font-family: var(--font-lato, 'Lato');
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 132%;
    margin: 0;
}

/* Variante roles - título de beneficios en negro */
.dh-hero__benefits-title--roles {
    color: var(--primary-black-100);
}

.dh-hero__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dh-hero__benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.dh-hero__check-icon {
    flex-shrink: 0;
    width: 27px;
    height: 27px;
    margin-top: -3px;
    display: block;
}

.dh-hero__benefit-item span {
    color: var(--primary-black-100);
    font-family: var(--font-lato, 'Lato');
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
    flex: 1;
}

.dh-hero__commitment {
    display: flex;
    width: 100%;
}

.dh-hero__commitment-title {
    color: var(--primary-black-100);
    font-family: var(--font-lato, 'Lato');
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin: 0;
}

.dh-hero__commitment-text {
    color: var(--primary-black-100);
    font-family: var(--font-lato, 'Lato');
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
}

/* Reduce gap between benefits and commitment to 16px (30px gap - 14px margin) */
.dh-hero__benefits+.dh-hero__commitment {
    margin-top: -14px;
}

.dh-hero__stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: 1px solid var(--primary-red-20);
    border-bottom: 1px solid var(--primary-red-20);
}

.dh-hero__section-divider {
    display: none;
}

.dh-hero__stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.dh-hero__stat-value {
    color: var(--primary-red-90);
    font-family: var(--font-lato, 'Lato');
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: 115%;
    /* 34.5px */
}

.dh-hero__stat-label {
    color: var(--primary-red-90);
    font-family: var(--font-lato, 'Lato');
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%;
}

.dh-hero__testimonial {
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Variante roles - testimonial con contact-cta */
.dh-hero--roles .dh-hero__testimonial {
    padding-top: 0;
}

.dh-hero__testimonial-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Variante roles - testimonial content con menos width */
.dh-hero--roles .dh-hero__testimonial-content {
    max-width: 355px;
}

.dh-hero__testimonial-avatar {
    flex-shrink: 0;
    width: 55px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
}

.dh-hero__testimonial-avatar img,
.dh-hero__testimonial-avatar picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dh-hero__testimonial p {
    color: var(--primary-red-100);
    font-family: var(--font-lato, 'Lato');
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
    margin-bottom: 0;
}

/* Variante roles - testimonial p con max-width */
.dh-hero--roles .dh-hero__testimonial p {
    max-width: 500px;
}

/* Contact CTA - Solo para variante roles */
.dh-hero__contact-cta {
    margin-top: 24px;
}

.dh-hero__contact-cta-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 20px 10px 14px;
    background: var(--white-red);
    border-radius: 100px;
    width: 100%;
    max-width: 355px;
}

.dh-hero__contact-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    flex: 1;
}

.dh-hero__contact-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-red-10);
    border-radius: 20px;
    flex-shrink: 0;
    align-self: center;
}

.dh-hero__contact-cta-text {
    margin: 0;
}

.dh-hero__contact-cta-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.dh-hero__contact-cta-text,
.dh-hero__contact-cta p.dh-hero__contact-cta-text,
.dh-hero__testimonial .dh-hero__contact-cta-text {
    color: var(--primary-black-100);
    font-family: var(--font-lato, 'Lato');
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 132%;
    /* 21.12px */
    margin: 0;
}

.dh-hero__contact-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 2px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--primary-red-100);
    font-family: var(--font-lato, 'Lato');
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}

.dh-hero__contact-cta-button span {
    color: var(--primary-red-100);
}

.dh-hero__contact-cta-button:hover span {
    color: var(--primary-red-60);
    text-decoration: none;
}

.dh-hero__contact-cta-button:hover {
    text-decoration: none;
}

.dh-hero__contact-cta-arrow {
    width: 15px;
    height: 12px;
    flex-shrink: 0;
    display: block;
}

.dh-hero__contact-cta-button:hover .dh-hero__contact-cta-arrow {
    /* Filter to match --primary-red-60 (#F85C7B) from --primary-red-100 (#E21A44) */
    /* Approx filter generated for color shift */
    filter: brightness(0) saturate(100%) invert(56%) sepia(68%) saturate(3545%) hue-rotate(313deg) brightness(101%) contrast(92%);
}

/* Tablet Small - 600px y más */
@media (min-width: 600px) {
    .dh-hero__stats {
        flex-direction: row;
        gap: 24px;
        justify-content: space-between;
        align-items: flex-start;
    }

    .dh-hero__stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .dh-hero__stat-value {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    /*.dh-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }*/

    .dh-hero__title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    /* User adjustment for Homepage Hero Title on Mobile */
    body.home .dh-hero__title {
        font-size: 28px !important;
        margin-bottom: 0px !important;
    }

    .dh-hero__description {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

/* Tablet - 768px y más */
@media (min-width: 768px) {
    .dh-hero__container {
        padding: 60px 0;
    }

    .dh-hero__title {
        font-size: 32px;
        /*padding-bottom: 40px;*/
    }

    .dh-hero__calendly {
        margin-bottom: 0px;
    }

    .dh-hero__benefits-title {
        font-size: 16px;
        line-height: 132%;
    }

    .dh-hero__commitment-title {
        font-size: 16px;
        line-height: 100%;
    }


}

/* Desktop - 1024px y más */
@media (min-width: 1024px) {

    /* Ocultar mobile en desktop */
    .dh-hero__mobile {
        display: none;
    }

    /* Mostrar desktop en desktop */
    .dh-hero {
        padding: 60px 0;
        /* Lateral padding handled by .dh-container */
    }

    /* Variante roles - padding diferente */
    .dh-hero--roles {
        padding: 60px 0 80px;
    }

    .dh-hero__container {
        padding: 0;
        gap: 40px;
        background: transparent;
        max-width: 1234px;
    }

    /* Variante roles - gap diferente */
    .dh-hero--roles .dh-hero__container {
        gap: 80px;
    }

    /* Variante roles - background transparente en desktop */
    .dh-hero--roles .dh-hero__container {
        background: transparent;
    }

    .dh-hero__desktop {
        display: flex;
        flex-direction: row;
        gap: 40px;
        width: 100%;
        align-items: flex-start;
        margin: 0 auto;
        justify-content: space-around;
    }

    /* Variante roles - gap de 80px en desktop */
    .dh-hero--roles .dh-hero__desktop {
        gap: 80px;
    }

    .dh-hero__content--desktop {
        flex: 1;
        padding: 0;
        background: transparent;
        border-radius: 0;
        min-width: 0;
        /* Permite que se encoja si es necesario */
        gap: 24px;
    }

    /* Vertical Center for Pricing Variant */
    .dh-hero--pricing .dh-hero__desktop {
        align-items: center;
    }

    .dh-hero__header-section {
        gap: 20px;
    }

    .dh-hero__title--desktop {
        font-size: 42px;
        line-height: 116%;
        padding-bottom: 0;
        margin-bottom: 0;
        /* Reset mobile margin */
        max-width: 700px;
    }

    /* Variante roles - título más pequeño en desktop */
    .dh-hero__title--roles.dh-hero__title--desktop {
        font-size: 36px;
        line-height: 116%;
    }

    .dh-hero__stat {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 6px;
        max-width: 220px;
        width: 100%;
    }

    .dh-hero__stat-value {
        font-size: 30px;
    }

    .dh-hero__benefits-title {
        font-size: 16px;
        line-height: 132%;
    }

    .dh-hero__commitment-title {
        font-size: 16px;
        line-height: 100%;
    }

    /* Reduce gap between benefits and commitment to 16px (26px gap - 10px margin) */
    .dh-hero__benefits+.dh-hero__commitment {
        margin-top: -10px;
    }

    .dh-hero__testimonial {
        padding-top: 0;
    }

    /* Variante roles - testimonial content sin limitación de width en desktop */
    .dh-hero--roles .dh-hero__testimonial-content {
        max-width: none;
    }

    /* Variante roles - contact cta con width específico en desktop */
    .dh-hero--roles .dh-hero__contact-cta-content {
        max-width: 520px;
        width: auto;
    }

    /* Variante roles - espaciado específico entre testimonial y contact-cta */
    .dh-hero--roles .dh-hero__contact-cta {
        margin-top: 24px;
    }

    /* Contact CTA en desktop - mantener estructura responsive hasta 1440px */
    .dh-hero__contact-cta-content {
        max-width: none;
        width: auto;
        padding: 10px 20px 10px 14px;
    }

    /* Icono más pequeño en desktop */
    .dh-hero__contact-cta-icon {
        width: 30px;
        height: 30px;
    }

    .dh-hero__calendly--desktop {
        flex: 0 0 auto;
        max-width: 400px;
        width: 400px;
    }

    .dh-hero__calendly-wrapper {
        position: sticky;
        top: 100px;
        max-width: 400px;
        border-radius: 16px;
        padding: 30px 20px;
        box-shadow: 0 6px 16px 0 rgba(27, 27, 27, 0.08);
    }

    .dh-hero__stats {
        flex-direction: row;
        gap: 32px;
        justify-content: space-between;
    }

    .dh-hero__calendly-title {
        text-align: center;
    }

    .dh-hero__calendly-description {
        text-align: center;
    }
}

/* Desktop Large - 1280px y más - Restaurar ancho completo del calendario */
@media (min-width: 1280px) {
    .dh-hero__calendly--desktop {
        max-width: 528px;
        width: 528px;
    }

    .dh-hero__calendly-wrapper {
        max-width: 528px;
    }
}

/* Pantallas superiores a 1440px - Fijar ancho del contenido y hacer que calendly ocupe el resto */
@media (min-width: 1441px) {
    .dh-hero__content--desktop {
        flex: 0 0 auto;
        width: 700px;
        max-width: 700px;
    }

    .dh-hero__calendly--desktop {
        flex: 1;
        max-width: none;
        width: auto;
    }

    .dh-hero__calendly-wrapper {
        max-width: none;
        width: 100%;
    }

    /* Variante roles - contact cta con width fijo en pantallas grandes */
    .dh-hero--roles .dh-hero__contact-cta-content {
        max-width: 520px;
        width: auto;
    }

    /* En pantallas de 1441px o más, forzar layout horizontal en una línea */
    .dh-hero__contact-cta-content {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        flex-wrap: nowrap;
    }

    .dh-hero__contact-cta-group {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        flex: 0 0 auto;
    }

    .dh-hero__contact-cta-icon {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .dh-hero__contact-cta-text {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .dh-hero__contact-cta-button {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .dh-hero__calendly {
        margin-bottom: 24px;
    }
}

@media (min-width: 1024px) {
    .dh-hero {
        padding: 60px 0;
    }
}

@media (max-width: 320px) {
    .dh-hero__calendly-wrapper {
        padding: 30px 0px;
    }

}

@media (min-width: 600px) {

    /* Contact CTA en tablet landscape/desktop small - layout horizontal */
    .dh-hero__contact-cta-content {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        flex-wrap: nowrap;
        width: 100%;
        max-width: none;
    }

    .dh-hero__contact-cta-group {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex: 1;
        width: 100%;
    }

    .dh-hero__contact-cta-icon {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .dh-hero__contact-cta-text {
        white-space: normal;
        flex-shrink: 1;
        text-align: left;
        margin-right: auto;
    }

    .dh-hero__contact-cta-button {
        flex-shrink: 0;
        white-space: nowrap;
        margin-left: auto;
    }
}

@media (min-width: 1024px) and (max-width: 1070px) {
    .dh-hero__stat {
        align-items: center;
    }

    .dh-hero__stat {
        text-align: center;
    }
}

.dh-hero__description.dh-hero__description--mobile {
    margin-bottom: 24px;
}

.dh-hero__divider.dh-hero__divider--mobile {
    margin-bottom: 24px;
    margin-top: 0px;
}

/* Page Specific Overrides */
/* Únete al equipo - Custom CTA width */
body.page-template-page-unete-al-equipo .dh-hero__contact-cta-content {
    max-width: 365px;
    width: 100%;
    margin-right: auto;
}

/* Únete al equipo & Contacto - Custom Title Typography */
body.page-template-page-unete-al-equipo .dh-hero__title--roles.dh-hero__title--desktop,
body.page-template-page-contacto .dh-hero__title--roles.dh-hero__title--desktop {
    color: var(--primary-black-100, #111B29);
    font-family: var(--font-lato, 'Lato');
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 116%;
    /* 48.72px */
}

body.page-template-page-unete-al-equipo .dh-hero__title--roles.dh-hero__title--mobile,
body.page-template-page-contacto .dh-hero__title--roles.dh-hero__title--mobile {
    color: var(--primary-black-100, #111B29);
    font-family: var(--font-lato, 'Lato');
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 33px */
}

/* Únete al equipo & Contacto - Remove margin top from contact CTA */
body.page-template-page-unete-al-equipo .dh-hero--roles .dh-hero__contact-cta,
body.page-template-page-contacto .dh-hero--roles .dh-hero__contact-cta {
    margin-top: 0;
}

/* Contact Locations Block (Hero) */
.dh-hero__contact-locations {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    /* Space from description/benefits */
    width: 100%;
}

.dh-hero__contact-locations-title {
    color: var(--primary-black-100);
    font-family: var(--font-lato, 'Lato');
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.dh-hero__contact-locations-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dh-hero__contact-location-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* Align flag and phones vertically center */
    gap: 12px;
}

.dh-hero__contact-country {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Contact Page Styles */

/* Icons: 24x24px */
.dh-hero__contact-icon,
.dh-hero__contact-icon-title {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin: 0;
    /* Prevent external margins affecting alignment */
    display: block;
    /* Ensure it behaves as a block for flex alignment */
}

/* Contact Page specific divider */
.dh-hero__divider.dh-hero__divider--desktop {
    margin-top: 8px;
    margin-bottom: 8px;
    /* Ensure ~16px total gap (8+1+8) */
    border-top: 1px solid var(--primary-red-20);
    width: 100%;
}

/* "Teléfonos" Title */
.dh-hero__contact-locations-title {
    color: var(--primary-red-100, #DF002F);
    font-family: var(--font-lato, 'Lato');
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 142%;
    /* 25.56px */
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Gap between icon and title */
}

/* Email and Phone Numbers */
.dh-hero__contact-link {
    display: flex;
    align-items: center;
    /* Vertically center icon and text */
    gap: 8px;
    /* Gap between icon and text */
    color: var(--primary-black-100, #111B29);
    font-family: var(--font-lato, 'Lato');
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.dh-hero__contact-link:hover {
    color: var(--primary-red-100);
    text-decoration: underline;
}

/* Adjustment for country flag size if needed, but keeping existing 24px if not specified */
.dh-hero__contact-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.dh-hero__contact-country-name {
    color: var(--primary-black-100);
    font-family: var(--font-lato, 'Lato');
    font-size: 16px;
    font-weight: 700;
}

.dh-hero__contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 32px;
    /* Align with text (24px icon + 8px gap) */
}

.dh-hero__contact-phones {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    /* Only wrap on very small screens */
}

.dh-hero__contact-separator {
    color: var(--primary-black-100);
    font-family: var(--font-lato, 'Lato');
}

/* Contact CTA - Home page exclusive override */
.dh-hero--home-demo .dh-hero__contact-cta-content {
    max-width: 520px;
}