.dp-cs2-section {
    width: 100%;
    margin: 0;
    padding: 25px 30px 30px;
    border-radius: 16px;
}

.dp-cs2-heading {
    font-size: 1.35rem;
    font-weight: 700;
    font-style: italic;
    color: #232323;
    margin: 0 0 18px;
}

.dp-cs2-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.dp-cs2-intro {
    flex: 0 0 160px;
    border-radius: 12px;
    padding: 22px 18px;
    display: flex;
    align-items: center;
}

.dp-cs2-intro-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2d6a5a;
    line-height: 1.4;
}

.dp-cs2-carousel-wrap {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.dp-cs2-carousel {
    position: relative;
}

.dp-cs2-item {
    text-align: center;
}

.dp-cs2-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.dp-cs2-link:hover {
    transform: translateY(-2px);
}

.dp-cs2-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.5);
    padding: 10px;
    overflow: hidden;
}

.dp-cs2-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.dp-cs2-title {
    margin-top: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    padding: 0 4px;
}

.dp-cs2-carousel .owl-nav {
    position: absolute;
    top: calc(50% - 25px);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0;
    margin: 0;
}

.dp-cs2-carousel .owl-nav button.owl-prev,
.dp-cs2-carousel .owl-nav button.owl-next {
    pointer-events: all;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff !important;
    border: 1px solid #ddd !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.2s ease;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.dp-cs2-carousel .owl-nav button.owl-prev {
    margin-left: -16px;
}

.dp-cs2-carousel .owl-nav button.owl-next {
    margin-right: -16px;
}

.dp-cs2-carousel .owl-nav button:hover {
    background: #333 !important;
    color: #fff;
    border-color: #333 !important;
}

.dp-cs2-carousel .owl-nav button.disabled {
    opacity: 0.3;
    cursor: default;
}

.dp-cs2-carousel .owl-nav button.disabled:hover {
    background: #fff !important;
    color: #333;
    border-color: #ddd !important;
}

@media (max-width: 767px) {
    .dp-cs2-section {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .dp-cs2-row {
        flex-direction: column;
        gap: 12px;
    }

    .dp-cs2-intro {
        flex: none;
        width: 100%;
        padding: 16px;
    }

    .dp-cs2-heading {
        font-size: 1.1rem;
    }

    .dp-cs2-title {
        font-size: 0.78rem;
    }

    .dp-cs2-carousel .owl-nav button.owl-prev {
        margin-left: -5px;
    }

    .dp-cs2-carousel .owl-nav button.owl-next {
        margin-right: -5px;
    }

    .dp-cs2-carousel .owl-nav button.owl-prev,
    .dp-cs2-carousel .owl-nav button.owl-next {
        width: 28px;
        height: 28px;
    }
}
