@import "./common-var.css";
.section-slider {
    background: var(--white);
}
.section-content{ margin-bottom: 40px;}
.section-content .cms-text1 {
    max-width: 930px;

}

.section-item {
    padding: 0 25px;
    height: auto;
}

.section-card {
    display: flex;
    flex-direction: column;
    /* height: 100%; */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
}

.card-image {
    margin-bottom: 26px;
}

.card-image img {
    width: 100%;
    max-width: 329px;
    height: 240px;
    object-fit: cover;
    /* border-radius: 116px 116px 116px 40px; */
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-left: 10px;
}
[dir="rtl"] .card-content{
        padding-right: 10px;    
    }

.card-title {
    color: var(--text-default-color);
    font-family: var(--font-type2);
    font-size: 26px;
    font-weight: 400;
    line-height: 25px;
    margin: 0;
    flex: 1;
}

.card-arrow {
    flex-shrink: 0;
}

.card-arrow svg {
    transition: transform 0.3s ease;
    
}
[dir="rtl"] .card-arrow svg{
        transform: rotate(180deg);
    }

/* Responsive adjustments */
@media (max-width: 1199px) {
    .card-image img {
        max-width: 280px;
        height: 200px;
    }
    
    .card-title {
        font-size: 22px;
        line-height: 22px;
    }
}

@media (max-width: 991px) {
 
    .card-image img {
        max-width: 250px;
        height: 180px;
    }
    
    .card-title {
        font-size: 20px;
        line-height: 20px;
    }
}

@media (max-width: 767px) {
    .card-image {
        margin-bottom: 20px;
    }
    
    .card-image img {
        max-width: 100%;
        height: 180px;
    }
    
    .card-title {
        font-size: 18px;
        line-height: 18px;
    }
    
    .section-items-slider .slick-dots {
        bottom: -50px;
    }
    
    .section-items-slider .slick-dots li button:before {
        color: #2D13EA;
        opacity: 0.5;
        font-size: 12px;
    }
    
    .section-items-slider .slick-dots li.slick-active button:before {
        opacity: 1;
    }
}

@media (max-width: 575px) { 
    .card-image img {
        max-width: 100%;
        height: 240px;
    }
    
    .card-title {
        font-size: 16px;
        line-height: 16px;
    }
}