/* PARKS PAGE */

.parks-page-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.parks-page-header {
    margin-bottom: 2rem;
}

.parks-page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.parks-page-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 1rem;
}

.parks-stat {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.parks-stat strong {
    font-size: 1.1rem;
    color: var(--text);
}

.parks-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.parks-info-card {
    background: #ede9fe;
    border: 1px solid #c4b5fd;
    border-radius: var(--radius);
    padding: 1.5rem;
}

.parks-info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #5b21b6;
    margin-bottom: 0.5rem;
}

.parks-info-card p {
    font-size: 0.9rem;
    color: #4c1d95;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .parks-info { grid-template-columns: 1fr; }
}
