.gallery .image.fit img {
    aspect-ratio: 4/3;
    object-fit: cover;
}
.gallery .image::after {
    content: attr(data-title);
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 25, 19, 0.7);
    border-radius: inherit;
    cursor: pointer;
    top: 0;
    left: 0;
    display: block;
    align-content: center;
    text-align: center;
    padding: 24px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.gallery .image:hover::after {
    opacity: 1;
}
.gallery .title,
.gallery .caption {
    display: none;
}

#lightbox {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(44, 44, 44, 0.5);
    z-index: 10;
}

#lightbox .content {
    background-color: white;
    max-width: 768px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem 1rem;
    position: relative;
}
#lightbox .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1rem;
    font-weight: bold;
    font-size: 2rem;
    line-height: 2rem;
}
#lightbox img {
    max-width: 100%;
}
#lightbox .close {
    cursor: pointer;
}
#lightbox .title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.5rem 0 0.25rem;
}
#lightbox .lightbox-nav {
    text-align: center;
    cursor: pointer;
}
#lightbox .lightbox-nav span{
    margin: 0 .5rem;
}
.text-left {
    text-align: left;
}
.disclaimer {
    width: 100%;
    background: #f7f7f7;
    padding: .5rem 2rem;
    font-size: .75rem;
    display: flex;
    justify-content: center;
}
.disclaimer p {
    margin: 0;
    max-width: 1000px;
}
@media(max-width: 1192px) {
    .disclaimer {
        padding-right: 65px;
    }
}