/* Basic styling for video carousel */
.vc-7734323f-container {
    padding: 20px 0;
}
.vc-7734323f-title {
    text-align: center;
    margin-bottom: 10px;
}
.vc-7734323f-desc {
    text-align: center;
    margin-bottom: 30px;
}
/* Move arrows outside the track wrapper */
.vc-7734323f-swiper {
    position: relative;
    padding: 0 50px 40px 50px; /* Add side padding to make room for arrows */
}
.vc-7734323f-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}
.vc-7734323f-card:hover {
    transform: translateY(-5px);
}
.vc-7734323f-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.vc-7734323f-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vc-7734323f-placeholder {
    color: #999;
}
.vc-7734323f-post-title {
    padding: 15px;
    margin: 0;
    font-size: 1.1em;
    color: #333;
}
.vc-7734323f-extra-text {
    padding: 0 15px 15px 15px;
    margin: 0;
    font-size: 0.9em;
    color: #666;
}

/* Fallback colors and custom arrow positioning */
.vc-7734323f-swiper .swiper-button-next,
.vc-7734323f-swiper .swiper-button-prev {
    color: #c4060a;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -20px; /* offset half pagination height approx */
}
.vc-7734323f-swiper .swiper-button-prev {
    left: -10px; /* Move further left */
}
.vc-7734323f-swiper .swiper-button-next {
    right: -10px; /* Move further right */
}
.vc-7734323f-swiper .swiper-pagination-bullet-active {
    background: #c4060a;
}