.photo-category {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 2rem;
}

.photo-category h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2em;
    text-transform: capitalize;
}

.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.photo-item {
    flex: 0 0 calc(33.333% - 14px);
    aspect-ratio: 1 / 1;
    position: relative;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;

    position: absolute;
    top: 0;
    left: 0;
}

.photo-item:hover img {
    z-index: 100;
    width: 40vw;
    height: auto;
    min-height: 100%;
    object-fit: contain;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
