/* Background image for writing-plans-side-by-side section */

/* PC only: Background image */
@media (min-width: 769px) {
    .writing-plans-side-by-side::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('../images/r1_029-1.webp');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        opacity: 0.2;
        z-index: -1;
    }
    
    .writing-plans-side-by-side {
        position: relative;
    }
    
    
    .writing-plans-side-by-side .plans-container {
        position: relative;
        z-index: 10;
    }
    
    /* Section title and subtitle with text shadow for visibility */
    .writing-plans-side-by-side .section-title {
        /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
        color: var(--primary);
    }
    
    .writing-plans-side-by-side .section-subtitle {
        /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); */
        color: var(--text);
    }
    
    /* Plan cards with solid background */
    .writing-plans-side-by-side .plan-card {
        background: var(--bg-white);
        border: 2px solid var(--border-light);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}