.dcta-section {
    padding: 80px 24px;
    background: url(/snippet-template/21A57608-2467-4FFC-AC1B-0433C76B834B/images/cta-bg.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    position: relative;
}

.dcta-section::before {
    content: "";
    background: url(/snippet-template/21A57608-2467-4FFC-AC1B-0433C76B834B/images/cta-top-right-img.svg);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 0;
    pointer-events: none;
}

.dcta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── White card ── */
.dcta-card {
    display: flex;
    align-items: stretch;
    border-radius: 16px;
    padding: 65px 0;
    background: rgba(255, 255, 255, 0.87);
    backdrop-filter: blur(7px);
    box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.05);
}

/* ── Vertical divider ── */
.dcta-divider {
    flex-shrink: 0;
    width: 1px;
    background: #e5e7eb;
    align-self: stretch;
}

/* ── Block ── */
.dcta-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 80px;
}

.dcta-block__title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin: 0 0 12px;
}

.dcta-block__desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.70);
    line-height: 1.6;
    margin: 0 0 28px;
    flex: 1;
}

/* ── Buttons ── */
a.dcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 9px 36px;
    border-radius: 50px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    align-self: flex-start;
    white-space: nowrap;
    width: 239px;
    text-align: center;
    justify-content: center;
}

a.dcta-btn--dark {
    background: #111827;
    color: #ffffff;
    border: 1.5px solid #111827;
}

a.dcta-btn--dark:hover {
    background: #374151;
    border-color: #374151;
}

a.dcta-btn--outline {
    background: transparent;
    color: #111827;
    border: 1.5px solid #111827;
}

a.dcta-btn--outline:hover {
    background: #111827;
    color: #ffffff;
}

a.dcta-btn svg {
    flex-shrink: 0;
}

.widget-snippet .dcta-card {
    backdrop-filter: none;
}
@media (max-width: 900px) {
    .dcta-block {
        padding: 0 48px;
    }
    .dcta-block__title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .dcta-section {
        padding: 60px 20px;
    }
    .dcta-card {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }
    .dcta-divider {
        width: auto;
        height: 1px;
        align-self: stretch;
    }
    .dcta-block {
        padding: 40px 32px;
    }
    .dcta-btn {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .dcta-block {
        padding: 32px 24px;
    }
    .dcta-block__title {
        font-size: 20px;
    }
    .dcta-btn {
        font-size: 13px;
        padding: 12px 20px;
    }
}
