.vc-wrapper {
    background: #fbf2ea;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.vc-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.vc-tab {
    border: 1px solid #1a1a2e;
    background: transparent;
    color: #1a1a2e;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vc-tab:hover {
    background: #e8ddd0;
}

.vc-tab.active {
    background: #4b5a4a;
    border-color: #4b5a4a;
    color: #fff;
}

.vc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .vc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .vc-grid { grid-template-columns: repeat(1, 1fr); }
}

.vc-card {
    background: #efe7dc;
    border: 1px solid #ddd0bf;
    border-radius: 4px;
    overflow: hidden;
    display: none; /* toggled by JS */
}

.vc-card.vc-visible {
    display: block;
}

.vc-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
}

.vc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vc-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-video-embed {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.vc-video-embed iframe,
.vc-video-embed video {
    width: 100%;
    height: 100%;
    border: none;
}

.vc-content {
    padding: 18px 16px;
}

.vc-category-label {
    font-size: 11px;
    letter-spacing: 1px;
    color: #8a7a63;
    margin-bottom: 8px;
}

.vc-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.35;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.vc-quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.35;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.vc-watch {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #1a1a2e;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vc-watch-icon {
    background: #4b5a4a;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

.vc-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.vc-load-more-btn {
    background: #1a1a2e;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.vc-load-more-btn:hover {
    opacity: 0.85;
}

.vc-load-more-btn:disabled {
    opacity: 0.5;
    cursor: default;
}

.vc-watch {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Modal */
.vc-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vc-modal-overlay.vc-modal-open {
    display: flex;
}

.vc-modal-box {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
}

.vc-modal-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.vc-modal-video-container iframe,
.vc-modal-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vc-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

@media (max-width: 640px) {
    .vc-modal-close {
        top: -36px;
        font-size: 28px;
    }
}