/* Layout Alignment Split Matrix */
.home-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 160px);
    padding: 20px;
    box-sizing: border-box;
}

.content-split-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
}

/* Text Context Layout Bounds */
.content-text-panel {
    flex: 1;
}

/* Image Core Showcase Bounds (Fixes the issue shown in image_fcb46f.jpg) */
.image-showcase-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 500px; /* Constrains the vertical expansion */
}

.geometric-shape-mask-wrapper {
    position: relative;
    width: 380px;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.geometric-image-content-inner-core {
    width: 100%;
    height: 100%;
}

.geometric-image-content-inner-core img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Forces image to crop into the container gracefully */
    object-position: center top;
    display: block;
}

/* Responsive adjustments for mobile viewports */
@media (max-width: 768px) {
    .content-split-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;
    }
    
    .geometric-shape-mask-wrapper {
        width: 280px;
        height: 330px;
    }
}