.news-carousel {
    margin: 30px 0;
}

.news-carousel .news-item {
    padding: 15px;
    text-align: center;
}

.news-carousel .news-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-carousel .news-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-carousel .news-item h3 a {
    color: #a31e69;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-carousel .news-item h3 a:hover {
    color: #7a1650;
}

.news-carousel .owl-nav {
    position: absolute;
    top: -70px;
    right: 0;
}

.news-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    background: #a31e69 !important;
    color: white !important;
    border-radius: 50% !important;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.news-carousel .owl-nav button:hover {
    background: #7a1650 !important;
}

@media (max-width: 767px) {
    .news-carousel .owl-nav {
        top: -60px;
    }
}

/*read more button*/
.news-content {
        position: relative;
    }
    .news-excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 5px;
    }
    .read-more-btn {
        background: none;
        border: none;
        color: #0066cc;
        cursor: pointer;
        padding: 0;
        font-size: 14px;
    }
    .read-more-btn:hover {
        text-decoration: underline;
    }