/* WRE VideoPost – Frontend styles */

.wre-videopost-gallery {
    margin: 2em 0;
}

.wre-videopost-gallery-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 0.8em;
    padding-bottom: 0.4em;
    border-bottom: 2px solid #ddd;
}

.wre-videopost-grid {
    display: grid;
    gap: 16px;
}

/* 1 film — pełna szer. */
.wre-videopost-cols-1 .wre-videopost-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
}

/* 2 filmy — 2 kolumny */
.wre-videopost-cols-2 .wre-videopost-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* 3+ filmy — 3 kolumny */
.wre-videopost-cols-3 .wre-videopost-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Responsywny 16:9 */
.wre-videopost-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #000;
}

.wre-videopost-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Tablet */
@media (max-width: 900px) {
    .wre-videopost-cols-3 .wre-videopost-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Telefon */
@media (max-width: 600px) {
    .wre-videopost-cols-2 .wre-videopost-grid,
    .wre-videopost-cols-3 .wre-videopost-grid {
        grid-template-columns: 1fr;
    }
}
