.av-split-container-176 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.av-text-col-176 {
    flex: 1;
    min-width: 300px;
}

.av-text-col-176 h2 {
    margin-bottom: 20px;
    margin-top: 0;
}

.av-body-text-176 p {
    margin-bottom: 15px;
}

.av-media-col-176 {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.av-image-wrapper-176 {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9 / 16; /* For shorts/vertical feel */
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

.av-image-wrapper-176 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.av-image-wrapper-176:hover img {
    transform: scale(1.05);
}

.av-play-overlay-176 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.av-image-wrapper-176:hover .av-play-overlay-176 {
    background: rgba(0, 0, 0, 0.5);
}

.av-play-icon-176 {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.av-image-wrapper-176:hover .av-play-icon-176 {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.av-play-icon-176 svg {
    width: 32px;
    height: 32px;
}

/* Lightbox Modal CSS */
.av-modal-overlay-176 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.av-modal-overlay-176.av-active {
    opacity: 1;
    visibility: visible;
}

.av-modal-content-176 {
    position: relative;
    width: 90%;
    max-width: 400px;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.av-modal-overlay-176.av-active .av-modal-content-176 {
    transform: scale(1);
}

.av-modal-content-176 iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.av-modal-close-176 {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    z-index: 100000; /* Ensure it is above the iframe */
    backdrop-filter: blur(4px);
    transition: background 0.2s ease;
}
.av-modal-close-176:hover {
    background: rgba(255, 255, 255, 0.3);
}