.st-wrapper-f27d5504 {
    background-color: #E26D57;
    padding: 100px 20px;
    font-family: var(--e-global-typography-primary-font-family), sans-serif;
}

.st-container-f27d5504 {
    max-width: 1200px;
    margin: 0 auto;
}

.st-header-f27d5504 {
    text-align: center;
    margin-bottom: 60px;
    color: #FFFFFF;
}

.st-header-f27d5504 h2 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 15px;
    color: #FFFFFF;
}

.st-header-f27d5504 p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: #F7F7F7;
}

.st-layout-f27d5504 {
    display: flex;
    gap: 40px; /* Base gap, override by inline style if set */
    align-items: flex-start;
    --column-gap: 40px; /* Fallback for calc */
}

/* Update dynamically via CSS vars from controls if needed, 
   but inline styles from controls will handle flex basis */
.st-left-f27d5504 {
    flex: 0 0 70%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-right: 1px solid rgba(255,255,255,0.2);
    padding-right: 40px;
    height: 100%; /* Important for vertical align to work */
}

.st-right-f27d5504 {
    flex: 0 0 calc(30% - 40px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%; /* Important for vertical align to work */
}

.st-featured-card-f27d5504 {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.st-featured-card-f27d5504:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.st-quote-icon-f27d5504 {
    font-size: 80px;
    color: #FFC83D;
    line-height: 1;
    font-family: serif;
    margin-bottom: -20px;
}

.st-card-text-f27d5504 {
    font-size: 22px;
    line-height: 1.6;
    color: #2E2E2E;
    flex-grow: 1;
    margin-bottom: 30px;
    z-index: 1;
}

.st-card-author-f27d5504 {
    display: flex;
    flex-direction: column;
}

.st-card-author-f27d5504 strong {
    font-size: 20px;
    color: #222222;
}

.st-card-author-f27d5504 span {
    font-size: 15px;
    color: #666666;
}

.st-supporting-card-f27d5504 {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.st-supporting-card-f27d5504:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.st-supp-text-f27d5504 {
    font-size: 15px;
    line-height: 1.5;
    color: #2E2E2E;
    margin-bottom: 10px;
    font-style: italic;
}

.st-supp-author-f27d5504 {
    font-size: 14px;
    color: #222222;
}

@media (max-width: 1024px) {
    .st-left-f27d5504 {
        padding-right: 30px;
    }
    .st-featured-card-f27d5504 {
        padding: 30px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .st-wrapper-f27d5504 {
        padding: 60px 15px;
    }
    .st-layout-f27d5504 {
        flex-direction: column;
    }
    .st-left-f27d5504, .st-right-f27d5504 {
        flex: 1 1 auto !important; /* Override inline styles */
        width: 100%;
        padding-right: 0;
        border-right: none;
        height: auto;
    }
    .st-left-f27d5504 {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 40px;
        margin-bottom: 10px;
    }
    .st-header-f27d5504 h2 {
        font-size: 32px;
    }
}