.text-limited {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Ko'rsatiladigan qatorlar soni */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.text-limited-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* Ko'rsatiladigan qatorlar soni */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.text-limited-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Ko'rsatiladigan qatorlar soni */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.text-limited-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Ko'rsatiladigan qatorlar soni */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}



.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #f1f3f4;
    border-radius: 50%;
    color: #6c757d;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #007bff;
    color: white;
}

/* Navigation buttons styling */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

/* Make sure the container has proper padding to accommodate the buttons */
.position-relative {
    padding: 0 30px;
}

