
.dst-cta-section{
    position:relative;
    width:100%;
    box-sizing:border-box;
    padding:78px 24px 84px;
    overflow:hidden;
    background:#20272B;
}
.dst-cta-section:after{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    right:-120px;
    top:50%;
    transform:translateY(-50%);
    border-radius:50%;
    background:radial-gradient(circle, rgba(216,154,43,.22) 0%, rgba(216,154,43,.10) 36%, rgba(216,154,43,0) 72%);
    pointer-events:none;
}
.dst-cta-inner{
    position:relative;
    z-index:1;
    width:min(1180px,100%);
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:48px;
}
.dst-cta-copy{
    width:62%;
    min-width:0;
}
.dst-cta-eyebrow{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
    font:700 11px/1.2 Arial,sans-serif;
    letter-spacing:2px;
}
.dst-cta-line{
    display:inline-block;
    width:34px;
    height:2px;
}
.dst-cta-title{
    margin:0;
    max-width:760px;
    font-family:Georgia,serif;
    font-size:56px;
    line-height:1.08;
    font-weight:700;
    letter-spacing:-.6px;
}
.dst-cta-description{
    margin:26px 0 0;
    max-width:760px;
    font:400 16px/1.6 Arial,sans-serif;
}
.dst-cta-actions{
    width:38%;
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:14px;
    flex-wrap:wrap;
}
.dst-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:13px 22px;
    border-radius:999px;
    text-decoration:none !important;
    font:700 15px/1 Arial,sans-serif;
    transition:transform .2s ease, opacity .2s ease, background-color .2s ease;
    white-space:nowrap;
}
.dst-cta-btn:hover{
    transform:translateY(-1px);
    opacity:.94;
}
.dst-cta-btn-primary{
    color:#fff !important;
    background:#D89A2B;
    border:1px solid transparent;
}
.dst-cta-btn-secondary{
    color:#fff !important;
    background:transparent;
    border:1px solid rgba(255,255,255,.55);
}
.dst-cta-btn-secondary:hover{
    background:rgba(255,255,255,.08);
}
@media (max-width:1024px){
    .dst-cta-section{padding:64px 20px 68px;}
    .dst-cta-inner{gap:36px;}
    .dst-cta-copy{width:60%;}
    .dst-cta-actions{width:40%;}
    .dst-cta-title{font-size:46px;}
    .dst-cta-description{font-size:15px;}
}
@media (max-width:767px){
    .dst-cta-section{padding:48px 16px 52px;}
    .dst-cta-section:after{
        width:360px;
        height:360px;
        right:-170px;
        top:auto;
        bottom:-130px;
        transform:none;
    }
    .dst-cta-inner{
        flex-direction:column;
        align-items:stretch;
        gap:30px;
    }
    .dst-cta-copy,
    .dst-cta-actions{
        width:100%;
    }
    .dst-cta-title{
        font-size:38px;
        line-height:1.08;
    }
    .dst-cta-description{
        margin-top:20px;
        font-size:14px;
    }
    .dst-cta-actions{
        justify-content:flex-start;
    }
    .dst-cta-btn{
        min-height:46px;
        padding:12px 18px;
        font-size:14px;
    }
}
@media (max-width:480px){
    .dst-cta-title{font-size:34px;}
    .dst-cta-actions{
        flex-direction:column;
        align-items:stretch;
    }
    .dst-cta-btn{
        width:100%;
        white-space:normal;
        text-align:center;
    }
}
