/* Showcase Content Section Styles */

/* Showcase Content Container */
.showcase-content {
    margin-top: 3rem;
}

/* Showcase Row Layout - Connected Design */
.showcase-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 3rem;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.showcase-row.reverse {
    flex-direction: row-reverse;
}

/* Showcase Image Styling - Connected to Text */
.showcase-image {
    flex: 0 0 40%;
    height: auto;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    position: relative;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    transition: none;
    display: block;
}

/* Showcase Text Content - Connected Design */
.showcase-text {
    flex: 1;
    padding: 3rem;
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
}

.showcase-text h3 {
    color: #1a1f36;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.showcase-text p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.showcase-text p:last-child {
    margin-bottom: 0;
}

/* Hide old showcase styles */
.showcase-grid,
.showcase-category,
.photo-grid {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .showcase-row,
    .showcase-row.reverse {
        flex-direction: column;
        gap: 0;
    }
    
    .showcase-image {
        flex: none;
        width: 100%;
        height: 250px;
    }
    
    .showcase-text {
        padding: 2rem;
    }
    
    .showcase-text h3 {
        font-size: 1.5rem;
    }
    
    .showcase-text p {
        font-size: 1rem;
    }
    
    .showcase-image img {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .showcase-row {
        margin-bottom: 2rem;
    }
    
    .showcase-image {
        height: 200px;
    }
    
    .showcase-image img {
        min-height: 200px;
    }
    
    .showcase-text {
        padding: 1.5rem;
    }
    
    .showcase-text h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}
