/* Page Hero Section - Colored bar with page title and subtitle */
.page-hero {
    background-color: #7a9e9f;
    /* Sage/slate blue-green */
    padding: 2.5rem 0;
    color: white;
}

.page-hero-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    letter-spacing: 1px;
    margin: 0;
    padding-right: 1.5rem;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
}

.page-hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: white;
    opacity: 0.9;
}

/* Quote Section - Charlotte Mason style quotes */
.page-quote-section {
    background-color: #e8eff4;
    /* Light blue-gray background */
    padding: 3rem 0;
    text-align: center;
}

.page-quote {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-quote p {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.page-quote cite {
    font-style: normal;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 1.75rem;
        padding-right: 1rem;
    }

    .page-hero-subtitle {
        font-size: 0.9rem;
    }

    .page-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .page-hero h1 {
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
        padding-right: 0;
        padding-bottom: 0.5rem;
    }

    .page-quote p {
        font-size: 1rem;
    }
}