/* deka-cards.css */

.deka-cards-section {
    width: 100%;
    margin: 40px 0;
    box-sizing: border-box;
}

.deka-cards-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 40px;
    font-family: inherit;
    line-height: 1.4;
}

.deka-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    box-sizing: border-box;
}

.deka-card-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.deka-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.deka-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.deka-card-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    font-family: inherit;
    line-height: 1.3;
}

.deka-card-quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -8px;
}

.deka-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    font-family: inherit;
    margin: 0;
}

.deka-cards-btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.deka-cards-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 32px;
    border: 2px solid #e11d48;
    color: #e11d48;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.deka-cards-btn:hover {
    background: #e11d48;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .deka-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* The inline style from shortcode will override this if set to 2 */
    .deka-cards-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .deka-cards-btn-wrap {
        margin-top: 50px;
    }
    .deka-cards-main-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
}
