/**
 * Public school homepage — standalone CSS (no Vite/Tailwind).
 * Uses --school-primary from inline <style> in the view.
 */
* { box-sizing: border-box; }
body {
    font-family: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #111827;
    background: #fff;
    margin: 0;
    line-height: 1.5;
}

/* Top bar (Donate | Sponsor) */
.ph-topbar {
    background: var(--school-primary);
    color: #fff;
    padding: 0.5rem 0;
}
.ph-topbar-inner { display: flex; justify-content: flex-end; }
.ph-topbar-ctas { display: flex; gap: 0.75rem; }
.ph-topbar .ph-btn { background: #fff; color: var(--school-primary); }
.ph-topbar .ph-btn:hover { opacity: 0.95; }

/* Nav */
.ph-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
}
.ph-nav {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
@media (min-width: 768px) { .ph-nav { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .ph-nav { padding-left: 2rem; padding-right: 2rem; } }

.ph-nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
@media (min-width: 768px) { .ph-nav-menu { display: flex; } }
.ph-nav-item { position: relative; }
.ph-nav-link, .ph-nav-trigger {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.9375rem;
}
.ph-nav-link:hover, .ph-nav-trigger:hover { color: var(--school-primary); }
.ph-nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 12rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    z-index: 60;
}
.ph-nav-dropdown:hover .ph-nav-dropdown-menu { display: block; }
.ph-nav-dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
}
.ph-nav-dropdown-link:hover { background: #f3f4f6; color: var(--school-primary); }
.ph-nav-login { flex-shrink: 0; }

.ph-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
}
.ph-brand img { height: 2.5rem; width: auto; object-fit: contain; }
.ph-brand-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: var(--school-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ph-brand-icon svg { width: 1.5rem; height: 1.5rem; }
.ph-brand-name { font-weight: 600; font-size: 1.125rem; color: #111827; }

.ph-nav-links { display: none; }
@media (min-width: 768px) {
    .ph-nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}
.ph-nav-links a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.15s;
}
.ph-nav-links a:hover { color: var(--school-primary); }
.ph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: #fff;
    background: var(--school-primary);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s;
}
.ph-btn:hover { opacity: 0.9; }
.ph-btn-sm { padding: 0.5rem 0.75rem; font-size: 0.875rem; }
.ph-nav .ph-btn-mobile { display: block; }
.ph-nav .ph-btn-desktop { display: none; }
@media (min-width: 768px) {
    .ph-nav .ph-btn-mobile { display: none; }
    .ph-nav .ph-btn-desktop { display: inline-flex; }
}

/* Hero */
.ph-hero {
    position: relative;
    overflow: hidden;
}
.ph-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, color-mix(in oklch, var(--school-primary) 5%, transparent), transparent, color-mix(in oklch, var(--school-primary) 10%, transparent));
}
.ph-hero-inner {
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
    padding: 5rem 1rem;
}
@media (min-width: 768px) { .ph-hero-inner { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .ph-hero-inner { padding: 7rem 2rem; } }

.ph-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.025em;
    margin: 0;
    max-width: 48rem;
}
.ph-hero-carousel .ph-hero h1,
.ph-hero-carousel .ph-hero-inner h1 { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.ph-hero-carousel .ph-hero-tagline { color: rgba(255,255,255,0.95); }
@media (min-width: 640px) { .ph-hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .ph-hero h1 { font-size: 3.75rem; } }
.ph-hero h1 .ph-accent { color: var(--school-primary); }
.ph-hero-tagline { margin-top: 1.5rem; font-size: 1.25rem; color: #4b5563; }
.ph-hero-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero carousel */
.ph-hero-carousel {
    min-height: 28rem;
}
@media (min-width: 640px) { .ph-hero-carousel { min-height: 32rem; } }
@media (min-width: 1024px) { .ph-hero-carousel { min-height: 36rem; } }
.ph-hero-track {
    position: absolute;
    inset: 0;
}
.ph-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1e3a5f;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}
.ph-hero-slide.ph-hero-slide-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.ph-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.ph-hero-carousel .ph-hero-inner { position: relative; z-index: 2; }
.ph-hero-prev,
.ph-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
}
.ph-hero-prev:hover,
.ph-hero-next:hover { background: rgba(255,255,255,0.35); }
.ph-hero-prev { left: 1rem; }
.ph-hero-next { right: 1rem; }
.ph-hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}
.ph-hero-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s;
}
.ph-hero-dot:hover,
.ph-hero-dot.ph-hero-dot-active { background: #fff; }
.ph-btn-primary {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: var(--school-primary);
    text-decoration: none;
    box-shadow: 0 10px 15px -3px color-mix(in oklch, var(--school-primary) 25%, transparent);
    transition: opacity 0.15s;
}
.ph-btn-primary:hover { opacity: 0.9; }
.ph-btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: #374151;
    background: #f3f4f6;
    text-decoration: none;
    transition: background 0.15s;
}
.ph-btn-secondary:hover { background: #e5e7eb; }

/* Stats bar */
.ph-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 72rem;
    margin: -2rem auto 0;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}
@media (min-width: 640px) { .ph-stats { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .ph-stats { padding: 0 2rem; } }
.ph-stat {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08);
    text-align: center;
}
.ph-stat-value { font-size: 1.75rem; font-weight: 700; color: var(--school-primary); line-height: 1.2; }
.ph-stat-label { font-size: 0.875rem; color: #6b7280; margin-top: 0.25rem; text-transform: lowercase; }

/* Blocks grid (Visit us, Donate, Join us) */
.ph-blocks-sec { padding: 4rem 0; background: #f9fafb; }
@media (min-width: 1024px) { .ph-blocks-sec { padding: 5rem 0; } }
.ph-blocks-sec h2 { font-size: 1.5rem; font-weight: 700; color: #111827; margin: 0 0 2rem; text-align: center; }
.ph-blocks-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .ph-blocks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ph-blocks-grid { grid-template-columns: repeat(3, 1fr); } }
.ph-block {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.2s;
}
.ph-block:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08); }
.ph-block-title { font-size: 1.125rem; font-weight: 600; color: #111827; margin: 0; }
.ph-block-subtitle { font-size: 0.875rem; color: var(--school-primary); margin: 0.25rem 0 0.5rem; }
.ph-block-desc { font-size: 0.9375rem; color: #4b5563; margin: 0.75rem 0 1rem; line-height: 1.5; }
.ph-block-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--school-primary);
    text-decoration: none;
}
.ph-block-link:hover { text-decoration: underline; }

/* Latest / News */
.ph-latest { padding: 4rem 0; }
@media (min-width: 1024px) { .ph-latest { padding: 5rem 0; } }
.ph-latest h2 { font-size: 1.875rem; font-weight: 700; color: #111827; margin: 0; }
.ph-latest-sub { margin-top: 0.5rem; color: #4b5563; margin-bottom: 2rem; }
.ph-latest-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .ph-latest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ph-latest-grid { grid-template-columns: repeat(3, 1fr); } }
.ph-news-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: box-shadow 0.2s;
}
.ph-news-item:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08); }
.ph-news-item h3 { font-size: 1rem; font-weight: 600; color: #111827; margin: 0 0 0.5rem; }
.ph-news-item .ph-news-date { font-size: 0.8125rem; color: #6b7280; }
.ph-news-item p { font-size: 0.9375rem; color: #4b5563; margin: 0.5rem 0 0; line-height: 1.5; }

/* Newsletter CTA */
.ph-newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, color-mix(in oklch, var(--school-primary) 12%, transparent), color-mix(in oklch, var(--school-primary) 6%, transparent));
}
.ph-newsletter-inner { text-align: center; max-width: 32rem; margin: 0 auto; }
.ph-newsletter h2 { font-size: 1.5rem; font-weight: 700; color: #111827; margin: 0; }
.ph-newsletter p { margin-top: 0.5rem; color: #4b5563; }
.ph-newsletter .ph-btn-primary { margin-top: 1.5rem; }
.ph-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}
.ph-newsletter-input {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    min-width: 12rem;
}
.ph-newsletter-msg { margin-top: 1rem; font-size: 0.9375rem; }
.ph-newsletter-success { color: #15803d; }
.ph-newsletter-error { color: #b91c1c; }

/* Generic CMS page */
.ph-page { padding: 4rem 0; }
@media (min-width: 1024px) { .ph-page { padding: 5rem 0; } }
.ph-page-header { margin-bottom: 2rem; }
.ph-page-header h1 { font-size: 2rem; font-weight: 700; color: #111827; margin: 0 0 0.5rem; }
.ph-page-excerpt { font-size: 1.125rem; color: #4b5563; margin: 0; }
.ph-page-body { font-size: 1.0625rem; line-height: 1.7; color: #374151; }
.ph-page-body p { margin: 0 0 1rem; }
.ph-page-body a { color: var(--school-primary); }
.ph-page-body a:hover { text-decoration: underline; }

/* About */
.ph-about { padding: 5rem 0; background: #fff; }
@media (min-width: 1024px) { .ph-about { padding: 7rem 0; } }
.ph-about h2 { font-size: 1.875rem; font-weight: 700; color: #111827; margin: 0; }
.ph-about-grid {
    margin-top: 2rem;
    display: grid;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 768px) { .ph-about-grid { grid-template-columns: 1fr 1fr; } }
.ph-about-text { font-size: 1.125rem; color: #4b5563; max-width: none; }
.ph-about-text p { margin: 0 0 1rem; }
.ph-about-text p.ph-motto { font-size: 1.25rem; font-weight: 500; color: var(--school-primary); }
.ph-about-text a.ph-btn-secondary { display: inline-block; margin-top: 0.5rem; }
.ph-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.ph-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
}
.ph-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: color-mix(in oklch, var(--school-primary) 10%, transparent);
    color: var(--school-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ph-card-icon svg { width: 1.5rem; height: 1.5rem; }
.ph-card h3 { margin: 1rem 0 0.25rem; font-weight: 600; color: #111827; font-size: 1rem; }
.ph-card p { margin: 0; font-size: 0.875rem; color: #6b7280; }

.ph-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 768px) { .ph-container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .ph-container { padding-left: 2rem; padding-right: 2rem; } }

/* Contact */
.ph-contact { padding: 5rem 0; }
@media (min-width: 1024px) { .ph-contact { padding: 7rem 0; } }
.ph-contact h2 { font-size: 1.875rem; font-weight: 700; color: #111827; margin: 0; }
.ph-contact-sub { margin-top: 0.5rem; color: #4b5563; }
.ph-contact-grid {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}
@media (min-width: 640px) { .ph-contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ph-contact-grid { grid-template-columns: repeat(3, 1fr); } }
.ph-contact-item { display: flex; gap: 1rem; }
.ph-contact-item .ph-card-icon { flex-shrink: 0; }
.ph-contact-item h3 { font-weight: 600; color: #111827; margin: 0; font-size: 1rem; }
.ph-contact-item p,
.ph-contact-item a { margin: 0.25rem 0 0; color: #4b5563; text-decoration: none; }
.ph-contact-item a:hover { color: var(--school-primary); }
.ph-contact-fallback { margin-top: 1.5rem; color: #6b7280; }

/* Footer */
.ph-footer {
    background: #111827;
    color: #d1d5db;
    padding: 3rem 0;
}
.ph-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (min-width: 640px) { .ph-footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ph-footer-grid { grid-template-columns: repeat(4, 1fr); } }
.ph-footer-col { }
.ph-footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.75rem;
}
.ph-footer-col .ph-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ph-footer-col .ph-footer-links li { margin-bottom: 0.35rem; }
.ph-footer-col .ph-footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
}
.ph-footer-col .ph-footer-links a:hover { color: #fff; }
.ph-footer-login { color: var(--school-primary) !important; }
.ph-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
@media (min-width: 640px) { .ph-footer-inner { flex-direction: row; } }
.ph-footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.ph-footer-brand img { height: 2rem; width: auto; opacity: 0.9; }
.ph-footer-brand span { font-weight: 600; color: #fff; }
.ph-footer-links { display: flex; align-items: center; gap: 1.5rem; font-size: 0.875rem; }
.ph-footer-links a { color: #d1d5db; text-decoration: none; transition: color 0.15s; }
.ph-footer-links a:hover { color: #fff; }
.ph-footer-links a.ph-footer-login { color: var(--school-primary); }
.ph-footer-links a.ph-footer-login:hover { text-decoration: underline; }
.ph-footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
    text-align: center;
    font-size: 0.8125rem;
    color: #6b7280;
}
@media (min-width: 640px) { .ph-footer-bottom { text-align: left; } }
.ph-footer-bottom p { margin: 0; }
.ph-footer-bottom p + p { margin-top: 0.25rem; }
.ph-footer-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-top: 0.5rem !important; }
.ph-footer-apply { color: var(--school-primary); text-decoration: underline; }
.ph-footer-apply:hover { opacity: 0.9; }
.ph-footer-newsletter-btn {
    background: none; border: none; color: var(--school-primary); cursor: pointer;
    font-size: inherit; text-decoration: underline; padding: 0;
}
.ph-footer-newsletter-btn:hover { opacity: 0.9; }
.ph-footer-social {
    display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.ph-footer-social a { color: #9ca3af; transition: color 0.2s; }
.ph-footer-social a:hover { color: #fff; }
.ph-footer-social-icon { width: 1.5rem; height: 1.5rem; display: block; }

/* Topbar search */
.ph-topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ph-topbar-search { display: flex; gap: 0.25rem; align-items: center; }
.ph-topbar-search-input {
    padding: 0.35rem 0.5rem; border: none; border-radius: 0.25rem;
    font-size: 0.875rem; min-width: 10rem; background: rgba(255,255,255,0.9);
}
.ph-topbar-search-input::placeholder { color: #6b7280; }
.ph-topbar-search-btn {
    padding: 0.35rem 0.5rem; border: none; border-radius: 0.25rem;
    background: rgba(255,255,255,0.2); color: #fff; font-size: 0.875rem; cursor: pointer;
}
.ph-topbar-search-btn:hover { background: rgba(255,255,255,0.3); }
@media (max-width: 639px) {
    .ph-topbar-search { display: none; }
}

/* Screen reader only */
.ph-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Nav toggle (mobile) */
.ph-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
}
.ph-nav-toggle span { display: block; width: 1.5rem; height: 2px; background: #374151; }
@media (max-width: 767px) {
    .ph-nav-toggle { display: flex; }
    .ph-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
        padding: 1rem;
        max-height: 70vh;
        overflow-y: auto;
    }
    .ph-nav-menu.ph-nav-menu-open { display: flex; }
    .ph-nav-dropdown-menu { position: static; box-shadow: none; margin-top: 0.5rem; }
    .ph-nav-dropdown:hover .ph-nav-dropdown-menu { display: none; }
    .ph-nav-dropdown.ph-nav-dropdown-open .ph-nav-dropdown-menu { display: block; }
}

/* Newsletter modal */
.ph-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.ph-modal[hidden] { display: none; }
.ph-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.ph-modal-content {
    position: relative; background: #fff; border-radius: 1rem; padding: 2rem; max-width: 28rem; width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.ph-modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #6b7280; }
.ph-modal-close:hover { color: #111; }
.ph-modal-title { margin: 0 0 0.5rem; font-size: 1.25rem; }
.ph-modal-sub { margin: 0 0 1rem; color: #4b5563; font-size: 0.9375rem; }
.ph-modal .ph-newsletter-form { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.ph-modal .ph-newsletter-input { flex: 1; min-width: 12rem; }
body.ph-modal-open { overflow: hidden; }

/* Cookie consent */
.ph-cookie-consent {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: #111827; color: #d1d5db; padding: 1rem 1.5rem;
    box-shadow: 0 -4px 6px -1px rgba(0,0,0,0.1);
}
.ph-cookie-consent[hidden] { display: none; }
.ph-cookie-inner { max-width: 72rem; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.ph-cookie-text { margin: 0; font-size: 0.875rem; flex: 1; min-width: 16rem; }
.ph-cookie-actions { display: flex; gap: 0.5rem; }
.ph-btn-outline { background: transparent; border: 1px solid #6b7280; color: #d1d5db; }
.ph-btn-outline:hover { background: #1f2937; }

/* Search page */
.ph-search-form { display: flex; gap: 0.5rem; margin-bottom: 2rem; max-width: 32rem; }
.ph-search-input { flex: 1; padding: 0.75rem 1rem; border: 1px solid #e5e7eb; border-radius: 0.5rem; font-size: 1rem; }
.ph-search-section { margin-top: 2rem; }
.ph-search-section h2 { font-size: 1.125rem; font-weight: 600; margin: 0 0 0.75rem; color: #374151; }
.ph-search-list { list-style: none; margin: 0; padding: 0; }
.ph-search-list li { margin-bottom: 0.5rem; }
.ph-search-list a { color: var(--school-primary); text-decoration: none; }
.ph-search-list a:hover { text-decoration: underline; }
.ph-search-date { font-size: 0.8125rem; color: #6b7280; margin-left: 0.5rem; }
.ph-search-empty { color: #6b7280; margin-top: 1rem; }
