.news-home-container {
    padding: 60px 0 90px;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.main-heading {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: var(--main-darck);
}

.more-link {
    color: var(--text-darck-opacity);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 16px;
    background-color: var(--light-gray-bg);
    transition: all ease var(--transition-speed);
    white-space: nowrap;
}

.more-link:hover {
    color: var(--main-darck-hover);
    background-color: var(--section-color);
    transition: all ease var(--transition-speed);
}

.link-icon {
    height: 1rem;
    width: 1rem;
}

.news-home-slider-item {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-bottom: 10px;
    transition: all ease var(--transition-speed);
}

.news-home-slider-item:hover {
    transition: all ease var(--transition-speed);
}

.rigth-block, .btns {
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-swiper-button-next, .news-swiper-button-prev {
    width: 35px;
    height: 35px;
    background-color: var(--text-white);
    border-radius: 50%;
    box-shadow: 0px 5.44px 15.56px 0px var(--drop-shadow);
    color: var(--main-darck);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease var(--transition-speed);
    cursor: pointer;
}

.news-swiper-button-next:hover, .news-swiper-button-prev:hover {
    transform: scale(1.05);
    background-color: var(--light-gray);
    transition: all ease var(--transition-speed);
}

.news-home-slider-item-picture {
    max-width: 360px;
    max-height: 200px;
    min-height: 200px;
    border-radius: 6px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-date {
    color: var(--main-darck);
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
}

.article-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    max-height: 50px;
    min-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--main-darck);
}

.article-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    max-height: 100px;
    min-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--main-darck);
    padding-right: 10px;
}

.article-description b, .article-description strong {
    font-weight: 400 !important;
}

.read-more {
    color: var(--main-red);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    transition: all ease var(--transition-speed);
}

.read-more:hover {
    color: var(--main-red-hover);
    transition: all ease var(--transition-speed);
}

@media (max-width: 1025px) {
    .news-home-container {
        padding: 40px 0 60px;
    }

    .header-row {
        margin-bottom: 45px;
    }

    .main-heading {
        font-size: 28px;
    }

    .news-home-slider-item {
        gap: 20px;
    }

    .news-home-slider-item-picture {
        max-height: 180px;
        min-height: 180px;
        max-width: 100%;
    }

    .article-title {
        font-size: 20px;
        max-height: 58px;
        min-height: 58px;
    }

    .read-more {
        font-size: 14px;
    }

}

@media (max-width: 767px) {
    .news-home-container {
        padding: 20px 0;
    }

    .header-row {
        margin-bottom: 32px;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .main-heading {
        font-size: 24px;
    }

    .news-home-slider-item {
        gap: 20px;
    }

    .article-title {
        font-size: 18px;
        max-height: 100%;
        min-height: 100%;
    }

    .article-description {
        max-height: 100%;
        min-height: 100%;
    }

    .read-more {
        font-size: 14px;
    }
}