/* Синие иконки в navbar */

.social-list__link {
    background-color: #0067e0;
}

@media (max-width: 1023px) {
    .header__wrapper .header__social-list {
        display: flex;
        padding-left: 10px;
        margin-left: 12px;
        border-left: 1px solid rgba(217, 217, 222, .2);
    }
}

/* Фото к новости */

.modal-photos__photo > picture > img {
    object-fit: contain;
}

/* Шапка новости */

.article-header {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 32px;
    align-items: start;
    margin-bottom: 32px;
}

.article-img {
    width: 100%;
    max-width: 100%;
}

.article-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
}

.article-inf {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.article-inf-date {
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .article-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .article-img {
        max-width: 100%;
    }
}

/* Карточки новостей */

section.industry-cards .industry-news-list__text .industry-news-list__title {
    font-size: 18px;
}

section.industry-cards .news-date--small {
    font-size: 16px;
}

a.industry-news-list__link {
    grid-template-columns: 170px auto;
}

div.industry-news-list__photo {
    width: 170px;
    height: 130px;
}