.olmia-showcase {
    display:flex;
    flex-direction:column;
    gap:75px;
}
.olmia-row {
    display:flex;
    align-items:center;
    position:relative;
}
.olmia-row.standard { justify-content:flex-start; }
.olmia-row.reversed { justify-content:flex-end; }

.image-wrapper {
    width:65%;
    overflow:hidden;
    /*box-shadow:0 20px 40px rgba(0,0,0,0.08);*/
}
.image-wrapper img {
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:10px;
}

.content-card {
    position:absolute;
    width:44%;
    background:#fff;
    padding:50px;
    border: 2px solid #EBF0FA;
    border-radius: 10px;
}
.standard .content-card { right:0; }
.reversed .content-card { left:0; }

.btn-more {
    border:2px solid #ddd;
    padding:12px 24px;
    display:inline-block;
    text-decoration:none;
}
.content-card p {
    font-size: 20px;
    margin-bottom: 24px;
    color: #053A62;
}
.content-card h2 {
    color: #EF7300;
    font-size: 1.6rem;
    margin-bottom: 16px;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}
.content-card h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 60px;
    background-color: #999;
    display: block;
    z-index: 25;
}
 /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .olmia-showcase { gap: 70px; }
            .image-wrapper { width: 80%; }
            .content-card { width: 55%; padding: 40px; }
        }

        @media (max-width: 768px) {
            .olmia-showcase { gap: 60px; }
            
            .olmia-row, .olmia-row.reversed { 
                flex-direction: column; 
                align-items: center;
            }

            .image-wrapper { 
                width: 100%; 
                border-radius: 8px 8px 0 0;
            }

            .image-wrapper img { 
                height: 320px; 
            }

            .content-card {
                position: relative;
                width: 100%;
                margin-top: -50px; 
                padding: 35px 25px;
                right: auto !important;
                left: auto !important;
                box-shadow: 0 10px 30px rgba(0,0,0,0.05);
                border-radius: 0 0 8px 8px;
            }

            .content-card h2 { font-size: 1.3rem; }
        }