/* ── DKBS Campaign Two Columns ───────────────────────────────── */

.dkbs-two-cols {
    width: 100%;
    font-family: 'Figtree', sans-serif;
}

.dkbs-two-cols__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dkbs-two-cols__col {
    padding: 64px 48px;
    box-sizing: border-box;
}

.dkbs-two-cols__col-inner {
    max-width: 480px;
    margin: 0 auto;
}

/* White text variant */
.dkbs-two-cols__col--light,
.dkbs-two-cols__col--light .dkbs-two-cols__col-title,
.dkbs-two-cols__col--light .dkbs-two-cols__col-content,
.dkbs-two-cols__col--light .dkbs-two-cols__col-content p,
.dkbs-two-cols__col--light .dkbs-two-cols__col-content li {
    color: #ffffff;
}

/* Dark text variant */
.dkbs-two-cols__col--dark,
.dkbs-two-cols__col--dark .dkbs-two-cols__col-title,
.dkbs-two-cols__col--dark .dkbs-two-cols__col-content,
.dkbs-two-cols__col--dark .dkbs-two-cols__col-content p,
.dkbs-two-cols__col--dark .dkbs-two-cols__col-content li {
    color: #222222;
}

.dkbs-two-cols__col-title {
    margin: 0 0 20px;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.dkbs-two-cols__col-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.dkbs-two-cols__col-content p {
    margin: 0 0 12px;
}

.dkbs-two-cols__col-content p:last-child {
    margin-bottom: 0;
}

.dkbs-two-cols__col-content ul,
.dkbs-two-cols__col-content ol {
    margin: 0 0 12px;
    padding-left: 20px;
}

.dkbs-two-cols__col-content li {
    margin-bottom: 6px;
    line-height: 1.5;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 767px) {
    .dkbs-two-cols__grid {
        grid-template-columns: 1fr;
    }

    .dkbs-two-cols__col {
        padding: 48px 24px;
    }
}
