.related-articles-section {
    padding: 50px 0;
}

.section-title-related { /* Другой класс, чтобы не конфликтовать с другими заголовками */
    font-size: 2em;
    font-weight: bold;
    color: #333; /* Темно-серый, почти черный */
    margin-top: 0;
    margin-bottom: 30px;
    text-align: left; /* Заголовок слева */
    text-transform: uppercase;
}

.related-articles-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles-list li {
    margin-bottom: 10px; /* Отступ между элементами списка */
}
.related-articles-list li:last-child {
    margin-bottom: 0;
}

.related-article-link {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Распределяем элементы по краям */
    padding: 18px 20px;
    background-color: #fff; /* Белый фон для каждого элемента */
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-color); /* Ярко-зеленый цвет текста ссылки */
    font-weight: 500;
    font-size: 0.95em;
    text-transform: uppercase;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.related-article-link:hover {
    background-color: #f9f9f9; /* Легкое изменение фона при наведении */
    box-shadow: 0 4px 8px rgba(0,0,0,0.07);
}

.related-article-link .icon-left {
    margin-right: 15px; /* Отступ от левой иконки до текста */
    font-size: 1em; /* Размер иконки */
    color: var(--primary-color); /* Цвет иконки */
    opacity: 0.8;
}

.related-article-link .link-text {
    flex-grow: 1; /* Текст занимает все доступное пространство */
    text-align: left; /* Текст выровнен по левому краю */
}

.related-article-link .icon-right {
    margin-left: 15px; /* Отступ от текста до правой иконки */
    font-size: 0.9em; /* Стрелка чуть меньше */
    color: var(--primary-color); /* Цвет стрелки */
    opacity: 0.9;
}


/* Адаптивность */
@media (max-width: 768px) {
    .section-title-related {
        font-size: 1.8em;
        text-align: center; /* На мобильных можно заголовок по центру */
    }
    .related-article-link {
        font-size: 0.9em;
        padding: 15px;
    }
    .related-article-link .icon-left {
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .section-title-related {
        font-size: 1.6em;
    }
    .related-article-link {
        font-size: 0.85em;
    }
}