.wp-block-gutenberg-test-simple-hero-bordered {
    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;
    text-align: center;
}

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

.wp-block-gutenberg-test-simple-hero-bordered .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.wp-block-gutenberg-test-simple-hero-bordered .bordered-content {
    position: relative;
    padding: 3rem;
    border: 2px solid currentColor;
    border-radius: 4px;
    max-width: 900px;
    margin: 0 auto;
}

.wp-block-gutenberg-test-simple-hero-bordered .bordered-content::before,
.wp-block-gutenberg-test-simple-hero-bordered .bordered-content::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-style: solid;
    border-color: currentColor;
}

.wp-block-gutenberg-test-simple-hero-bordered .bordered-content::before {
    top: -10px;
    left: -10px;
    border-width: 2px 0 0 2px;
}

.wp-block-gutenberg-test-simple-hero-bordered .bordered-content::after {
    bottom: -10px;
    right: -10px;
    border-width: 0 2px 2px 0;
}

.wp-block-gutenberg-test-simple-hero-bordered h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.wp-block-gutenberg-test-simple-hero-bordered .subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .wp-block-gutenberg-test-simple-hero-bordered {
        padding: calc(var(--spacing-xl) * 1.5) 0;
    }
    
    .wp-block-gutenberg-test-simple-hero-bordered .bordered-content {
        padding: 1.5rem;
    }
    
    .wp-block-gutenberg-test-simple-hero-bordered h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .wp-block-gutenberg-test-simple-hero-bordered .subtitle {
        font-size: clamp(1rem, 1.5vw, 1.25rem);
    }
} 