.luxe-listings-section-46a8816a {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 100px 60px;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

/* Video Background styles */
.luxe-listings-video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.luxe-listings-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Mobile video display control */
@media (max-width: 767px) {
    .luxe-listings-video-bg-container.luxe-hide-mobile {
        display: none !important;
    }
}

.luxe-listings-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 13, 20, 0.65);
    z-index: 1;
}

.luxe-listings-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Listings Grid Wrapper */
.luxe-listings-media-wrapper {
    display: flex;
    width: 100%;
}

/* Video Card Block */
.luxe-listings-video-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 520px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: transform 0.3s;
}

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

.luxe-listings-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 13, 20, 0.1) 40%, rgba(10, 13, 20, 0.85) 100%);
    z-index: 1;
}

/* Play Button / Action Button */
.luxe-listings-play-btn {
    position: relative;
    z-index: 2;
    align-self: flex-end;
    width: 54px;
    height: 54px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    text-decoration: none;
}

.luxe-listings-play-btn svg {
    fill: #AB8A62;
    transition: fill 0.3s;
}

.luxe-listings-play-btn:hover {
    transform: scale(1.1);
    background-color: #AB8A62;
}

.luxe-listings-play-btn:hover svg {
    fill: #ffffff;
}

/* Card details */
.luxe-listings-card-info {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.luxe-listings-card-title {
    font-family: 'Gilda Display', serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 6px 0;
    color: #AB8A62;
    letter-spacing: 0.02em;
}

.luxe-listings-card-specs {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 10px 0;
    font-weight: 300;
}

.luxe-listings-card-price {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* Right Content */
.luxe-listings-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
}

.luxe-listings-title {
    font-family: 'Gilda Display', serif;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.01em;
}

.luxe-listings-cta {
    display: inline-block;
    padding: 14px 36px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.luxe-listings-cta:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #0A0D14;
    transform: translateY(-2px);
}

/* Responsiveness */
@media (max-width: 991px) {
    .luxe-listings-section-46a8816a {
        padding: 60px 30px;
    }
    .luxe-listings-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .luxe-listings-media-wrapper {
        justify-content: center;
    }
    .luxe-listings-video-card {
        max-width: 100%;
        height: 480px;
    }
    .luxe-listings-content {
        align-items: center;
        text-align: center;
    }
}
