/* LIFT NY shared stylesheet */

body {
    font-family: Georgia, serif;
    margin: 0;
    line-height: 1.7;
    color: #111;
    background: #fff;
}

.wrap {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Navigation ---------- */

.nav {
    border-bottom: 3px solid #003366;
    background: #fff;
}

.nav-inner {
    max-width: 1050px;
    margin: 0 auto;
    padding: 18px 24px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-brand img {
    height: 78px;
    width: auto;
}

.nav-brand .brand-text {
    line-height: 1.25;
}

.nav-brand .brand-name {
    font-size: 34px;
    font-weight: bold;
    color: #003366;
    letter-spacing: 0.5px;
}

.nav-brand .brand-tag {
    font-size: 16px;
    font-style: italic;
    color: #444;
}

.nav-links {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    width: 100%;
    border-top: 1px solid #ccd4de;
    padding: 8px 0;
}

.nav-links a {
    text-decoration: none;
    color: #003366;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-links a:hover {
    background: #eef2f7;
}

.nav-links a.active {
    background: #003366;
    color: #fff;
}

/* ---------- Typography ---------- */

h1 {
    font-size: 46px;
    margin: 30px 0 10px 0;
    color: #003366;
    line-height: 1.1;
}

h2 {
    font-size: 26px;
    font-weight: normal;
    margin: 0 0 15px 0;
    color: #222;
}

h3 {
    margin-top: 30px;
    color: #003366;
}

a {
    color: #003366;
    font-weight: bold;
}

.byline {
    font-size: 19px;
    font-style: italic;
    color: #003366;
    border-top: 2px solid #003366;
    padding-top: 12px;
    margin-top: 15px;
}

/* ---------- Components ---------- */

.hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 35px 0;
}

.hero img {
    width: 310px;
    max-width: 38%;
    height: auto;
}

.hero-text {
    flex: 1;
}

.highlight {
    background-color: #f4f4f4;
    padding: 22px;
    border-left: 6px solid #003366;
    margin: 25px 0;
}

.download {
    text-align: center;
    font-size: 20px;
    margin: 25px 0 35px 0;
}

/* Pillar cards on the home page */
.pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 30px 0 40px 0;
}

.pillar-card {
    border: 1px solid #ccc;
    border-top: 6px solid #003366;
    padding: 20px 22px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
}

.pillar-card h3 {
    margin: 0 0 10px 0;
    font-size: 21px;
}

.pillar-card p {
    margin: 0 0 14px 0;
    flex: 1;
}

.pillar-card .more {
    font-size: 16px;
}

/* Stats strip */
.stats {
    display: flex;
    gap: 18px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.stat {
    flex: 1;
    min-width: 160px;
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 18px 12px;
}

.stat .num {
    font-size: 34px;
    font-weight: bold;
    display: block;
    line-height: 1.2;
}

.stat .label {
    font-size: 15px;
    font-style: italic;
}

/* Chart blocks on the data page */
.chart-block {
    margin: 35px 0;
    border: 1px solid #ccc;
    padding: 20px 22px;
    background: #fafafa;
}

.chart-block h3 {
    margin-top: 0;
}

.chart-block img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    background: #fff;
}

.chart-block .source {
    font-size: 14px;
    font-style: italic;
    color: #444;
    margin-top: 8px;
}

/* Call-to-action / contact footer */
.cta {
    margin-top: 50px;
    padding: 20px;
    background-color: #003366;
    color: white;
    text-align: center;
}

.cta a {
    color: #fff;
}

.cta p {
    margin: 4px 0;
}

.footer-note {
    text-align: center;
    font-size: 13px;
    color: #555;
    padding: 14px 0 20px 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 750px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero img {
        max-width: 70%;
        width: 260px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 22px;
    }

    .pillars {
        grid-template-columns: 1fr;
    }

    .nav-brand img {
        height: 60px;
    }

    .nav-brand .brand-name {
        font-size: 26px;
    }

    .nav-brand .brand-tag {
        font-size: 13px;
    }
}
