.cabanas-destacados-block{
    --cd-bg:#163a1d;
    --cd-accent:#84a90a;
    --cd-text:#ffffff;
    --cd-max:1320px;
    --cd-gap:20px;
    --cd-pad-y:22px;
    --cd-pad-x:28px;
    --cd-columns:6;
    width:100%;
    background:var(--cd-bg);
    color:var(--cd-text);
    box-sizing:border-box;
    font-family:Montserrat,Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.cabanas-destacados-block *{box-sizing:border-box;}
.cabanas-destacados-inner{
    width:100%;
    max-width:var(--cd-max);
    margin:0 auto;
    padding:var(--cd-pad-y) var(--cd-pad-x);
    display:grid;
    grid-template-columns:repeat(var(--cd-columns),minmax(0,1fr));
    gap:var(--cd-gap);
    align-items:center;
}
.cabanas-destacados-item{
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:13px;
    position:relative;
}
.cabanas-destacados-item:not(:last-child)::after{
    content:"";
    position:absolute;
    top:12%;
    right:calc(var(--cd-gap) / -2);
    width:1px;
    height:76%;
    background:rgba(255,255,255,.13);
}
.cabanas-destacados-icon{
    width:48px;
    height:48px;
    flex:0 0 48px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--cd-accent);
}
.cabanas-destacados-icon svg{width:43px;height:43px;display:block;}
.cabanas-destacados-copy{min-width:0;display:flex;flex-direction:column;gap:3px;}
.cabanas-destacados-title{
    color:var(--cd-text);
    font-size:12px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:.02em;
    text-transform:uppercase;
}
.cabanas-destacados-text{
    color:rgba(255,255,255,.82);
    font-size:11px;
    line-height:1.35;
    font-weight:400;
}
.cabanas-destacados-empty{grid-column:1/-1;margin:0;text-align:center;color:rgba(255,255,255,.8);}
@media (max-width:1100px){
    .cabanas-destacados-inner{grid-template-columns:repeat(3,minmax(0,1fr));row-gap:26px;}
    .cabanas-destacados-item:nth-child(3n)::after{display:none;}
}
@media (max-width:700px){
    .cabanas-destacados-inner{grid-template-columns:repeat(2,minmax(0,1fr));padding:22px 18px;gap:22px 14px;}
    .cabanas-destacados-item{justify-content:flex-start;}
    .cabanas-destacados-item::after{display:none!important;}
    .cabanas-destacados-icon{width:42px;height:42px;flex-basis:42px;}
    .cabanas-destacados-icon svg{width:37px;height:37px;}
}
@media (max-width:420px){
    .cabanas-destacados-inner{grid-template-columns:1fr;}
}
