/**
 * CDL Marketing Block - Home
 */

.cdl-marketing {
    padding: 80px 0;
    background: #fff;
}

.cdl-marketing-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.cdl-marketing-header {
    text-align: center;
    margin-bottom: 56px;
}

.cdl-marketing-title {
    font-family: 'Jost', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.cdl-marketing-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards row */
.cdl-marketing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Card */
.cdl-marketing-card {
    background: #f5f5f5;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cdl-marketing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #EBBE18;
}

/* Icon */
.cdl-marketing-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #EBBE18 0%, #d4a916 100%);
    color: #000;
    margin-bottom: 24px;
}

.cdl-marketing-card-icon svg {
    width: 32px;
    height: 32px;
}

/* Card title */
.cdl-marketing-card-title {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

/* Card description */
.cdl-marketing-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .cdl-marketing {
        padding: 60px 0;
    }

    .cdl-marketing-title {
        font-size: 30px;
    }

    .cdl-marketing-cards {
        gap: 24px;
    }

    .cdl-marketing-card {
        padding: 32px 24px;
    }
}

@media (max-width: 767px) {
    .cdl-marketing {
        padding: 48px 0;
    }

    .cdl-marketing-header {
        margin-bottom: 40px;
    }

    .cdl-marketing-title {
        font-size: 26px;
    }

    .cdl-marketing-subtitle {
        font-size: 16px;
    }

    .cdl-marketing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cdl-marketing-card {
        padding: 32px 24px;
    }
}
