#home-featured-slider > .container {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
}

#home-featured-slider > .container > .swiper {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    min-width: 0;
}

.featured-slider-nav {
    position: static;
    grid-row: 1;
    justify-self: center;
    z-index: 20;
    width: 34px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #13793a;
    font: 700 27px/1 Arial, sans-serif;
    cursor: pointer;
    box-shadow: none;
}

.featured-slider-nav.prev {
    grid-column: 1;
}

.featured-slider-nav.next {
    grid-column: 3;
}

.featured-slider-nav:hover,
.featured-slider-nav:focus-visible {
    background: transparent;
    color: #0f6430;
    outline: none;
}

.homepage-top-ad {
    margin-top: 30px;
}

@media only screen and (max-width: 768px) {
    #home-featured-slider > .container {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
    }

    .featured-slider-nav {
        width: 30px;
        height: 42px;
        font-size: 24px;
    }

    .homepage-top-ad {
        margin-top: 20px;
    }
}
