.na-featured-news.js-featured-news .na-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.js-featured-news.slick-container .slick-list {
    margin: 0 -20px;
}

.js-featured-news.slick-container .slick-slide {
    padding: 0 20px;
    box-sizing: border-box;
    height: 100%;
}

.na-featured-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.na-featured-news-header .na-featured-news-heading {
    color: var(--e-global-color-primary);
    margin: 0;
}

.na-featured-news-header .na-featured-news-controls {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.na-featured-news-header .na-featured-news-controls .news-prev,
.na-featured-news-header .na-featured-news-controls .news-next {
    content: "";
    cursor: pointer;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--e-global-color-primary);
    border: unset;
    border-radius: 100px;
    font-size: unset;
    line-height: unset;
    padding: 10px 15px;
    opacity: 1;
    transition: all 0.3s ease;
}

.na-featured-news-header .na-featured-news-controls .news-prev img,
.na-featured-news-header .na-featured-news-controls .news-next img {
    width: 10px;
    height: 20px;
}

.na-featured-news-header .na-featured-news-controls .news-prev:hover,
.na-featured-news-header .na-featured-news-controls .news-next:hover {
    background-color: var(--secondary-color);
}

.na-featured-news-header .na-featured-news-controls .news-prev.slick-disabled,
.na-featured-news-header .na-featured-news-controls .news-next.slick-disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.na-featured-news.js-featured-news .slick-track {
    display: flex;
    margin-left: unset;
}

.na-featured-news.js-featured-news .slick-slide.na-card {
    height: auto;
}

.na-featured-news.na-featured-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.na-featured-news.na-featured-news-grid .na-card {
    background-color: white;
    border-radius: 4px;
}

.na-featured-news.na-featured-news-grid .na-card .na-card-media {
    margin: 0 0 30px 0;
}

.na-featured-news.na-featured-news-grid .na-card .na-card-date {
    margin: 0 30px;
    color: var(--e-global-color-primary);
    font-weight: 400;
}

.na-featured-news.na-featured-news-grid .na-card .na-card-category {
    margin: 0 30px 8px 30px;
    font-weight: 400;
}

.na-featured-news.na-featured-news-grid .na-card .na-card-title {
    margin: 0 30px 24px 30px;
}

.na-featured-news.na-featured-news-grid .na-card .na-card-actions {
    margin: auto 30px 30px 30px;
}

@media (max-width: 768px) {
    .na-featured-news.na-featured-news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .na-featured-news.na-featured-news-grid .na-card .na-card-media,
    .na-featured-news.na-featured-news-grid .na-card .na-card-media img {
        display: block;
        width: 100%;
        height: auto;
    }

    .na-featured-news.na-featured-news-grid .na-card .na-card-media {
        margin: 0 0 20px 0;
    }

    .na-featured-news.na-featured-news-grid .na-card .na-card-category {
        margin: 0 20px 6px 20px;
    }

    .na-featured-news.na-featured-news-grid .na-card .na-card-title {
        margin: 0 20px 16px 20px;
    }

    .na-featured-news.na-featured-news-grid .na-card .na-card-actions {
        margin: auto 20px 20px 20px;
    }
}