/* Container - Forces 2 columns */
.box-post-split-container {
    display: flex;
    width: 100%;
    align-items: flex-start;
    overflow: hidden;
}

/* 50% Columns */
.box-split-col {
    flex: 0 0 50%;
    width: 50%;
    min-height: 500px;
}
/* Position Flipping */
.box-layout-side-left .box-post-split-container { flex-direction: row; }
.box-layout-side-right .box-post-split-container { flex-direction: row-reverse; }
.box-layout-side-right .box-split-content {padding:0;}
.box-layout-side-right .box-post-split-container .box-split-media img {padding:0 0 0 10px;}

/* Image Side */
.box-split-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Text Side - Precise Typography */
.box-split-content {
    padding: 0 40px;
}

.box-post-title {
    font-family: var(--e-global-typography-primary-font-family), "AeonikPro", Sans-serif;
    font-size: 50px; /* Exact Requirement */
    margin-top: 68px; /*  Exact Requirement */
    line-height: 1.1;
    font-weight: 300;
    text-transform: uppercase;
}

.box-post-excerpt {
    font-family: var(--e-global-typography-primary-font-family), "AeonikPro", Sans-serif;
    font-size: 22px; /* Exact Requirement */
    line-height: 1.6;
    margin: 30px 0;
    font-weight: 200;
    color: #000000;
    max-width:65%;
}

.box-post-link, .box-post-link a {
    font-family: var(--e-global-typography-primary-font-family), "AeonikPro", Sans-serif;
    font-size: 22px; /* Exact Requirement */
    color: #000;
    font-weight: 200;
    text-decoration: underline!important;
    text-underline-offset: 4px;
}
/* Tablet/Mobile fallback to stack */
@media (max-width: 1024px) {
    .box-split-feature-container { flex-direction: column !important; }
    .box-split-col { flex: 0 0 100%; max-width: 100%; width: 100%; }
    .box-split-text-content { padding: 40px 20px; }
    .box-post-title { font-size: 38px; margin-top: 30px; }
}