/* News Carousel Navigation and Dots */
.news-one__carousel.owl-theme .owl-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.news-one__carousel.owl-theme .owl-nav .owl-prev,
.news-one__carousel.owl-theme .owl-nav .owl-next {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--govity-white);
    border: 1px solid var(--govity-bdr-color);
    border-radius: 50%;
    color: var(--govity-black);
    font-size: 16px;
    transition: all 500ms ease;
    cursor: pointer;
}

.news-one__carousel.owl-theme .owl-nav .owl-prev:hover,
.news-one__carousel.owl-theme .owl-nav .owl-next:hover {
    background-color: var(--govity-base);
    border-color: var(--govity-base);
    color: var(--govity-white);
}

.news-one__carousel.owl-theme .owl-dots {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.news-one__carousel.owl-theme .owl-dots .owl-dot {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    transition: all 500ms ease;
    cursor: pointer;
}

.news-one__carousel.owl-theme .owl-dots .owl-dot:hover,
.news-one__carousel.owl-theme .owl-dots .owl-dot.active {
    background-color: var(--govity-base);
    width: 30px;
    border-radius: 5px;
}

/* View All News Button */
.news-one__view-all {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.news-one__view-all .thm-btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.news-one__view-all .thm-btn i {
    margin-left: 10px;
    font-size: 14px;
    position: relative;
    top: 1px;
    transition: all 300ms ease;
}

.news-one__view-all .thm-btn:hover i {
    margin-left: 15px;
}