/* Modern news list. Isolated from legacy .news .left_column styles. */
.af-news-page {
    --af-news-blue: #14326e;
    --af-news-blue-2: #47639a;
    --af-news-light-blue: #96afd7;
    --af-news-graphite: #262523;
    --af-news-gray: #515151;
    --af-news-light-gray: #909091;
    --af-news-white: #fefefe;
    padding: 18px 0 48px;
}

.af-news-page__layout {
    align-items: flex-start;
    justify-content: space-between;
}

.af-news-list {
    box-sizing: border-box;
    width: calc(75% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    min-width: 0;
}

.af-news-list__items {
    overflow: hidden;
    border: 1px solid rgba(144, 144, 145, .24);
    border-radius: 12px;
    background: var(--af-news-white);
    box-shadow: 0 10px 30px rgba(38, 37, 35, .035);
}

.af-news-card {
    position: relative;
    border-bottom: 1px solid rgba(144, 144, 145, .22);
    background: var(--af-news-white);
    transition: background .18s ease;
}

.af-news-card:last-child {
    border-bottom: 0;
}

.af-news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background .18s ease;
}

.af-news-card:hover {
    background: rgba(150, 175, 215, .055);
}

.af-news-card:hover::before {
    background: var(--af-news-blue);
}

.af-news-card__content {
    padding: 28px 30px 26px;
}

.af-news-card__title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.af-news-card__title a {
    color: var(--af-news-graphite);
    text-decoration: none;
    transition: color .18s ease;
}

.af-news-card:hover .af-news-card__title a,
.af-news-card__title a:hover,
.af-news-card__title a:focus {
    color: var(--af-news-blue);
    text-decoration: none;
}

.af-news-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--af-news-light-gray);
    font-size: 12px;
    line-height: 1.4;
}

.af-news-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.af-news-card__meta-item i {
    color: var(--af-news-blue-2);
    font-size: 12px;
}

.af-news-card__meta-separator {
    color: rgba(144, 144, 145, .7);
}

.af-news-card__description {
    max-width: 92%;
    color: var(--af-news-gray);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
}

.af-news-card__description p {
    margin: 0;
}

.af-news-card__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.af-news-card__more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--af-news-blue);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color .18s ease, gap .18s ease;
}

.af-news-card__more:hover,
.af-news-card__more:focus {
    gap: 12px;
    color: var(--af-news-blue-2);
    text-decoration: none;
}

.af-news-card__more i {
    font-size: 11px;
}

.af-news-list__pagination {
    margin-top: 18px;
}

@media (max-width: 1199px) {
    .af-news-card__content {
        padding: 24px 24px 22px;
    }

    .af-news-card__title {
        font-size: 20px;
    }

    .af-news-card__description {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .af-news-page__layout {
        display: block;
    }

    .af-news-list {
        width: calc(100% - 10px);
        margin-bottom: 22px;
    }
}

@media (max-width: 767px) {
    .af-news-page {
        padding-top: 10px;
        padding-bottom: 32px;
    }

    .af-news-list__items {
        border-radius: 9px;
    }

    .af-news-card__content {
        padding: 20px 16px 18px;
    }

    .af-news-card__title {
        font-size: 17px;
        line-height: 1.3;
    }

    .af-news-card__meta {
        margin-bottom: 11px;
        font-size: 11px;
    }

    .af-news-card__description {
        font-size: 12px;
        line-height: 1.55;
    }

    .af-news-card__footer {
        justify-content: flex-start;
        margin-top: 14px;
    }
}
