.section.articles {
    padding-bottom: 120px;
}

.com-content-article.item-page_for-spec .section.articles h2 {
    margin-top: 120px;
}

.section.articles h2 {
    margin-bottom: 60px;
}

.section.articles h2 span {
    font-weight: 700;
    color: #6ACAA4;
}

.articles-display {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
}

/* Стили для слайдера */
.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.articles-display .article {
    flex: 0 0 24%;
    margin-right: 1.33%;
    text-align: left;
}

.articles-display .article:last-child {
    margin-right: 0;
}

.articles-display .article .image {
    overflow: hidden;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #6ACAA4;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    z-index: 10;
    transition: background 0.3s;
    width: 40px;
    height: 40px;
}

.slider-arrow:hover {
    background: #5AB992;
}

.slider-arrow:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.slider-arrow-left {
    left: -60px;
}

.slider-arrow-right {
    right: -60px;
}

/* Стили для сетки */
.grid-container {
    display: grid;
}

.grid-container .article {
    text-align: left;
}

.grid-container .article .image {
    overflow: hidden;
}

.grid-container .article .image img {
    width: 100%;
    object-fit: cover;
}

