.wc-news-carousel-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 0;    
}

.owl-stage {
    clip-path: inset(0 -100% 0 0);
}

.owl-carousel .carousel-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.wc-news-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.wc-news-image {
    flex: 0 0 40%;
    height: 100%;
    overflow: hidden;
}

.wc-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.wc-news-text {
    flex: 1;
    color: #fff;
    margin-left: 20px;
}

.wc-news-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.wc-news-text p {
    font-size: 16px;
    margin-bottom: 10px;
}

.wc-news-text a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}


.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 45%);
    pointer-events: none;
    border-radius: 10px;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.overlay-gradient.fade-out {
    opacity: 0;
}


.owl-nav {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 24px;
    z-index: 10;
}

.owl-nav button {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    outline: none;
}

.owl-nav button.owl-prev::before {
    content: '\f060';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.owl-nav button.owl-prev {
    margin-right: 40px;
}

.owl-nav button.owl-next::before {
    content: '\f061';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.owl-nav span {
    display: none;
}

.owl-nav button:hover {
    color: #ccc;
}
.owl-nav {
    color: #fff;
}

@media (max-width: 920px) {
    .page-header-swiper .page-header-content {
        max-width: fit-content;
        padding: 0 20px;
    }
    .page-header-widget .button {
        padding: 15px;
    }
    .page-header-widget h1 {
        font-size: 55px;
    }
    .wc-news-content {
        flex-direction: column;
    }

}