/* ==============================================================================================
   Laservision Graphics - modern responsive stylesheet (2026 redesign)

   Design language:
   - Clean white "paper" surfaces on a light gray page - like sheets coming off the press.
   - CMYK brand accents taken from the logo (cyan / magenta / yellow / key black),
     used in the top stripe, service cards, buttons and headings.
   - No frameworks and no JavaScript: the mobile menu is a pure CSS checkbox toggle,
     the dropdowns are pure CSS hover/focus menus.
   - Everything is responsive: grid columns collapse, the map and photos scale,
     and the navigation folds into a hamburger below 920px.
   ============================================================================================== */

/* ----- Brand palette and shared values -------------------------------------------------- */
:root {
    --ink-cyan:    #00AEEF;
    --ink-magenta: #EC008C;
    --ink-yellow:  #FFD400;
    --ink-black:   #1D1D1F;

    --paper:       #FFFFFF;
    --page-bg:     #F4F5F7;
    --text:        #2B2B2E;
    --text-soft:   #6A6A70;
    --line:        #E4E5E9;

    --radius:      10px;
    --shadow:      0 1px 3px rgba(0, 0, 0, .07), 0 8px 24px rgba(0, 0, 0, .05);
    --content-width: 1100px;
}

/* ----- Reset / base ---------------------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--page-bg);
}

/* Display font for headings and buttons ("Outfit", loaded in Site.master).
   Falls back to the body stack when the font CDN is unreachable. */
h1, h2, h3, .btn, .brand-name strong {
    font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
}

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

a { color: var(--ink-cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

/* The CMYK stripe used on top of the header and the footer. */
.cmyk-stripe {
    height: 5px;
    background: linear-gradient(90deg,
        var(--ink-cyan)    0 25%,
        var(--ink-magenta) 25% 50%,
        var(--ink-yellow)  50% 75%,
        var(--ink-black)   75% 100%);
}

/* Shared centered wrapper. */
.wrap { max-width: var(--content-width); margin: 0 auto; padding: 0 20px; }

/* ==========================================================================================
   HEADER
   ========================================================================================== */

/* Thin dark bar with address and phone above the main header. */
.topbar {
    background: var(--ink-black);
    color: #C9C9CE;
    font-size: 13px;
}
.topbar .wrap {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 6px;
    padding-bottom: 6px;
    flex-wrap: wrap;
}
.topbar a { color: #FFFFFF; white-space: nowrap; }

/* White main header holding the brand and the navigation. Sticky so the menu
   stays reachable on long pages. */
.site-header {
    background: var(--paper);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-main {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 10px 20px;
}

/* Brand: logo image plus two-line wordmark. */
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 56px; height: 57px; }
.brand-name { line-height: 1.15; }
.brand-name strong {
    display: block;
    font-size: 22px;
    letter-spacing: .5px;
    color: var(--ink-black);
}
.brand-name span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ink-magenta);
}
.brand:hover { text-decoration: none; }

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

/* The checkbox that drives the mobile hamburger (visually hidden everywhere). */
.nav-toggle-box { position: absolute; opacity: 0; pointer-events: none; }

/* Hamburger button - only visible on small screens (see media query). */
.nav-toggle {
    display: none;
    margin-left: auto;
    cursor: pointer;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    margin: 4px 0;
    border-radius: 2px;
    background: var(--ink-black);
}

.main-nav { margin-left: auto; }
.main-nav > ul {
    display: flex;
    gap: 2px;
    list-style: none;
    align-items: center;
}
.main-nav a {
    display: block;
    padding: 10px 14px;
    color: var(--ink-black);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
}
.main-nav a:hover { background: var(--page-bg); text-decoration: none; }

/* Dropdown menus (Services, UCDA Forms). Pure CSS: open on hover or keyboard focus. */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " \25BE"; font-size: 11px; color: var(--text-soft); }
.has-dropdown > ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 3px solid var(--ink-magenta);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    list-style: none;
    padding: 6px;
    display: none;
    max-height: 70vh;
    overflow: auto;
}
.has-dropdown:hover > ul,
.has-dropdown:focus-within > ul { display: block; }
.has-dropdown > ul a { padding: 8px 12px; font-weight: 500; }

/* ==========================================================================================
   HERO (home page)
   ========================================================================================== */
/* The hero re-uses the banner artwork of the old site (bg_head_middle7.jpg -
   the exact image the 2016 header displayed), under a dark overlay so the
   white headline stays readable. The soft gradient artwork upscales cleanly. */
.hero {
    background:
        linear-gradient(rgba(18, 16, 34, .55), rgba(18, 16, 34, .72)),
        url(../img/bg_head_middle7.jpg) center / cover no-repeat;
    border-bottom: 1px solid var(--line);
}
.hero-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 72px 20px 80px;
    text-align: center;
}
.hero-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-yellow);
    margin-bottom: 14px;
}
.hero h1 {
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.hero-sub {
    max-width: 640px;
    margin: 0 auto 28px;
    font-size: 18px;
    color: #E3E3EC;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Gentle entrance: the hero lines rise into place one after another. */
@keyframes Hero_Rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}
.hero-inner > * { animation: Hero_Rise .6s ease-out backwards; }
.hero-inner > :nth-child(2) { animation-delay: .12s; }
.hero-inner > :nth-child(3) { animation-delay: .24s; }
.hero-inner > :nth-child(4) { animation-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
    .hero-inner > * { animation: none; }
}

/* On the dark hero photo the ghost button must be white instead of black. */
.hero .btn-ghost { border-color: #FFFFFF; color: #FFFFFF; }
.hero .btn-ghost:hover { background: #FFFFFF; color: var(--ink-black); }

/* ----- Buttons ---------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
    background: linear-gradient(120deg, var(--ink-magenta), #9C27B0);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(236, 0, 140, .35);
}
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 6px 18px rgba(236, 0, 140, .45); }
.btn-ghost { border-color: var(--ink-black); color: var(--ink-black); }
.btn-ghost:hover { background: var(--ink-black); color: #FFFFFF; }

/* ==========================================================================================
   SECTIONS (home page)
   ========================================================================================== */
.section { max-width: var(--content-width); margin: 0 auto; padding: 56px 20px; }
.section-title {
    font-size: 30px;
    color: var(--ink-black);
    text-align: center;
    margin-bottom: 8px;
}
/* Small CMYK bar under every section title - the brand signature. */
.section-title::after {
    content: "";
    display: block;
    width: 76px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg,
        var(--ink-cyan)    0 25%,
        var(--ink-magenta) 25% 50%,
        var(--ink-yellow)  50% 75%,
        var(--ink-black)   75% 100%);
}
.section-sub {
    text-align: center;
    color: var(--text-soft);
    max-width: 620px;
    margin: 0 auto 36px;
}

/* Service cards: responsive grid, top border cycling through the CMYK inks. */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 18px;
    list-style: none;
}
.service-card {
    display: block;
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 4px solid var(--ink-cyan);
    border-radius: var(--radius);
    padding: 20px 18px;
    box-shadow: var(--shadow);
    color: var(--text);
    transition: transform .12s ease, box-shadow .12s ease;
}
.service-card:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .10), 0 14px 32px rgba(0, 0, 0, .08);
}
.service-card h3 { font-size: 17px; color: var(--ink-black); margin-bottom: 6px; }
.service-card p { font-size: 14px; color: var(--text-soft); }

/* Little icon badge on every card, tinted with the card's accent colour. */
.service-card .card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 12px;
    background: rgba(0, 174, 239, .12);
}
.service-card .card-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--ink-cyan);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Cycle the CMYK accent colour over the cards (top border + icon badge). */
.service-grid > .service-card:nth-child(4n+2) { border-top-color: var(--ink-magenta); }
.service-grid > .service-card:nth-child(4n+2) .card-icon { background: rgba(236, 0, 140, .10); }
.service-grid > .service-card:nth-child(4n+2) .card-icon svg { stroke: var(--ink-magenta); }
.service-grid > .service-card:nth-child(4n+3) { border-top-color: var(--ink-yellow); }
.service-grid > .service-card:nth-child(4n+3) .card-icon { background: rgba(255, 212, 0, .22); }
.service-grid > .service-card:nth-child(4n+3) .card-icon svg { stroke: #C7A500; }
.service-grid > .service-card:nth-child(4n+4) { border-top-color: var(--ink-black); }
.service-grid > .service-card:nth-child(4n+4) .card-icon { background: rgba(29, 29, 31, .08); }
.service-grid > .service-card:nth-child(4n+4) .card-icon svg { stroke: var(--ink-black); }

/* Two-column "about" strip on the home page. */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-strip h2 { font-size: 28px; color: var(--ink-black); margin-bottom: 14px; }
.about-strip p { margin-bottom: 12px; }
.about-photo {
    width: 100%;
    aspect-ratio: 900 / 444;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: url(../img/crnrbldgpartfdlvg.jpg) center / cover no-repeat;
}

/* Dark call-to-action strip with the phone number - backed by another banner
   image from the old site (the purple wave), dimmed to keep the text readable. */
.cta-strip {
    background:
        linear-gradient(rgba(24, 18, 36, .82), rgba(24, 18, 36, .88)),
        url(../img/bg_head_middle3.jpg) center / cover no-repeat;
    color: #FFFFFF;
}
.cta-strip .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}
.cta-strip h2 { font-size: 26px; }
.cta-strip p { color: #B9B9BF; }
.cta-strip a.btn-primary { flex-shrink: 0; }

/* ==========================================================================================
   INNER PAGES (services, about, contact, UCDA)
   ========================================================================================== */

/* Every existing service page wraps its text in <div class="content"> - style it as a
   white "sheet of paper" card so the old pages look modern without touching them. */
.content,
.main-subcontent {
    max-width: 960px;
    margin: 36px auto;
    padding: 36px 40px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;   /* contains floated pictures */
}
.content h1 {
    font-size: 30px;
    line-height: 1.2;
    color: var(--ink-black);
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 3px solid var(--ink-magenta);
}
.content h2 { font-size: 22px; color: var(--ink-black); margin: 18px 0 8px; }
.content p { margin-bottom: 8px; }
.content ul { margin: 8px 0 8px 24px; }
.content li { margin-bottom: 4px; }

/* ----- Service page banners ---------------------------------------------------------------
   Every service page opens with a colourful gradient band carrying a big line-art
   illustration of the service. Four gradient variants (sb-a..sb-d) cycle across the
   pages so neighbouring services look distinct. */
.service-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    margin: 4px 0 22px;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, .14) 0 60px, transparent 61px),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, .10) 0 80px, transparent 81px),
        linear-gradient(120deg, var(--ink-cyan), var(--ink-magenta));
}
.service-banner.sb-b {
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, .14) 0 60px, transparent 61px),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, .10) 0 80px, transparent 81px),
        linear-gradient(120deg, var(--ink-magenta), #6A1B9A);
}
.service-banner.sb-c {
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, .14) 0 60px, transparent 61px),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, .10) 0 80px, transparent 81px),
        linear-gradient(120deg, #00897B, var(--ink-cyan));
}
.service-banner.sb-d {
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, .14) 0 60px, transparent 61px),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, .10) 0 80px, transparent 81px),
        linear-gradient(120deg, #283593, var(--ink-cyan));
}
.service-banner svg {
    width: 96px;
    height: 96px;
    stroke: #FFFFFF;
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .25));
}

/* Breadcrumbs (kept from the old pages, restyled). */
.header-breadcrumbs { margin-bottom: 14px; }
.header-breadcrumbs ul { list-style: none; display: flex; flex-wrap: wrap; }
.header-breadcrumbs li { font-size: 13px; color: var(--text-soft); }
.header-breadcrumbs li + li::before { content: "\203A"; margin: 0 8px; color: var(--text-soft); }
.header-breadcrumbs a { color: var(--text-soft); }

/* ----- Magazine cover gallery -------------------------------------------------------------
   Real covers of magazines Laservision produced (taken from the lvgweb archive).
   The covers sit slightly tilted like a magazine rack and straighten on hover. */
.magazine-rack {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 26px;
    margin: 26px 0;
    list-style: none;
}
.magazine-cover {
    display: block;
    background: var(--paper);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    transform: rotate(-1.5deg);
    transition: transform .15s ease, box-shadow .15s ease;
}
.magazine-rack .magazine-cover:nth-child(even) { transform: rotate(1.5deg); }
/* The hover rule must be AT LEAST as specific as the nth-child(even) tilt rule
   above (and come after it), otherwise even-numbered covers keep their tilt
   and never move on hover. */
.magazine-rack .magazine-cover:hover,
.magazine-cover:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
    z-index: 2;
    position: relative;
}
.magazine-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 17 / 22;     /* letter-format magazine cover */
    object-fit: cover;
}
.magazine-cover figcaption {
    padding: 10px 12px 12px;
    border-top: 3px solid var(--ink-cyan);
}
.magazine-rack .magazine-cover:nth-child(4n+2) figcaption { border-top-color: var(--ink-magenta); }
.magazine-rack .magazine-cover:nth-child(4n+3) figcaption { border-top-color: var(--ink-yellow); }
.magazine-rack .magazine-cover:nth-child(4n+4) figcaption { border-top-color: var(--ink-black); }
.magazine-cover figcaption strong { display: block; font-size: 15px; color: var(--ink-black); }
.magazine-cover figcaption span { font-size: 12.5px; color: var(--text-soft); }

/* Colourful band that hosts the publications strip on the home page. */
.publications-strip {
    background:
        radial-gradient(circle at 8% 15%, rgba(0, 174, 239, .10) 0 160px, transparent 161px),
        radial-gradient(circle at 92% 25%, rgba(236, 0, 140, .09) 0 170px, transparent 171px),
        radial-gradient(circle at 50% 100%, rgba(255, 212, 0, .10) 0 150px, transparent 151px),
        linear-gradient(180deg, #FFFFFF 0%, #EEF1F5 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.publications-strip .section { padding-top: 48px; padding-bottom: 48px; }
.publications-more { text-align: center; margin-top: 6px; }

/* The home strip shows exactly five covers - keep them on one balanced row
   on desktop (the generic auto-fill grid would wrap the fifth cover alone). */
.publications-strip .magazine-rack { grid-template-columns: repeat(5, minmax(0, 1fr)); }

/* Featured-work highlight box (e.g. The Ontario Dealer on the magazine page). */
.work-highlight {
    margin: 22px 0;
    padding: 20px 24px;
    background: var(--page-bg);
    border: 1px solid var(--line);
    border-left: 4px solid var(--ink-magenta);
    border-radius: var(--radius);
}
.work-highlight h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink-magenta);
    margin-bottom: 8px;
}

/* The Ontario Dealer masthead banner and cover-photo strip inside the box. */
.od-masthead {
    display: block;
    max-width: 420px;
    width: 100%;
    margin: 4px 0 12px;
    border-radius: 6px;
    box-shadow: var(--shadow);
}
.od-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-top: 14px;
}
.od-photos img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: var(--shadow);
    transition: transform .15s ease;
}
.od-photos img:hover { transform: scale(1.04); }

/* Contact page. */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin: 24px 0;
}
.contact-card {
    background: var(--page-bg);
    border: 1px solid var(--line);
    border-left: 4px solid var(--ink-cyan);
    border-radius: var(--radius);
    padding: 18px 20px;
}
.contact-card:nth-child(2) { border-left-color: var(--ink-magenta); }
.contact-card:nth-child(3) { border-left-color: var(--ink-yellow); }
.contact-card h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-soft);
    margin-bottom: 8px;
}
.contact-card strong { color: var(--ink-black); }

/* Responsive Google Map: the iframe fills its container at a fixed aspect ratio. */
.gmap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 14px 0;
}
.gmap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Building photo used on the contact page (was a fixed 900px background div). */
.picture {
    width: 100%;
    aspect-ratio: 900 / 444;
    margin-top: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: url(../img/crnrbldgpartfdlvg.jpg) center / cover no-repeat;
}

/* UCDA form page: the form preview floats to the right of the text INSIDE the
   content card (the card's overflow:hidden contains the float), and the green
   box becomes a clean accent card. */
.USED_Form_Picture {
    float: right;
    width: min(340px, 45%);
    aspect-ratio: 400 / 543;
    margin: 0 0 16px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: url(../img/BOS/Used_BoS.gif) center / contain no-repeat #FFFFFF;
}
.subcontent-unit-border-green {
    max-width: 520px;
    margin: 16px 0;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--ink-cyan);
    border-radius: var(--radius);
    background: var(--page-bg);
}
h1.green { font-size: 24px; color: var(--ink-black); }
.Custom_Question { font-weight: 600; }
.round-border-topleft, .round-border-topright { display: none; }

/* ==========================================================================================
   FOOTER
   ========================================================================================== */
.site-footer { background: var(--ink-black); color: #B9B9BF; margin-top: 56px; }
.footer-grid {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 44px 20px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    font-size: 14px;
}
.footer-grid h3 {
    color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 6px; }
.footer-grid a { color: #D9D9DE; }
.footer-bottom {
    border-top: 1px solid #333338;
    text-align: center;
    font-size: 13px;
    padding: 16px 20px;
    color: #8A8A90;
}

/* ==========================================================================================
   RESPONSIVE: fold the navigation into a hamburger menu below 920px.
   ========================================================================================== */
@media (max-width: 920px) {
    .nav-toggle { display: block; }

    /* The menu becomes a full-width panel under the header, hidden until the
       checkbox is ticked by tapping the hamburger label. */
    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--paper);
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow);
        max-height: calc(100vh - 90px);
        overflow: auto;
    }
    .nav-toggle-box:checked ~ .main-nav { display: block; }

    .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 12px 14px; }

    /* Dropdowns are always expanded inside the mobile panel - no hover needed. */
    .has-dropdown > ul {
        display: block;
        position: static;
        border: 0;
        box-shadow: none;
        padding-left: 16px;
        max-height: none;
    }
    .has-dropdown > a::after { content: ""; }

    .about-strip { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .publications-strip .magazine-rack { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .content, .main-subcontent { padding: 24px 20px; margin: 20px auto; }
    .USED_Form_Picture { float: none; width: 100%; margin: 20px 0; }
    .topbar .wrap { justify-content: center; }
}
