.news-images,
.news-images > p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

.news-images .news-photo-container {
    max-width: 24em;
    height: 24em;
    overflow: hidden;
    border-radius: 0.5em;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.news-images .news-photo-container .imagebox {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0.5em;
}

.news-images .news-photo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.news-images .news-photo-container:hover img {
    transform: scale(1.03);
}

.news-images .news-photo-description,
.news-credits {
    font-size: 75%;
    color: var(--c-ocean);
    line-height: normal;
    text-align: center;
    padding: 0.5em 0.75em;
    width: 100%;
}