/* BASE SECTION */
.wwo-section_b1eb5c7b {
    background-color: #1E1A17;
    padding: 80px 20px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden; /* Strict overflow prevention */
    font-family: 'Poppins', sans-serif;
}

.wwo-header_b1eb5c7b {
    text-align: center;
    margin-bottom: 60px;
}

.wwo-title_b1eb5c7b {
    color: #C8A86B;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* FLEX GRID: 2x2 Desktop */
.wwo-grid_b1eb5c7b {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch; /* Forces equal height columns */
}

/* CARDS */
.wwo-card_b1eb5c7b {
    flex: 1 1 calc(50% - 15px);
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    cursor: pointer;
    background-color: #2a2521;
}

.wwo-card_b1eb5c7b.in-view {
    opacity: 1;
    transform: translateY(0);
}

.wwo-card-img_b1eb5c7b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.85); /* Slightly darker default state */
}

.wwo-overlay_b1eb5c7b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Start gradient higher up to cover text area completely */
    background: linear-gradient(to top, rgba(30, 26, 23, 0.98) 0%, rgba(30, 26, 23, 0.8) 35%, rgba(30, 26, 23, 0) 100%);
    transition: background 0.6s ease;
    z-index: 1;
}

.wwo-content_b1eb5c7b {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
}

.wwo-card-title_b1eb5c7b {
    color: #C8A86B;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    transition: transform 0.4s ease;
}

.wwo-desc-wrap_b1eb5c7b {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.5s ease;
}

.wwo-desc_b1eb5c7b {
    color: #F5F1E8;
    font-size: 16px;
    line-height: 1.6;
    margin: 20px 0;
}

.wwo-btn_b1eb5c7b {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #C8A86B;
    background: transparent;
    color: #C8A86B;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start; /* Prevent button stretching */
}

.wwo-btn_b1eb5c7b:hover {
    background-color: #C8A86B;
    color: #1E1A17;
}

/* INTERACTION (Hover/Tap) */
.wwo-card_b1eb5c7b:hover .wwo-card-img_b1eb5c7b,
.wwo-card_b1eb5c7b.is-active .wwo-card-img_b1eb5c7b {
    transform: scale(1.05);
    filter: brightness(0.5);
}

.wwo-card_b1eb5c7b:hover .wwo-overlay_b1eb5c7b,
.wwo-card_b1eb5c7b.is-active .wwo-overlay_b1eb5c7b {
    /* Push dark gradient higher on hover */
    background: linear-gradient(to top, rgba(30, 26, 23, 0.98) 0%, rgba(30, 26, 23, 0.85) 60%, rgba(30, 26, 23, 0.3) 100%);
}

.wwo-card_b1eb5c7b:hover .wwo-desc-wrap_b1eb5c7b,
.wwo-card_b1eb5c7b.is-active .wwo-desc-wrap_b1eb5c7b {
    max-height: 300px;
    opacity: 1;
}

/* RESPONSIVE MOBILE STYLES */
@media (max-width: 992px) {
    .wwo-card-title_b1eb5c7b {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .wwo-section_b1eb5c7b {
        padding: 60px 15px;
    }
    .wwo-grid_b1eb5c7b {
        flex-direction: column;
        gap: 20px;
    }
    .wwo-card_b1eb5c7b {
        flex: 1 1 100%;
        width: 100%;
        min-height: 400px;
    }
    .wwo-content_b1eb5c7b {
        padding: 30px 20px;
    }
    .wwo-card-title_b1eb5c7b {
        font-size: 28px;
        max-width: 90%; 
        word-wrap: break-word;
    }
}