/* news */

.news-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 68px;
    margin: 0 160px;
}

.news-header {
    text-align: left;
    margin-bottom: 3rem;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-header h1 {
    color: var(--color-primary-blue);
}

.news-header p {
    max-width: 1200px;
    width: 100%;
    font-size: var(--blurb-size);
    font-weight: 300;
    font-family: var(--font-henry);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.news-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card img {
    max-width: 506px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.date {
    color: var(--color-primary-blue);
    font-size: 16px;
    font-family: var(--font-henry);
    font-weight: 300;
}

.subtitle-section {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: calc(1.4em * 2);
}

.read-more {
    margin-top: 29px;
}

.read-more:hover {
    text-decoration: underline;
}