/* ==========================================================================
   f:Entrepreneur - site styles
   Palette: logo teal #00759e leads for interactive elements, logo sky #8fdcf7
   and site sky #a3dff9 as tints/surfaces, site navy #27394d as dark ground
   with teal-dark gradients in support. Plum lives only in the logo artwork
   (retired from the UI Aug 2026 - it read too lilac). Light blues are never
   used as text on white.
   ========================================================================== */

:root {
    --fe-teal: #00759e;
    --fe-teal-dark: #005c7d;
    --fe-sky: #8fdcf7;
    --fe-sky-soft: #a3dff9;
    --fe-sky-tint: #e9f6fd;
    --fe-navy: #27394d;
    --fe-ink: #3d3d3d;
    --fe-ink-soft: #5f5f5f;
    --fe-ground: #f7fafc;
    --fe-white: #ffffff;
    --fe-line: #d9e6ee;
    --fe-glass: rgba(255, 255, 255, 0.72);
    --fe-glass-dark: rgba(39, 57, 77, 0.88);
    --fe-glass-border: rgba(0, 117, 158, 0.18);
    --fe-shadow: 0 10px 30px rgba(39, 57, 77, 0.10);
    --fe-radius: 16px;
    --fe-font: "Open Sans", "Segoe UI", Arial, sans-serif;
    --fe-font-display: "Cormorant", "Times New Roman", Times, serif;
}

/* ---------- Base ---------- */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    font-family: var(--fe-font);
    font-size: 1rem;
    line-height: 1.66;
    color: var(--fe-ink);
    background: var(--fe-ground);
    padding-top: 4.5rem; /* fixed navbar */
}

h1, h2, h3 {
    font-family: var(--fe-font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--fe-navy);
    text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); }

h4, h5, h6 {
    font-weight: 600;
    color: var(--fe-navy);
}

a {
    color: var(--fe-teal);
    text-decoration-style: dashed;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.22em;
    text-decoration-color: color-mix(in srgb, currentColor 55%, transparent);
}

    a:hover {
        color: var(--fe-teal-dark);
        text-decoration-color: currentColor;
    }

:focus-visible {
    outline: 3px solid var(--fe-teal);
    outline-offset: 2px;
    border-radius: 2px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Email links (icon, no underline) ---------- */

.fe-email {
    text-decoration: none;
}

    .fe-email i {
        margin-right: 0.45rem;
    }

/* ---------- Skip link ---------- */

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 2000;
    background: var(--fe-teal);
    color: var(--fe-white);
    padding: 0.6rem 1.2rem;
    border-radius: 0 0 8px 0;
}

    .skip-link:focus {
        left: 0;
        color: var(--fe-white);
    }

/* ---------- Navbar (dark plum glass; sky wordmark needs the dark ground) ---------- */

/* Glass blur lives on ::before, NOT on .fe-navbar itself: backdrop-filter creates
   a containing block for fixed descendants, which would trap the offcanvas menu
   inside the navbar bar. */
.fe-navbar {
    border-bottom: 1px solid rgba(143, 220, 247, 0.25);
    min-height: 4.5rem;
}

    /* bottom -1px: reach under the translucent border-bottom, which sits outside
       the padding box that inset: 0 covers - otherwise the border shows the white
       page through it as a 1px light line under the nav */
    .fe-navbar::before {
        content: "";
        position: absolute;
        inset: 0 0 -1px;
        z-index: -1;
        background: var(--fe-glass-dark);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .fe-navbar::before {
        background: var(--fe-navy);
    }
}

.fe-brand-logo {
    width: 240px;
    height: auto;
}

.fe-navbar .nav-link {
    color: var(--fe-sky-soft);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

    .fe-navbar .nav-link:hover,
    .fe-navbar .nav-link:focus-visible,
    .fe-navbar .nav-link.show,
    .fe-navbar .nav-link.active {
        color: var(--fe-white);
    }

.fe-navbar :focus-visible {
    outline-color: var(--fe-sky);
}

.fe-navbar .navbar-toggler {
    border-color: rgba(143, 220, 247, 0.5);
}

.fe-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%238fdcf7' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.fe-nav-cta {
    border: 2px solid var(--fe-sky);
    border-radius: 999px;
    padding-left: 1.4rem !important;
    padding-right: 1.4rem !important;
    margin-left: 0.5rem;
}

.fe-navbar .dropdown-menu {
    background: var(--fe-glass-dark);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(143, 220, 247, 0.25);
    border-radius: 12px;
}

.fe-navbar .dropdown-item {
    color: var(--fe-sky-soft);
    font-weight: 600;
    font-size: 0.85rem;
}

    .fe-navbar .dropdown-item:hover,
    .fe-navbar .dropdown-item:focus-visible {
        color: var(--fe-navy);
        background: var(--fe-sky);
    }

.fe-navbar .dropdown-divider {
    border-color: rgba(143, 220, 247, 0.35);
}

/* Offcanvas (mobile menu) shares the dark glass */
.offcanvas {
    background: var(--fe-navy);
    color: var(--fe-sky-soft);
}

.offcanvas-title {
    color: var(--fe-white);
    font-size: 1.35rem;
}

.offcanvas .btn-close {
    filter: invert(1) brightness(1.6);
}

/* ---------- Hero ---------- */

.fe-hero {
    background: linear-gradient(135deg, var(--fe-navy) 0%, #1d4a63 55%, var(--fe-teal-dark) 100%);
    color: var(--fe-white);
    padding: 4.5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

    .fe-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 80% 20%, rgba(143, 220, 247, 0.18), transparent 55%);
        pointer-events: none;
    }

    .fe-hero h1,
    .fe-hero h2 {
        color: var(--fe-white);
    }

    .fe-hero p {
        color: var(--fe-sky-tint);
        max-width: 42rem;
        margin-left: auto;
        margin-right: auto;
    }

.fe-hero-logo {
    width: min(42rem, 92%);
    height: auto;
    background: var(--fe-white);
    border-radius: var(--fe-radius);
    padding: 1.25rem 1.75rem;
    box-shadow: var(--fe-shadow);
}

/* ---------- Sections ---------- */

.fe-section {
    padding: 4rem 0;
}

.fe-section-alt {
    background: var(--fe-sky-tint);
}

.fe-section-dark {
    background: linear-gradient(160deg, var(--fe-navy), var(--fe-teal-dark));
    color: var(--fe-sky-tint);
}

    .fe-section-dark h2,
    .fe-section-dark h3 {
        color: var(--fe-white);
    }

    .fe-section-dark a {
        color: var(--fe-sky);
    }

.fe-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fe-teal);
    margin-bottom: 0.5rem;
}

.fe-section-dark .fe-eyebrow {
    color: var(--fe-sky);
}

/* ---------- Glass card ---------- */

.glass-card {
    background: var(--fe-glass);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--fe-glass-border);
    border-radius: var(--fe-radius);
    box-shadow: var(--fe-shadow);
    padding: 1.5rem;
    height: 100%;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .glass-card {
        background: var(--fe-white);
    }
}

/* ---------- Buttons ---------- */

.btn-fe {
    background: var(--fe-teal);
    border: 2px solid var(--fe-teal);
    color: var(--fe-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
    padding: 0.6rem 1.8rem;
}

    .btn-fe:hover,
    .btn-fe:focus-visible {
        background: var(--fe-teal-dark);
        border-color: var(--fe-teal-dark);
        color: var(--fe-white);
    }

.btn-fe-outline {
    background: transparent;
    border: 2px solid var(--fe-teal);
    color: var(--fe-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
    padding: 0.6rem 1.8rem;
}

    .btn-fe-outline:hover,
    .btn-fe-outline:focus-visible {
        background: var(--fe-teal);
        color: var(--fe-white);
    }

/* Solid sky call-to-action for dark grounds (hero "Apply now") */
.btn-fe-sky {
    background: var(--fe-sky);
    border: 2px solid var(--fe-sky);
    color: var(--fe-navy);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
    padding: 0.6rem 1.8rem;
}

    .btn-fe-sky:hover,
    .btn-fe-sky:focus-visible {
        background: var(--fe-white);
        border-color: var(--fe-white);
        color: var(--fe-navy);
    }

.fe-section-dark .btn-fe-outline,
.fe-hero .btn-fe-outline {
    border-color: var(--fe-sky);
    color: var(--fe-sky);
}

    .fe-section-dark .btn-fe-outline:hover,
    .fe-section-dark .btn-fe-outline:focus-visible,
    .fe-hero .btn-fe-outline:hover,
    .fe-hero .btn-fe-outline:focus-visible {
        background: var(--fe-sky);
        color: var(--fe-navy);
    }

/* ---------- Founder grid ---------- */

.fe-founder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
    gap: 1.25rem;
}

.fe-founder-card {
    display: block;
    text-decoration: none;
    background: var(--fe-glass);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid var(--fe-glass-border);
    border-radius: var(--fe-radius);
    overflow: hidden;
    box-shadow: var(--fe-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .fe-founder-card:hover,
    .fe-founder-card:focus-visible {
        transform: translateY(-4px);
        box-shadow: 0 16px 36px rgba(39, 57, 77, 0.18);
    }

    .fe-founder-card img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
    }

.fe-founder-card-name {
    display: block;
    padding: 0.8rem 1rem;
    font-weight: 600;
    color: var(--fe-navy);
    text-align: center;
}

/* ---------- Founder bio ---------- */

.fe-bio-photo {
    border-radius: var(--fe-radius);
    box-shadow: var(--fe-shadow);
    width: 100%;
    max-width: 24rem;
}

.fe-bio-business {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--fe-teal);
    text-transform: none;
}

.fe-bio-badges {
    margin: 1.5rem 0 0;
}

/* ---------- Testimonials ---------- */

.fe-testimonial {
    text-align: center;
}

    .fe-testimonial img {
        width: 6rem;
        height: 6rem;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1rem;
        border: 3px solid var(--fe-sky);
    }

.fe-testimonial-quote {
    font-style: italic;
    color: var(--fe-ink-soft);
}

.fe-testimonial-author {
    font-weight: 700;
    color: var(--fe-navy);
    margin-bottom: 0;
}

.fe-testimonial-company {
    font-size: 0.9rem;
}

/* Show-more: without JS every testimonial is visible and the button stays hidden */
.fe-show-more {
    display: none;
}

.js .fe-show-more {
    display: block;
}

.js .fe-t-more {
    display: none;
}

/* ---------- Press strip ---------- */

.fe-press-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

    .fe-press-strip img {
        max-height: 3.5rem;
        width: auto;
    }

/* ---------- Press cards ---------- */

.fe-press-card img {
    max-height: 16rem;
    width: auto;
    max-width: 100%;
    border-radius: 8px;
}

/* ---------- Campaign gallery ---------- */

.fe-gallery-item {
    margin: 0;
    padding: 0.75rem;
}

    .fe-gallery-item img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: 10px;
    }

    .fe-gallery-item figcaption {
        font-size: 0.95rem;
        color: var(--fe-ink-soft);
        padding: 1rem 0.5rem 0.5rem;
    }

/* Home page boat-party pair - 3:2 instead of the gallery's 4:3 so the
   Tower Bridge group shot stays uncropped */
.fe-photo-duo .fe-gallery-item img {
    aspect-ratio: 3 / 2;
}

/* Full-width featured photo (About Us community shot).
   Unlike .fe-gallery-item this keeps the image's natural aspect ratio. */
.fe-photo-feature {
    margin: 0 auto;
    padding: 0.75rem;
    max-width: 1140px;
}

    .fe-photo-feature img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .fe-photo-feature figcaption {
        font-size: 0.95rem;
        color: var(--fe-ink-soft);
        padding: 1rem 0.5rem 0.25rem;
        text-align: center;
    }

/* ---------- About page ---------- */

.fe-about-hero {
    background-image: linear-gradient(rgba(39, 57, 77, 0.55), rgba(0, 92, 125, 0.5)), url("/img/about/About-Hero-1920.jpg");
    background-image: linear-gradient(rgba(39, 57, 77, 0.55), rgba(0, 92, 125, 0.5)), image-set(url("/img/about/About-Hero-1920.webp") type("image/webp"), url("/img/about/About-Hero-1920.jpg") type("image/jpeg"));
    background-size: cover;
    background-position: center 30%;
    padding: 10rem 0 9rem;
}

/* Photo heroes: lift the text off busy image backgrounds */
.fe-about-hero h1,
.fe-about-hero p,
.fe-ffl-hero h1 {
    text-shadow: 0 2px 14px rgba(19, 29, 40, 0.55);
}

.fe-hero p.fe-hero-tagline {
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--fe-white);
}

.fe-ffl-hero {
    background-image: linear-gradient(rgba(39, 57, 77, 0.6), rgba(0, 92, 125, 0.55)), url("/img/campaign/Founders-Marquee-1920.jpg");
    background-image: linear-gradient(rgba(39, 57, 77, 0.6), rgba(0, 92, 125, 0.55)), image-set(url("/img/campaign/Founders-Marquee-1920.webp") type("image/webp"), url("/img/campaign/Founders-Marquee-1920.jpg") type("image/jpeg"));
    background-size: cover;
    background-position: center 35%;
    padding: 6rem 0 5rem;
}

.fe-about-photo-wrap {
    display: block;
    height: 100%;
}

.fe-about-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--fe-radius);
    box-shadow: var(--fe-shadow);
}

/* ---------- Founder year badges ---------- */

.fe-year-badge {
    display: inline-block;
    background: var(--fe-sky-tint);
    border: 1px solid var(--fe-glass-border);
    color: var(--fe-teal-dark);
    border-radius: 999px;
    padding: 0.2rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    margin: 0 0.35rem 0.35rem 0;
}

    .fe-year-badge:hover,
    .fe-year-badge:focus-visible {
        background: var(--fe-teal);
        color: var(--fe-white);
    }

.fe-web-badge {
    display: inline-block;
    background: var(--fe-white);
    border: 1px solid rgba(0, 117, 158, 0.35);
    color: var(--fe-teal-dark);
    border-radius: 999px;
    padding: 0.2rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    margin: 0 0.35rem 0.35rem 0;
}

    .fe-web-badge:hover,
    .fe-web-badge:focus-visible {
        background: var(--fe-teal-dark);
        color: var(--fe-white);
    }

    .fe-web-badge i {
        margin-right: 0.4rem;
    }

/* ---------- Timeline table ---------- */

.fe-timeline-wrap {
    max-width: 44rem;
}

/* ---------- Name table (yearly lists / campaign page) ---------- */

.fe-tablewrap {
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid var(--fe-line);
    border-radius: var(--fe-radius);
    background: var(--fe-white);
    box-shadow: var(--fe-shadow);
}

.fe-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    margin-bottom: 0;
}

    .fe-table th {
        background: var(--fe-sky-tint);
        color: var(--fe-navy);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-size: 0.78rem;
        padding: 0.75rem 1rem;
        text-align: left;
    }

    .fe-table td {
        padding: 0.6rem 1rem;
        border-top: 1px solid var(--fe-line);
        vertical-align: top;
    }

/* ---------- Blog ---------- */

.fe-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--fe-glass);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid var(--fe-glass-border);
    border-radius: var(--fe-radius);
    overflow: hidden;
    box-shadow: var(--fe-shadow);
}

    .fe-blog-card img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

.fe-blog-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fe-blog-card-title {
    font-size: 1.35rem;
    margin-bottom: 0;
}

    .fe-blog-card-title a {
        color: var(--fe-navy);
        text-decoration: none;
    }

        .fe-blog-card-title a:hover,
        .fe-blog-card-title a:focus-visible {
            color: var(--fe-teal);
            text-decoration: underline;
        }

.fe-blog-date {
    font-size: 0.82rem;
    color: var(--fe-ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fe-post-hero {
    width: 100%;
    max-height: 26rem;
    object-fit: cover;
    border-radius: var(--fe-radius);
    box-shadow: var(--fe-shadow);
}

.fe-post-body {
    max-width: 46rem;
}

    .fe-post-body img {
        border-radius: var(--fe-radius);
        margin: 1rem 0;
    }

    .fe-post-body iframe {
        width: 100%;
        aspect-ratio: 16 / 9;
        border: 0;
        border-radius: var(--fe-radius);
    }

    .fe-post-body h2,
    .fe-post-body h3 {
        margin-top: 2rem;
    }

/* ---------- Contact / forms ---------- */

.fe-contact-card {
    max-width: 52rem;
}

.fe-contact .form-control {
    border-radius: 10px;
    border-color: var(--fe-line);
}

    .fe-contact .form-control:focus {
        border-color: var(--fe-teal);
        box-shadow: 0 0 0 0.2rem rgba(0, 117, 158, 0.15);
    }

    /* Invalid fields keep their error colour on focus (the teal rule above would win otherwise) */
    .fe-contact .form-control.is-invalid:focus {
        border-color: var(--bs-form-invalid-border-color);
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
    }

    /* The consent sentence stays its normal colour when invalid; the red checkbox + feedback line carry the error */
    .fe-contact .form-check-input.is-invalid ~ .form-check-label {
        color: inherit;
    }

/* Sent state: crossfade the form out and the green tick panel in, then back (driven by .fe-sent in f-entrepreneur.js);
   the panel overlays the form so the card keeps its height */
.fe-form-wrap {
    position: relative;
}

    .fe-form-wrap .fe-form-success {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        visibility: hidden;
        opacity: 0;
        outline: none;
        transition: opacity 0.4s ease, visibility 0s linear 0.4s;
    }

    .fe-form-wrap.fe-sent .fe-form-success {
        visibility: visible;
        opacity: 1;
        transition: opacity 0.4s ease;
    }

    .fe-form-wrap #newsletterForm {
        transition: opacity 0.4s ease, visibility 0s linear 0.4s;
    }

    .fe-form-wrap.fe-sent #newsletterForm {
        visibility: hidden;
        opacity: 0;
    }

.fe-form-success i {
    font-size: 5.5rem;
    color: #37d51f;
    margin-bottom: 1.25rem;
    transform: scale(0.5);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fe-sent .fe-form-success i {
    transform: scale(1);
}

.fe-form-success-title {
    font-family: var(--fe-font-display);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* ---------- Footer ---------- */

.fe-footer {
    background: var(--fe-navy);
    color: var(--fe-sky-tint);
    padding: 2.5rem 0 1.5rem;
    margin-top: 4rem;
}

    .fe-footer a {
        color: var(--fe-sky);
    }

        .fe-footer a:hover,
        .fe-footer a:focus-visible {
            color: var(--fe-white);
        }

    .fe-footer :focus-visible {
        outline-color: var(--fe-sky);
    }

.fe-footer-logo {
    width: 200px;
    height: auto;
}

.fe-footer-logo-link {
    display: inline-block;
    text-decoration: none;
}

.fe-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border: 2px solid var(--fe-sky);
    border-radius: 50%;
    font-size: 1.1rem;
    text-decoration: none;
}

.fe-copyright {
    text-align: center;
    font-size: 0.82rem;
    margin: 2rem 0 0;
    color: var(--fe-sky-soft);
}

/* ---------- Reveal on scroll (progressive enhancement) ---------- */

.js .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .js .reveal.reveal-visible {
        opacity: 1;
        transform: none;
    }

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .fe-founder-card {
        transition: none;
    }

        .fe-founder-card:hover {
            transform: none;
        }

    .fe-form-wrap .fe-form-success,
    .fe-form-wrap #newsletterForm,
    .fe-form-success i {
        transition: none;
    }
}

/* ---------- Small screens ---------- */

@media (max-width: 575.98px) {
    .fe-brand-logo {
        width: 180px;
    }

    .fe-section {
        padding: 2.75rem 0;
    }

    .fe-hero {
        padding: 3rem 0 2.5rem;
    }

    .fe-about-hero {
        padding: 6rem 0 5rem;
    }
}

/* ---------- Print / reader friendliness ---------- */

@media print {
    .fe-navbar,
    .fe-footer,
    .skip-link {
        display: none;
    }

    body {
        padding-top: 0;
        background: #fff;
    }
}
