.cl-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Montserrat', sans-serif;
}

.cl-title {
    text-align: center;
    margin-bottom: 1rem;
}

.cl-intro {
    text-align: center;
    line-height: normal;
    font-size: 14px;
    color: #000000;
    margin-bottom: 2.5rem;
}

.cl-intro p {
    margin: 0;
}

.cl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cl-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0ddd6;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cl-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.cl-card__image-wrap {
    flex-shrink: 0;
    width: 80px;
}

.cl-card__image {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 0 0 1px #e0ddd6;
    display: block;
}

.cl-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
    min-width: 0;
}

.cl-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.4;
}

.cl-card__desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.cl-card__link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #185FA5;
    margin-top: auto;
    padding-top: 0.5rem;
}

.cl-card:hover .cl-card__link {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .cl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .cl-grid {
        grid-template-columns: 1fr;
    }
}