.featured-posts__header {
    margin-bottom: 40px;
}
.featured-posts__single {
    column-gap: 60px;
}
.featured-posts__single .column{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-posts__image {
    width: 50%;
}
.featured-posts__image img {
    height: 100%;
    object-fit: cover;
    height: 540px;
    width: 100%;
}

/** Slider Styles **/
.featured-posts__swiper-nav-wrapper {
    display: flex;
    width: 100%;
    position: relative;
    height: 40px;
    display: none;
}
.featured-posts__slider .swiper-slide {
    height: auto;
}
.featured-posts__slider .featured-posts__item {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.featured-posts__slider .featured-posts__item img {
    height: 260px;
    object-fit: cover;
}
.featured-posts__slider .featured-posts__itemInfo {
    padding: 20px;
    min-height: 160px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.featured-posts__slider .featured-posts__itemInfo .small {
    margin-top: auto;
}
.featured-posts__slider .featured-posts__item:hover .featured-posts__itemInfo {
    background: var(--color-n-white);
    border-bottom: 4px solid transparent;
}
.featured-posts__slider .featured-posts__item:hover .featured-posts__itemInfo {
    color: var(--color-p);
}

.featured-posts__topLink .swiper-nav {
    position: relative;
}

.block-featured-posts .swiper-nav .swiper-arrow {
    top: unset;
	border: 1px solid white;
    padding: 7px 21px;
    border-radius: 10px;
    height: auto;
}
.block-featured-posts .swiper-nav .swiper-button-next{
	right: 0;
}
.block-featured-posts .swiper-nav .swiper-button-prev{
    left: unset;
    right: 50px;
}


.featured-posts-block .block-link{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:10;
}

@media (max-width: 990px) {
    .featured-posts__single {
        flex-direction: column;
        row-gap: 40px;
    }
    .featured-posts__single .column{
        width: 100%;
    }
    .featured-posts__image {
        width: 100%;
    }
}

@media (max-width: 780px) {
    .featured-posts__image img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .block-featured-posts {
        padding-top: var(--space-5);
        padding-bottom: var(--space-5);
    }
}