/* children.css — page-specific styles for Children & Young People */

/* === CSS VARIABLES === */
        

        

        

        

        

        /* === HERO SECTION === */
        .cyp-hero {
            position: relative;
            padding: 230px 0 70px;
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(42, 39, 36, 0.95) 100%), url('https://stjosephclarkston.com/wp-content/uploads/2026/01/Welcome-View-from-LHS-scal.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            overflow: hidden;
            margin-top: -55px;
        }

        .cyp-hero .hero-container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        .cyp-hero h1 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 400;
            font-family: 'Montserrat', sans-serif;
        }

        .cyp-hero 

        /* === NEW LEFT SIDEBAR NAVIGATION === */
        

        

        

        .sidebar-nav-list 

        

        

        /* === MAIN CONTENT AREA === */
        

        .cyp-section {
            padding: 40px 0 80px;
            border-bottom: 1px solid var(--border-color);
        }

        .cyp-section:first-of-type {
            padding-top: 0;
        }

        .cyp-section:last-of-type {
            border-bottom: none;
        }

        

        

        

        .section-intro {
            font-size: 1.2rem;
            color: var(--text-grey);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        /* === UTILITY CLASSES === */
        

        

        

        /* === CONTENT GRIDS === */
        .schools-grid, .groups-grid, .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .school-card, .group-card, .award-card {
            background: var(--white);
            border-radius: 0;
            padding: 30px;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            border-top: 4px solid var(--accent);
        }

        .school-icon, .group-icon, .award-badge {
            width: 70px;
            height: 70px;
            border-radius: 0;
            background: var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .school-icon i, .group-icon i, .award-badge i {
            font-size: 1.8rem;
            color: var(--accent);
        }

        .school-level, .group-tag, .award-level, .sacrament-age {
            display: inline-block;
            padding: 6px 15px;
            background: var(--light-grey);
            border-radius: 0;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* === SACRAMENTAL JOURNEY === */
        .sacrament-timeline {
            position: relative;
            margin-top: 40px;
            padding-left: 30px;
        }

        .sacrament-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--accent);
            border-radius: 0;
        }

        .sacrament-ste

        .sacrament-step::before {
            content: '';
            position: absolute;
            left: -38px;
            top: 0;
            width: 20px;
            height: 20px;
            background: var(--accent);
            border-radius: 0;
            border: 4px solid var(--white);
            box-shadow: 0 0 0 2px var(--accent);
        }

        .sacrament-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .detail-card {
            background: var(--off-white);
            padding: 20px;
            border-radius: 0;
            border-left: 3px solid var(--accent);
        }

        .detail-card h4 {
            font-size: 1rem;
            margin-bottom: 8px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .detail-card h4 i { color: var(--accent); }

        /* === CONTACT SECTION === */
        .contact-container {
            background: var(--white);
            border-radius: 0;
            padding: 40px;
            box-shadow: var(--shadow-medium);
            margin-top: 30px;
            border-top: 4px solid var(--accent);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .contact-person {
            background: var(--off-white);
            border-radius: 0;
            padding: 30px;
            text-align: center;
        }

        /* === RESPONSIVE === */
        @media (max-width: 1100px) {
            
            
            
        }
    

    /* Fix: Remove checkmarks from sidebar navigation links */
    .sidebar-nav-list li::before {
      content: none !important;
    }