﻿.a02 .news-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.a02 .news-list .list-item {
    list-style-type: none;
    flex-basis: 100%;
    padding: 24px 0;
}
.a02 .news-list .secondary-link {
    display: flex;
    justify-content: center;
    align-items:center;
}
.a02 .news-list .secondary-link:focus:not(:focus-visible) {
    outline:none;
}
.a02 .image-container {
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    width: 74px;
    height: 74px;
    border: 1px solid #D8D8D8;
}
.a02 .article-text {
    margin-bottom: 6px;
}
.a02 .text-container {
    padding-left: 24px;
    flex: 1;
    text-align: left;
}
@media (min-width: 768px) {
    .a02 .image-container {
        width: 90px;
        height: 90px;
    }
}
@media (min-width: 992px) {
    .a02 .news-list .list-item {
        flex-basis:50%;
    }
    .a02 .news-list .list-item:nth-child(2n) {
        padding-left: 12px;
    }
    .a02 .news-list .list-item:nth-child(2n+1) {
        padding-right: 12px;
    }
    .a02 .image-container {
        width: 115px;
        height: 115px;
    }
}