/* Oly Poker Gallery */

.opg-gallery {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
}

/* Grid: 3 columns on desktop */
.opg-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.opg-gallery__item {
    overflow: hidden;
}

.opg-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 11;
}

/* CTA Button */
.opg-gallery__cta {
    text-align: center;
    margin-top: 32px;
}

.opg-gallery__button {
    display: inline-block;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    padding: 12px 48px 12px 24px;
    border-radius: 6px;
    box-sizing: border-box;
}

.opg-gallery__button-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    margin-left: 8px;
}

.opg-gallery__button:hover {
    color: #fff;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid #FFFFFF;
}

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
    .opg-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .opg-gallery__cta {
        margin-top: 24px;
    }
}

/* Mobile: 0 - 767px */
@media (max-width: 767px) {
    .opg-gallery__grid {
        grid-template-columns: 1fr;
    }

    .opg-gallery__cta {
        margin-top: 20px;
    }

    .opg-gallery__button {
        width: 100%;
    }
}
