﻿.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        transition: .4s ease;
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(13 107 104 / 45%);
    opacity: 0;
    transition: .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    color: #fff;
    background: #03575487;
}

.gallery-caption-title {
    font-size: 16px;
    font-weight: 600;
}

.gallery-caption-desc {
    font-size: 13px;
    opacity: 0.85;
}

/*** MODAL IMAGE STYLE ***/
#imageModal img {
    max-height: 80vh;
    width: auto;
}
