.images, .images>p{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    gap: 1em;
}

.images .photo-container{
    display: flex;
    flex-direction: column;
    max-width: 15em;
    height: 15em;
    border: 1px solid var(--c-grey-1);
}

.images .photo-container .imagebox{
    display: block;
    max-width: 100%;
    max-height: 100%;
    overflow-y: hidden;
    flex-grow: 1;

}

.images .photo-container img{
    object-fit: cover;
}

.credits{
    font-size: 75%;
    color: var(--c-ocean);
    line-height: normal;
}

.images .photo-description{
    border-top: 1px solid var(--c-grey-1);
    font-weight: normal;
    color: black;
    font-size: 75%;
    line-height: normal;
    padding: 0.25em;
}


.youtube{
    width: 24em;
}