.recent-news {
    --padding: 48px;

    padding: var(--padding);

    color: var(--azamara-blue);
}

.recent-news>.text-eyebrow {
    text-align: center;
    text-transform: capitalize;
    font-weight: 420;
    font-size: 24px;
    line-height: 32px;

    color: var(--night-sky);
}

.recent-news>h2 {
    text-align: center;
    font-size: 48px;
    line-height: 60px;
    font-weight: 420;

    margin-bottom: var(--padding);
}

.recent-news>.row {
    --bs-gutter-x: var(--padding);
    --bs-gutter-y: var(--padding);
}

.recent-news .card {
    height: 100%;
    background-color: #fff;
}

.recent-news .card img {
    aspect-ratio: 16/9;
}

.recent-news .card .card-text .read-more {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

.recent-news .card .card-text .read-more-full-width {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.recent-news .card .read-article-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--light-dusk);

    font-size: 16px;
    font-weight: 420;
    line-height: 24px;
    letter-spacing: .05em;

    height: 71px;
    max-height: 71px;
}

.recent-news .card .read-article-link:hover {
    background-color: var(--light-blue);
    color: var(--azamara-blue);
    fill: var(--azamara-blue);
}

.recent-news .first-article-container {
    position: relative;
    min-height: 320px;

    display: flex;
    align-items: center;
    background-color: var(--light-dusk);
}

.recent-news .first-article-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.recent-news .first-article-container .card {
    max-width: 502px;
    margin: 48px;
}

.recent-news .hidden-item {
    display: none;
}

.recent-news .hidden-item.active {
    display: block;
}

.recent-news .load-more-button {
    font-size: 24px;
    height: 72px;
    padding: 1em 1.5em;

}