/**
 * CDL Catalog Block - Home
 */

.cdl-catalog {
    padding: 80px 0;
    background: #f9f9f9;
}

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

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

.cdl-catalog-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-catalog-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

/* Category group */
.cdl-catalog-group {
    margin-bottom: 48px;
}

.cdl-catalog-group:last-child {
    margin-bottom: 0;
}

.cdl-catalog-group-title {
    font-family: 'Jost', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #EBBE18;
}

/* Cards grid */
.cdl-catalog-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Adjust grid for fewer items */
.cdl-catalog-cards--1 {
    grid-template-columns: repeat(1, 1fr);
    max-width: 400px;
}

.cdl-catalog-cards--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

.cdl-catalog-cards--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Card */
.cdl-catalog-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 32px 24px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cdl-catalog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #EBBE18;
    text-decoration: none;
}

/* Card icon */
.cdl-catalog-card-icon {
    margin-bottom: 16px;
}

.cdl-catalog-card-title {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.3;
}

.cdl-catalog-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .cdl-catalog-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .cdl-catalog {
        padding: 60px 0;
    }

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

    .cdl-catalog-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .cdl-catalog-cards--1 {
        grid-template-columns: 1fr;
    }

    .cdl-catalog-group {
        margin-bottom: 40px;
    }
}

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

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

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

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

    .cdl-catalog-cards,
    .cdl-catalog-cards--2,
    .cdl-catalog-cards--3 {
        grid-template-columns: 1fr;
    }

    .cdl-catalog-card {
        padding: 20px;
    }

    .cdl-catalog-group {
        margin-bottom: 32px;
    }
}
