﻿/*=============================
      GALLERY
==============================*/

.mst-gallery-page {
    padding: 45px 0 80px;
    background: #f7f8fa;
}

.mst-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 25px;
}

.mst-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .mst-gallery-item img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: .40s;
        display: block;
    }

.mst-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(245,130,32,.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .35s;
}

    .mst-gallery-overlay i {
        color: #fff;
        font-size: 34px;
    }

.mst-gallery-item:hover img {
    transform: scale(1.08);
}

.mst-gallery-item:hover .mst-gallery-overlay {
    opacity: 1;
}
