/* ---------- Partners ---------- */
.cl-partners {
    position: relative;
}

.cl-partners-grid {
    row-gap: 56px;
}

.cl-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cl-logo img {
    width: 200px;
    max-width: 100%;
    height: auto;
    transition: var(--transition);
}

.cl-logo:hover img {
    transform: translateY(-6px);
}

/* ---------- Sectors ---------- */
.cl-sectors {
    position: relative;
}

.cl-sector-card {
    background-color: var(--light-bg);
    border-radius: 18px;
    padding: 44px 20px 36px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.cl-sector-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.cl-sector-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--primary);
    font-size: 40px;
    line-height: 1;
    margin-bottom: 20px;
}

.cl-sector-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.cl-sector-icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cl-sector-label {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading);
    margin: 0;
}

/* ---------- Testimonials ---------- */
.cl-testimonials {
    position: relative;
}

.cl-quote {
    text-align: center;
}

.cl-stars {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 20px;
}

.cl-stars .cl-star-off {
    color: var(--border-muted);
}

.cl-quote-card {
    background-color: var(--light-bg);
    border-radius: 18px;
    border: 1px solid transparent;
    padding: 38px 26px 30px;
    height: 100%;
    transition: var(--transition);
}

.cl-quote-card--featured {
    border-color: var(--primary);
    box-shadow: 0 -12px 30px rgba(200, 16, 46, .2);
    transform: translateY(-10px);
}

.cl-quote-icon {
    display: inline-block;
    color: var(--primary);
    font-size: 54px;
    margin-bottom: 20px;
}

.cl-quote-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.8;
    margin-bottom: 12px;
}

.cl-quote-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .cl-partners-grid {
        row-gap: 40px;
    }

    .cl-quote-card--featured {
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .cl-logo img {
        width: 150px;
    }

    .cl-sector-card {
        padding: 32px 14px 28px;
    }

    .cl-sector-label {
        font-size: 15px;
    }

    .cl-stars {
        font-size: 17px;
    }

    .cl-quote-card--featured {
        transform: none;
    }
}
