

.newsletter-carousel-area {
    padding: 60px 0;
}
.newsletter-carousel-area h2{
    font-weight: 500;
}
.newsletter-item {
    padding: 0 15px;
}

.newsletter-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.newsletter-link:hover {
    transform: translateY(-5px);
}

.newsletter-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
}

.newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.newsletter-link:hover .newsletter-image img {
    transform: scale(1.05);
}

.newsletter-title {
    display: flex;
    min-height: 110px;
    border-radius: 0px 0px 10px 10px;
    background: #FFCE38;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-title h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    font-size: 24px;
    text-align: center;
    max-width: 85%;
    color: Var(--purple);
    line-height: 1.2;
    margin: auto;
    margin-bottom: 5px;
}

.newsletter-carousel .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.newsletter-carousel .owl-nav button {
    background: #333;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    transition: background 0.3s ease;
}

.newsletter-carousel .owl-nav button:hover {
    background: #555;
}

.newsletter-carousel .owl-nav button i {
    font-size: 14px;
}
.newsletter-carousel .issue-number{
    width: 100%;
    display: flex;
    justify-content: center;
    font-weight: 400;
}
.newsletter-carousel .owl-prev:hover,
.newsletter-carousel .owl-next:hover {
    background-color: #FFCE38 !important;
    cursor: pointer;
}   
.newsletter-carousel .owl-prev{
    position: absolute;
    left: -90px;
    top: 40%;
    border: 1px solid var(--purple) !important;
    color: var(--purple) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter-carousel .owl-next{
    position: absolute;
    right: -90px;
    top: 40%;
    border: 1px solid var(--purple) !important;
    color: var(--purple) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 767px) {
    .newsletter-image {
        height: 150px;
    }

    .newsletter-title h3 {
        font-size: 14px;
    }
    .newsletter-carousel .owl-prev{
        left: -50px;
    }
    .newsletter-carousel .owl-next{
        right: -50px;
    }
}
