.cae-fullwidth-wrap{
    width:100%;
    max-width:none;
    box-sizing:border-box;
}
.cae-contact-card{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    display:grid;
    grid-template-columns:minmax(330px,1.2fr) 1px minmax(280px,1fr) max-content;
    align-items:center;
    border:1px solid;
    overflow:hidden;
    font-family:inherit;
}
.cae-contact-card *{box-sizing:border-box;}
.cae-help-block{
    display:flex;
    align-items:center;
    min-width:0;
    gap:18px;
}
.cae-main-icon{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}
.cae-main-icon svg{width:58%;height:58%;}
.cae-help-copy{
    min-width:0;
    line-height:1.35;
    font-size:17px;
    white-space:normal;
    overflow-wrap:anywhere;
}
.cae-divider{display:block;width:1px;justify-self:center;}
.cae-contact-details{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:4px;
    min-width:0;
    font-size:20px;
    line-height:1.2;
}
.cae-detail-row{
    display:flex;
    align-items:center;
    gap:8px;
    min-width:0;
}
.cae-detail-row > span:last-child{min-width:0;overflow-wrap:anywhere;word-break:break-word;}
.cae-detail-icon{flex:0 0 auto;width:24px;height:24px;display:inline-flex;}
.cae-detail-icon svg{width:100%;height:100%;}
.cae-button-wrap{display:flex;justify-content:flex-end;min-width:0;}
.cae-whatsapp-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    max-width:100%;
    white-space:nowrap;
    text-align:center;
    border:1px solid;
    line-height:1.1;
    text-decoration:none;
    transition:background-color .2s ease,color .2s ease,border-color .2s ease,transform .2s ease;
}
.cae-whatsapp-button:hover,.cae-whatsapp-button:focus{text-decoration:none;transform:translateY(-1px);}

/* Tablet: conserva el orden visual sin comprimir ni superponer contenido. */
@media (max-width:1024px){
    .cae-contact-card{
        grid-template-columns:minmax(0,1fr) max-content;
        grid-template-areas:
            "help button"
            "details details";
        row-gap:16px;
        column-gap:20px;
        min-height:0 !important;
    }
    .cae-help-block{grid-area:help;}
    .cae-divider{display:none;}
    .cae-contact-details{
        grid-area:details;
        width:100%;
        padding-left:calc(var(--cae-icon-space, 0px));
    }
    .cae-button-wrap{grid-area:button;justify-content:flex-end;}
}

/* Móvil: apilado limpio, centrado y sin desbordes. */
@media (max-width:767px){
    .cae-contact-card{
        grid-template-columns:minmax(0,1fr);
        grid-template-areas:
            "help"
            "details"
            "button";
        text-align:center;
        row-gap:16px;
        min-height:0 !important;
    }
    .cae-help-block{
        justify-content:center;
        flex-direction:column;
        gap:10px;
        width:100%;
    }
    .cae-help-copy{width:100%;}
    .cae-contact-details{
        width:100%;
        align-items:center;
        font-size:17px;
        padding-left:0;
    }
    .cae-detail-row{
        justify-content:center;
        width:100%;
        flex-wrap:wrap;
    }
    .cae-button-wrap{justify-content:center;width:100%;}
    .cae-whatsapp-button{white-space:normal;}
}
