.wp-block-gutenberg-test-simple-hero-split {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: calc(var(--spacing-xl) * 2) 0;
}

.wp-block-gutenberg-test-simple-hero-split.has-background {
    background-color: var(--wp-preset-color-background);
}

.wp-block-gutenberg-test-simple-hero-split .split-container {
    display: flex;
    flex-wrap: wrap;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    gap: 2rem;
}

.wp-block-gutenberg-test-simple-hero-split .title-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2rem;
    position: relative;
}

.wp-block-gutenberg-test-simple-hero-split .title-column::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: currentColor;
    opacity: 0.3;
}

.wp-block-gutenberg-test-simple-hero-split .subtitle-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
}

.wp-block-gutenberg-test-simple-hero-split h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0;
    line-height: 1.2;
    text-align: right;
}

.wp-block-gutenberg-test-simple-hero-split .subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 768px) {
    .wp-block-gutenberg-test-simple-hero-split {
        padding: calc(var(--spacing-xl) * 1.5) 0;
    }
    
    .wp-block-gutenberg-test-simple-hero-split .title-column {
        justify-content: center;
        padding-right: 0;
    }
    
    .wp-block-gutenberg-test-simple-hero-split .title-column::after {
        display: none;
    }
    
    .wp-block-gutenberg-test-simple-hero-split h1 {
        text-align: center;
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .wp-block-gutenberg-test-simple-hero-split .subtitle {
        text-align: center;
        font-size: clamp(1rem, 1.5vw, 1.25rem);
    }
} 