.anybnb-videos-grid-566a5646 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
}

@media (min-width: 768px) {
    .anybnb-videos-grid-566a5646 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.anybnb-video-card-566a5646 {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.anybnb-video-title-566a5646 {
    background-color: #1f3b57;
    color: #ffffff;
    margin: 0;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.anybnb-video-embed-566a5646 {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    background-color: #000; /* fall back if loading */
}

.anybnb-video-embed-566a5646 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.anybnb-videos-notice {
    padding: 20px;
    background: #f8f8f8;
    border-left: 4px solid #d30c5c;
    color: #333;
}