.bvk-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.bvk-card {
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    background: #fff;
    border: 1px solid #e8e5df;
    border-radius: 2px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    font: inherit;
    color: inherit;
}

.bvk-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -24px rgba(0,0,0,.22);
    border-color: #d3b96c;
    background: #fff;
}

.bvk-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #222;
}

.bvk-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.bvk-card:hover .bvk-card-image img {
    transform: scale(1.1);
}

.bvk-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .3s ease;
}

.bvk-card:hover .bvk-card-overlay {
    background: rgba(0,0,0,.2);
}

.bvk-video-label {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #d9bf72;
    color: #171717;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
}

.bvk-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: #171717;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    transition: transform .3s ease, background .3s ease;
}

.bvk-play svg { margin-left: 3px; }
.bvk-card:hover .bvk-play {
    transform: scale(1.1);
    background: #d9bf72;
}

.bvk-card-content {
    padding: 20px;
}

.bvk-subtitle {
    margin: 0 0 6px;
    color: #b9a45e;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.bvk-card-content h3 {
    margin: 0;
    color: #151515;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}

.bvk-no-cover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #292929;
}

/* Modal */
.bvk-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.bvk-modal.is-open { display: flex; }

.bvk-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(3px);
}

.bvk-modal-inner {
    position: relative;
    z-index: 2;
    width: min(1120px, 92vw);
    max-height: 90vh;
    background: #222;
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.bvk-modal-video {
    display: block;
    width: 100%;
    max-height: 78vh;
    background: #000;
}

.bvk-modal-caption {
    padding: 14px 18px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.bvk-close {
    position: absolute;
    right: -14px;
    top: -14px;
    z-index: 4;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #333;
    color: #fff;
    font-size: 30px;
    line-height: 38px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,.3);
}

.bvk-close:hover { background: #111; }

body.bvk-modal-open { overflow: hidden; }

@media (max-width: 900px) {
    .bvk-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .bvk-grid { grid-template-columns: 1fr; }
    .bvk-modal { padding: 14px; }
    .bvk-modal-inner { width: 100%; }
    .bvk-close { right: -4px; top: -48px; }
}
