:root {
    --info-header-orange: #ff9800;
    --info-header-yellow: #ffcc01;
    --info-content-width: 980px;
}

/* ------------------------------------------------------------- */
/* INFORMATION PAGE — COMPACT HEADER                             */
/* ------------------------------------------------------------- */

.info-header {
    position: relative;
    z-index: 20;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.34), transparent 34%),
        linear-gradient(135deg, #ffc76a 0%, #ffb84d 52%, #ffd86a 100%);
    border-bottom: 10px solid var(--accent-red);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
}

.info-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

/*
 * Keep the same logo and navigation as the home page, but without
 * the full-height hero section.
 */
.info-header .hero__nav {
    min-height: 0;
}

.info-header .hero__logo {
    display: inline-flex;
    align-items: center;
}

.info-header .hero__logo img {
    display: block;
    max-width: 260px;
    height: auto;
}

.info-header .hero__menu a {
    color: var(--text-dark);
}

/* ------------------------------------------------------------- */
/* INFORMATION PAGE — ARTICLE AREA                               */
/* ------------------------------------------------------------- */

.info-page {
    background: #ffffff;
    padding: 58px 20px 72px;
}

.info-page__inner {
    max-width: var(--info-content-width);
    margin: 0 auto;
}

.info-page__article {
    min-height: 320px;
    color: var(--text-dark);
}

.info-page__article > :first-child {
    margin-top: 0;
}

.info-page__article > :last-child {
    margin-bottom: 0;
}

.info-page__article h1 {
    margin: 0 0 24px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    font-weight: 800;
    color: var(--text-dark);
}

.info-page__article h2 {
    margin: 48px 0 16px;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-dark);
}

.info-page__article h3 {
    margin: 32px 0 12px;
    font-size: 1.28rem;
    line-height: 1.3;
    font-weight: 800;
    color: var(--text-dark);
}

.info-page__article p,
.info-page__article li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.info-page__article p {
    margin: 0 0 20px;
}

.info-page__article ul,
.info-page__article ol {
    margin: 0 0 24px;
    padding-left: 1.5em;
}

.info-page__article li {
    margin-bottom: 8px;
}

.info-page__article strong {
    color: var(--text-dark);
}

.info-page__article a:not(.button) {
    color: #087fd1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.info-page__article img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 28px auto;
}

.info-page__article figure {
    margin: 32px 0;
}

.info-page__article figcaption {
    margin-top: 10px;
    color: #777;
    font-size: 0.82rem;
    text-align: center;
}

.info-page__article blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 5px solid var(--accent-orange);
    background: #fff8e8;
    color: var(--text-muted);
}

.info-page__article table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.info-page__article th,
.info-page__article td {
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    text-align: left;
    vertical-align: top;
}

.info-page__article th {
    background: #fff5dc;
    color: var(--text-dark);
    font-weight: 800;
}

/* Optional highlighted block for case-study results or notes. */
.info-page__callout {
    margin: 30px 0;
    padding: 22px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff2c7, #fff8e7);
    border: 1px solid rgba(255, 152, 0, 0.28);
}

/* ------------------------------------------------------------- */
/* TABLET                                                        */
/* ------------------------------------------------------------- */

@media (min-width: 769px) and (max-width: 1023px) {
    .info-header__inner {
        max-width: 800px;
        padding: 22px 24px;
    }

    .info-header .hero__logo img {
        max-width: 200px;
    }

    .info-page {
        padding-top: 50px;
    }
}

/* ------------------------------------------------------------- */
/* MOBILE                                                        */
/* ------------------------------------------------------------- */

@media (max-width: 768px) {
    .info-header__inner {
        padding: 20px;
    }

    .info-header .hero__nav {
        position: relative;
    }

    /*
     * styles.css positions the mobile menu absolutely.
     * Anchor it neatly below this compact header.
     */
    .info-header .hero__menu {
        top: calc(100% + 14px);
        right: 0;
        left: 0;
        z-index: 50;
    }

    .info-page {
        padding: 44px 20px 58px;
    }

    .info-page__article {
        min-height: 240px;
    }

    .info-page__article h1 {
        margin-bottom: 20px;
    }

    .info-page__article h2 {
        margin-top: 38px;
    }

    .info-page__article table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .info-header__inner {
        padding: 18px 16px;
    }

    .info-header .hero__logo img {
        max-width: 210px;
    }

    .info-page {
        padding-left: 18px;
        padding-right: 18px;
    }
}
