.clc-carousel-wrap {
    position: relative;
    width: 100%;
    padding: 20px 0 50px;
}

.clc-carousel {
    overflow: hidden;
}

.clc-card {
    background: #eef5f5;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.clc-card-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.clc-card-content {
    padding: 28px 24px 30px;
    text-align: center;
}

.clc-card-title {
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
}

.clc-card-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #222;
}

.clc-card-desc p {
    margin: 0 0 14px;
}

.clc-card-button {
    display: inline-block;
    margin-top: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #111;
}

.clc-card-button:hover {
    text-decoration: underline;
}

.clc-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10;
    cursor: pointer;
    border-radius: 4px;
}

.clc-prev {
    left: 10px;
}

.clc-next {
    right: 10px;
}

.clc-nav::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.clc-prev::after {
    transform: translate(-30%, -50%) rotate(-135deg);
}

.clc-next::after {
    transform: translate(-70%, -50%) rotate(45deg);
}

.clc-pagination {
    margin-top: 22px;
    text-align: center;
}

.clc-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

@media (max-width: 767px) {
    .clc-card-image img {
        height: 220px;
    }

    .clc-card-title {
        font-size: 24px;
    }

    .clc-card-desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .clc-nav {
        width: 36px;
        height: 36px;
    }
}