.dt-wrap{
    width:100%;
    position:relative;
    box-sizing:border-box;
    overflow:hidden;
    padding:10px 0;
}
.dt-wrap *{box-sizing:border-box;}

/* DESKTOP: fijo, sin flechas, sin carrusel */
.dt-desktop{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    width:100%;
}
.dt-desktop-item{
    flex:1 1 0;
    min-width:0;
    display:flex;
}
.dt-desktop-item.is-featured-item{
    flex:1.16 1 0;
}

.dt-card{
    position:relative;
    width:100%;
    min-height:374px;
    background:#f4f4f6;
    border-radius:22px;
    padding:76px 30px 25px;
    display:flex;
    flex-direction:column;
    justify-content: space-around;
    overflow:hidden;
}
.dt-card.is-featured{
    min-height:404px;
    padding-left:31px;
    padding-right:31px;
}
.dt-quote{
    position:absolute;
    top:-30px;
    right:17px;
    color:#c9eadc;
    font-family:Arial, Helvetica, sans-serif;
    font-size:200px;
    font-weight:900;
    line-height:.85;
    z-index:0;
    pointer-events:none;
}
.dt-text{
    position:relative;
    z-index:1;
    margin:0 0 18px;
    color:#292930;
    font-family:"Nunito Sans", Sans-serif;
    font-size:16px!important;
    font-weight:500;
    line-height:1.32;
}
.dt-card.is-featured .dt-text{
    font-size:24px;
    line-height:1.32;
}
.dt-person{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    gap:36px;
}
.dt-person img{
    width:90px;
    height:90px;
    min-width:90px;
    border-radius:50%;
    object-fit:cover;
    display:block;
}
.dt-person h4{
    margin:0 0 13px;
    color:#000;
    font-family:"Nunito Sans", Sans-serif;
    font-size:24px !important;
    font-weight:600;
    line-height:1;
}
.dt-person span{
    display:block;
    color:#25AC89;
    font-family:"Nunito Sans", Sans-serif;
    font-size:14px!important;
    font-weight:700;
    line-height:1.2;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.dt-mobile{display:none;}

@media (max-width:1400px){
    .dt-card{min-height:200px;padding:55px 24px 22px;}
    .dt-card.is-featured{min-height:300px;}
    .dt-text,.dt-card.is-featured .dt-text{font-size:18px;}
    .dt-person{gap:24px;}
    .dt-person img{width:68px;height:68px;min-width:68px;}
    .dt-person h4{font-size:28px;}
    .dt-person span{font-size:15px;}
    .dt-quote{font-size:155px;top:-25px;}
}

@media (max-width:1023px){
    .dt-desktop{display:none;}
    .dt-mobile{
        position:relative;
        display:block;
        width:100%;
        padding:0 38px;
        overflow:hidden;
    }
    .dt-swiper{overflow:visible;width:100%;}
    .dt-swiper .swiper-slide{height:auto;display:flex;}
    .dt-mobile .dt-card{
        min-height:218px;
        border-radius:20px;
        padding:36px 18px 18px;
    }
    .dt-mobile .dt-text,
    .dt-mobile .dt-card.is-featured .dt-text{
        font-size:14px !important;
        font-style:italic;
        line-height:1.32;
        margin-bottom:26px;
        color:#000;
    }
    .dt-mobile .dt-person{gap:14px;}
    .dt-mobile .dt-person img{
        width:44px;
        height:44px;
        min-width:44px;
    }
    .dt-mobile .dt-person h4{
        font-size:21px;
        margin-bottom:5px;
        font-weight:400;
    }
    .dt-mobile .dt-person span{
        font-size:8px !important;
        letter-spacing:1.2px;
    }
    .dt-mobile .dt-quote{
        top:-10px;
        right:14px;
        font-size:130px;
    }
    .dt-arrow{
        position:absolute;
        top:50%;
        transform:translateY(-50%);
        z-index:10;
        width:28px;
        height:28px;
        border:0;
        border-radius:50%;
        background:#fff;
        color:#a5a5a5;
        box-shadow:0 3px 12px rgba(0,0,0,.12);
        font-size:25px;
        line-height:24px;
        display:flex;
        align-items:center;
        justify-content:center;
        cursor:pointer;
        padding:0;
    }
    .dt-prev{left:18px;}
    .dt-next{right:18px;}
}
