/* --------------------------------------------------
   Site-wide type — National PTA Brand Kit (2026)
   https://www.pta.org/docs/default-source/files/runyourpta/branding/2026/pta_brandkit_2026_mainbrand.pdf
   The brand kit's primary/secondary faces are Myriad Pro/Minion Pro,
   which are commercial Adobe fonts with no license here to embed them
   for web delivery. Using the brand kit's own listed "Alternate Fonts —
   For web content" instead: Arial (primary, body text) and Georgia
   (secondary, headings) — both web-safe, no font files or licensing
   needed. Swap these two variables if real Myriad/Minion Pro web access
   (e.g. an Adobe Fonts kit) becomes available later.
-------------------------------------------------- */
:root {
    --font-primary: Arial, Helvetica, sans-serif;
    --font-secondary: Georgia, "Times New Roman", serif;
}

body {
    font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
}

/* --------------------------------------------------
   Global Block System (SmallBox / FullBox)
-------------------------------------------------- */

/* Parent container for blocks */
.citywide-block-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}


/* Card container */
.city-card,
.city-card-half {
    border: 2px solid var(--color, var(--accent-color));
    border-radius: 10px;
    background: var(--bg, white);
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    overflow: hidden; /* unify title + body corners */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Layout sizes */
.city-card {
    width: 100%;
}

.city-card-half {
    flex: 0 0 calc(50% - 1.5rem);
}


/* Title bar */
.block-title {
    background: var(--color, var(--accent-color));
    color: black;
    padding: 0.6rem 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    /* remove radius here */
}

/* Content area */
.block-body {
    padding: 0 1.25rem 1rem;
}


