/* Main Wrapper styling */
.pig-wrapper-40895045 {
    position: relative;
    background-color: #0a0a0a;
    height: 80vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .pig-wrapper-40895045 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Column styling */
.pig-col-40895045 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    will-change: transform;
    /* Add extra padding top and bottom so the columns have room to scroll 
       without showing empty space when displaced */
    padding-top: 30vh;
    padding-bottom: 30vh;
    margin-top: -30vh; /* Offset the padding to center align visually initially */
}

/* Image wrapper styling */
.pig-img-wrap-40895045 {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    /* Keep aspect ratio natural based on image or enforce a min-height */
    background-color: #1a1a1a;
}

.pig-img-wrap-40895045 img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Subtle gradient overlay at the bottom */
.pig-img-wrap-40895045::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
