.news-page {
    padding: 115px 0 120px;
}

.news-empty-state{
    min-height:420px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.news-empty-icon{
    font-size:72px;
    color:var(--gm-theme);
    margin-bottom:20px;
}

.news-empty-state h2{
    margin:0 0 12px;
    font-size:36px;
}

.news-empty-state p{
    margin:0;
    color:#777;
}

.news-featured-heading {
    margin: 0 0 35px;
    font-size: var(--f30);
    font-weight: 600;
}

.news-featured-card {
    display: grid;
    grid-template-columns: 1fr;
    text-decoration: none;
    color: inherit;
    background: #f5f5f5;
    
}

.news-featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-featured-content {
    padding: 4vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-featured-date {
    color: var(--gm-theme);
    font-weight: 600;
}

.news-featured-title {
    margin: 20px 0 35px;
    font-size:var(--f40);
    font-weight: 700;

}

.news-featured-desc {
    color: #666;
    font-size: var(--f16);
    line-height: 1.8;
}


@media(min-width:1200px) {
    .news-featured-card {
        grid-template-columns: 1fr 1fr;
    }

}

.news-list-section {
    padding-top:115px;
}

.news-list-item {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid #ddd;
    text-decoration: none;
    color: inherit;
}

.news-list-item:last-child {
    border-bottom: 1px solid #ddd;
}

.news-list-item:hover {
    background: #eef5fb;
    padding-left: 16px;
    padding-right: 16px;
}

.news-list-item {
    transition: background .25s ease;
}

.news-list-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.news-list-content {
    min-width: 0;
}

.news-list-day {
    font-size: var(--f30);
    font-family: 'DIN';
    font-weight: 700;
}

.news-list-year {
    margin-top: 6px;
    color: #999;
}

.news-list-title {
    margin: 0;
    font-size: var(--f24);
    font-weight: 500;
}

.news-list-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.6;
    object-fit: cover;
}

.news-list-image {
    grid-column: 1 / -1;
}

@media (min-width: 992px) {
    .news-list-item {
        grid-template-columns: 200px minmax(0, 1fr) 350px;
        gap: 24px;
        padding: 35px 0 35px 40px;
    }

    .news-list-item:hover {
        padding-left: 40px;
        padding-right: 40px;
    }

    .news-list-image {
        grid-column: auto;
    }

    .news-list-image img {
        max-width: 350px;
    }
}