.cec-list {
    display: flex;
    gap: 16px;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow-x: hidden;
}

.cec-list.is-scrollable {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 8px;
}

.cec-card {
    flex: 0 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    background: #eef1f7;
    border-radius: 18px;
    padding: 14px 16px;
    min-width: auto;
    max-width: 420px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
    scroll-snap-align: start;
    transition: transform .12s ease, box-shadow .12s ease;
    white-space: normal;
}

.cec-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}

.cec-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #4b6689;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    overflow: hidden;
}

.cec-icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cec-icon-fallback {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cec-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    text-align: left
}

.cec-title {
    font-weight: 800;
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: .02em;
    color: #0f172a;
    text-transform: uppercase;
}

.cec-desc {
    color: #1f2937;
    font-size: 15px;
    line-height: 1.3;
    opacity: .9;
}

.cec-empty {
    color: #6b7280;
    font-style: italic;
}

@media (max-width: 480px) {
    .cec-card {
        min-width: 280px;
    }

    .cec-desc {
        font-size: 14px;
    }
}
