/* ============================================================
   Thomas Family Law Counsel — Interior Page Templates
   Enqueued on every non-homepage page via css_script_manager.php
   ============================================================ */

/* ── Interior hero banner (404 only — standalone About/Practice
   Areas/Podcast/Contact pages reuse the homepage section markup
   directly instead) ────────────────────────────────────────── */
section.page_hero {
    background: var(--navy);
    color: var(--cream);
    padding: 4.5rem 0 4rem;
    position: relative;
    overflow: hidden;

    &::after {
        content: "";
        position: absolute;
        right: -8%;
        top: -40%;
        width: 360px;
        height: 360px;
        border: 1px solid rgba(201, 162, 39, 0.18);
        border-radius: 50%;
    }

    .content {
        .eyebrow {
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-size: 0.78rem;
            font-weight: 600;
        }

        .page_hero_title {
            font-size: clamp(1.9rem, 3.6vw, 2.6rem);
            font-weight: 600;
            line-height: 1.2;
            max-width: 780px;
            margin-top: 1rem;
        }

        .page_hero_lead {
            color: rgba(247, 244, 236, 0.82);
            max-width: 620px;
            margin-top: 1rem;
            font-size: 1.02rem;
            margin-bottom: 0;
        }
    }
}

/* ── Optional intro copy under a page's main section ───────── */
section.intro_section {
    background: #fff;

    .page_content {
        color: #454b58;
        font-size: 1.02rem;

        p {
            margin-bottom: 1.1rem;
        }
    }
}

/* ── CTA banner ─────────────────────────────────────────────── */
section.cta_banner {
    background: var(--navy);
    color: var(--cream);

    .section_label {
        color: var(--gold);
    }

    .section_title {
        color: var(--cream);
    }

    .lede {
        color: rgba(247, 244, 236, 0.78);
        max-width: 520px;
    }
}

/* ── 404 ────────────────────────────────────────────────────── */
section.not_found_section {
    background: #fff;

    .btn_outline_navy {
        display: inline-block;
        border: 1px solid var(--hairline);
        color: var(--navy);
        border-radius: 2px;
        padding: 0.75rem 1.6rem;
        font-weight: 500;
    }

    .btn_outline_navy:hover {
        border-color: var(--navy);
        background: rgba(27, 42, 74, 0.04);
    }

    .not_found_links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.9rem;
        margin-top: 0.5rem;
    }

    .not_found_search {
        margin-top: 2.2rem;
        max-width: 420px;

        .search-form {
            display: flex;
            gap: 0.6rem;
        }

        input[type="search"] {
            flex: 1;
            border: 1px solid var(--hairline);
            border-radius: 2px;
            padding: 0.65rem 0.9rem;
            font-size: 0.95rem;
        }

        input[type="submit"] {
            background: var(--navy);
            color: var(--cream);
            border: none;
            border-radius: 2px;
            padding: 0.65rem 1.4rem;
            font-weight: 600;
        }

        input[type="submit"]:hover {
            background: var(--navy-deep);
        }
    }
}
