.abv-container {
    padding: 40px 0;
    width: 100%;
    margin: 0 auto;
}

.abv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #2e2e2e;
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
}

.abv-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    /* Assuming dark theme */
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.abv-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    /* Adjust to overlap border */
    width: 100%;
    height: 2px;
    background-color: #ff184e;
    /* Theme primary color */
}

.abv-see-more {
    font-size: 14px;
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.abv-see-more:hover {
    color: #ff184e;
}

/* Video Card Styles */
.abv-video-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #1a1a1a;
    transition: transform 0.3s ease;
}

.abv-video-card:hover {
    transform: translateY(-5px);
}

.abv-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background-color: #000;
}

.abv-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff184e;
    font-size: 18px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    z-index: 2;
    padding-left: 4px;
    /* Optical adjustment for play icon */
}

.abv-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff184e;
    color: #fff;
}

.abv-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
}

.abv-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #ffffff !important;
    /* Force white color */
    margin-bottom: 5px;
}

.abv-meta i {
    margin-right: 5px;
    color: #ff184e;
}

.abv-video-title {
    font-size: 18px;
    line-height: 1.3;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    color: #ffffff;
    /* Explicitly set title color */
}

/* Ensure link inside title inherits/uses white */
.abv-video-title a {
    color: #ffffff;
}

.abv-card-link {
    color: #ffffff !important;
    /* Force all text inside card link to be white by default */
}

/* Owl Carousel Custom Nav */
/* Owl Carousel Custom Nav - Separate Arrows */
.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    /* Let clicks pass through the container */
    display: flex !important;
    justify-content: space-between;
}

.owl-prev,
.owl-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
    pointer-events: auto;
    /* Re-enable clicks on buttons */
    transition: background 0.3s;
}

.owl-prev {
    margin-left: -20px;
    /* Pull slightly outside or align to edge */
}

.owl-next {
    margin-right: -20px;
    /* Pull slightly outside or align to edge */
}

.owl-prev:hover,
.owl-next:hover {
    background: #ff184e !important;
}