
.acdp-grid{
    --acdp-columns:2;
    width:100%;
    margin-inline:auto;
    display:grid;
    grid-template-columns:repeat(var(--acdp-columns), minmax(0,1fr));
    gap:0;
    box-sizing:border-box;
}
.acdp-card{
    min-width:0;
    overflow:hidden;
    box-sizing:border-box;
    background:#fff;
}
.acdp-hero{
    position:relative;
    min-height:360px;
    overflow:hidden;
    isolation:isolate;
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
}
.acdp-overlay{
    position:absolute;
    inset:0;
    z-index:0;
    background:rgba(0,0,0,.24);
}
.acdp-hero-inner{
    position:relative;
    z-index:1;
    min-height:inherit;
    display:flex;
    align-items:stretch;
    justify-content:space-between;
    gap:12px;
    padding:24px 22px;
    box-sizing:border-box;
}
.acdp-content{
    width:48%;
    min-width:0;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    text-align:left;
}
.acdp-logo{
    display:block;
    width:95px;
    max-width:100%;
    height:auto;
    margin-bottom:8px;
}
.acdp-title{
    color:#fff;
    font-size:42px;
    line-height:1;
    margin-bottom:12px;
}
.acdp-description{
    color:#fff;
    font-size:13px;
    line-height:1.25;
    margin-bottom:18px;
}
.acdp-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    border:1px solid #d9bb98;
    padding:9px 16px;
    border-radius:12px;
    color:#fff;
    text-decoration:none;
    background:rgba(255,255,255,.08);
}
.acdp-button-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
.acdp-button-icon svg{
    width:1em;
    height:1em;
    fill:currentColor;
}
.acdp-media{
    width:52%;
    min-width:0;
    align-self:stretch;
    display:flex;
    align-items:flex-end;
    justify-content:center;
}
.acdp-product{
    display:block;
    width:auto;
    max-width:100%;
    max-height:320px;
    object-fit:contain;
}
.acdp-info{
    --acdp-info-columns:2;
    min-height:180px;
    display:grid;
    grid-template-columns:repeat(var(--acdp-info-columns), minmax(0,1fr));
    align-items:center;
    gap:18px;
    padding:18px 16px;
    background:#ead8b9;
    box-sizing:border-box;
}
.acdp-feature{
    min-width:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}
.acdp-feature-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#8f6b6f;
    font-size:38px;
    margin-bottom:8px;
}
.acdp-feature-icon svg{
    width:1em;
    height:1em;
    fill:currentColor;
}
.acdp-feature-title{
    color:#211818;
    font-size:16px;
    line-height:1.1;
    margin-bottom:3px;
}
.acdp-feature-text{
    color:#211818;
    font-size:11px;
    line-height:1.2;
}
@media(max-width:1024px){
    .acdp-grid{--acdp-columns:2}
}
@media(max-width:767px){
    .acdp-grid{--acdp-columns:1}
    .acdp-info{--acdp-info-columns:1}
    .acdp-hero-inner{min-height:inherit}
    .acdp-title{font-size:34px}
}
