.gpm-gallery-videos-page-container {
    width: 100%;
    margin-top: 20px;
}

.gpm-gallery-videos-page-container-main {
    width: 90%;
    margin: auto;
}
.gpm-gallery-videos-page-container-main  h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.gpm-gallery-videos-page-container-main .gpm-heading-main {
    color: #c21717;
}
.gpm-gallery-videos-page-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1976d2;
}

.gpm-gallery-videos-page-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 20px;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(1, 0, 0, 0.09);
}

.gpm-gallery-videos-page-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    transition: transform 0.3s;
    box-sizing: border-box;
}

.gpm-gallery-videos-page-card:hover {
    transform: translateY(-5px);
}

.gpm-gallery-videos-page-frame iframe {
    width: 100%;
    height: 200px;
    display: block;
}

.gpm-gallery-videos-page-title {
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    background-color: #e7e5e5;
    color: black;
    border-top: 1px solid #e0e0e0;
}

/* ✅ Fixed media query typo */
@media (max-width: 992px) {
    .gpm-gallery-videos-page-card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .gpm-gallery-videos-page-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .gpm-gallery-videos-page-frame iframe {
        height: 180px;
    }
}
