/* ════════════════════════════════════════
   ΛΕΥΚΗ ΣΕΛΙΔΑ — main.css
════════════════════════════════════════ */

/* ── Fonts ── */
@font-face {
    font-family: 'GBMolyviXarti';
    src: url('../fonts/GBMolyviXarti-u431ez.otf') format('opentype');
    font-weight: normal;
    font-display: block;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

/* ── Tokens ── */
:root {
    --black:    #111111;
    --white:    #ffffff;
    --yellow:   #ffe500;
    --blue:     #2b59e0;
    --gray-bg:  #f2f2f2;
    --gray-mid: #8a8a8a;

    --font-hand: 'GBMolyviXarti', cursive;
    --font-body: 'Manrope', sans-serif;

    --content-w: 720px;
    --header-h:  110px;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 100;
    background: var(--white);
}
.header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 clamp(1.4rem, 4vw, 4rem);
    position: relative;
}
.site-logo { flex-shrink: 0; line-height: 0; }
.site-logo__img {
    height: clamp(52px, 6vw, 78px);
    width: auto;
    mix-blend-mode: multiply;
}
.site-tagline {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #555;
    white-space: nowrap;
    pointer-events: none;
}
.burger-btn {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.4rem 0.2rem;
    flex-shrink: 0;
}
.burger-icon {
    width: 74px;
    height: auto;
    clip-path: inset(0 100% 0 0);
    animation: burger-draw 1.3s var(--ease-out) 0.4s forwards;
}
@keyframes burger-draw { to { clip-path: inset(0 0% 0 0); } }
.burger-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--black);
}

/* ════════════════════════════════════════
   NAV OVERLAY (right panel, torn bottom)
════════════════════════════════════════ */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
}
.nav-overlay.is-open { pointer-events: auto; }
.nav-backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    cursor: pointer;
}
.nav-panel {
    position: absolute;
    top: 0; right: 0;
    width: clamp(280px, 30vw, 420px);
    padding: clamp(1.6rem, 3vw, 2.4rem) clamp(2rem, 4vw, 3.2rem) 90px;
    background: var(--gray-bg);
    pointer-events: auto;
    will-change: transform;
    box-shadow: -12px 0 40px rgba(0,0,0,0.08);
}
.nav-close {
    display: flex;
    justify-content: flex-start;
    margin-bottom: clamp(1.4rem, 4vh, 2.6rem);
    padding: 0.2rem;
}
.nav-close svg { width: 30px; height: 30px; }
.nav-menu__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1.8vh, 1.1rem);
    padding-left: clamp(1rem, 3vw, 2.4rem);
}
.nav-menu__list li { opacity: 0; }
.nav-menu__list a {
    font-family: var(--font-hand);
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    line-height: 1.15;
    display: inline-block;
    transition: opacity 0.15s;
}
.nav-menu__list a:hover { opacity: 0.4; }
.nav-torn-paper {
    position: absolute;
    bottom: -34px; left: 0; right: 0;
    height: 35px;
    pointer-events: none;
}
.nav-torn-paper svg { width: 100%; height: 100%; display: block; }

/* ════════════════════════════════════════
   LAYOUT — sections
════════════════════════════════════════ */
.site-main { padding-top: var(--header-h); }

.section {
    display: grid;
    grid-template-columns: 1fr minmax(0, var(--content-w)) 1fr;
    grid-template-areas: "left content right";
    column-gap: clamp(1.5rem, 4vw, 4rem);
    padding: clamp(5rem, 12vh, 9rem) clamp(1.4rem, 4vw, 4rem);
    position: relative;
}
.section-content { grid-area: content; min-width: 0; }

/* centered variant (testimonials, partners, blog, contact) */
.section--center { grid-template-columns: 1fr; grid-template-areas: "content"; }
.section--center .section-content { max-width: 1080px; width: 100%; margin: 0 auto; }

/* ── Sticky notes ── */
.sticky-note {
    grid-row: 1;
    width: clamp(130px, 15vw, 210px);
    aspect-ratio: 1;
    background-image: url('../images/note.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-hand);
    font-size: clamp(1.3rem, 2vw, 1.9rem);
    text-align: center;
    padding: 14px;
    opacity: 0; /* GSAP */
    align-self: start;
    margin-top: clamp(3rem, 9vh, 7rem);
}
.sticky-note--left  { grid-area: left;  justify-self: end; }
.sticky-note--right { grid-area: right; justify-self: start; }

/* ── Section titles ── */
/* sans titles (About, Services) */
.section-title {
    font-family: var(--font-body);
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: clamp(1.4rem, 3vh, 2rem);
}
/* handwritten centered titles (Testimonials, Συνεργάτες, Contact)
   Centering is automatic: the wrap is text-align center and the correction
   span is absolutely positioned (out of flow), so ANY text stays centered
   without manual offsets — safe for WordPress-edited content. */
.hand-title-wrap { text-align: center; margin-bottom: 0; }
.hand-title {
    font-family: var(--font-hand);
    font-size: clamp(3rem, 7vw, 5.2rem);
    line-height: 1.3;
    text-align: center;
    position: relative;
    /* display:table + auto margins = shrink-to-fit που αυτοκεντράρεται,
       με ή χωρίς wrapper — ασφαλές για WordPress content */
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.2em;
}
/* corrections inside hand titles: small, hanging bottom-right of the
   struck word, out of the layout flow */
.hand-title .annotation-correction {
    position: absolute;
    left: 100%;
    bottom: -0.28em;
    margin-left: 0.1em;
    font-size: 0.3em;
    transform: rotate(-4deg);
}
/* scratchy underline below hand titles — generated SVG (JS), black marker */
.hand-title .title-underline-svg {
    position: absolute;
    left: 50%;
    bottom: -0.18em;
    transform: translateX(-50%) rotate(-1.2deg);
    overflow: visible;
    pointer-events: none;
}
.hand-title .title-underline-svg path {
    fill: none;
    stroke: var(--black);
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* subtitle sits tight under the title (per design), the light line tighter */
.center-sub {
    text-align: center;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.center-sub--light {
    font-weight: 400;
    font-size: 0.74rem;
    color: #777;
    margin-top: 0;
}
/* the content below the title block keeps its distance */
.section--center .marquee { margin-top: clamp(1.8rem, 4vh, 3rem); }

/* ════════════════════════════════════════
   PAGE LOADER
════════════════════════════════════════ */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
#page-loader video {
    width: min(70vw, 520px);
    height: auto;
}

/* ════════════════════════════════════════
   INTRO — scroll-driven video (pinned)
════════════════════════════════════════ */
.intro-section {
    position: relative;
    height: calc(100vh - var(--header-h));
    overflow: hidden;
    background: var(--white);
}
.intro-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.intro-scroll-hint {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #777;
    pointer-events: none;
}
.intro-scroll-hint svg {
    width: 26px; height: 26px;
    stroke: #777;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: bounce 2.2s ease-in-out infinite;
}

/* ════════════════════════════════════════
   HERO — all handwritten
════════════════════════════════════════ */
.section-hero { min-height: calc(100vh - var(--header-h)); align-content: center; }
.hero-line {
    font-family: var(--font-hand);
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    line-height: 1.55;
    margin-bottom: 1.6rem;
}
.hero-par {
    font-family: var(--font-hand);
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    line-height: 1.65;
    margin-bottom: 1.8rem;
    max-width: 62ch;
}

/* ── Yellow highlight CTA (marker style) ── */
.highlight-cta {
    display: inline-block;
    opacity: 0;                 /* GSAP fades it in at the END of the section timeline */
    transform: translateY(14px);
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 600;
    line-height: 1.2;
    background-image: linear-gradient(var(--yellow), var(--yellow));
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: 0 0;
    padding: 0.15em 0.35em;
    transition: background-size 0.6s var(--ease-out);
}
.highlight-cta.is-visible { background-size: 100% 100%; }
.cta-row { margin-top: clamp(2rem, 5vh, 3.2rem); }

/* ── Scroll arrow ── */
.scroll-indicator { text-align: center; margin-top: clamp(2rem, 6vh, 4rem); }
.scroll-indicator svg {
    width: 34px; height: 34px;
    stroke: var(--black);
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: inline-block;
    animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(8px); }
}

/* ════════════════════════════════════════
   ANNOTATIONS
════════════════════════════════════════ */

/* 1 ─ circle: wobbly marker ellipse generated in px space by JS
   (size + stroke-width are set per element — don't set them here) */
.annotation-circle { position: relative; white-space: nowrap; }
.annotation-circle .circle-svg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    overflow: visible;
    pointer-events: none;
}
.annotation-circle .circle-svg path {
    fill: none;
    stroke: var(--blue);
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.8;
}

/* 2 ─ underline: wavy marker line generated in px space by JS */
.annotation-underline { position: relative; white-space: nowrap; }
.annotation-underline .underline-svg {
    position: absolute;
    left: 50%;
    bottom: -0.32em;
    transform: translateX(-50%);
    overflow: visible;
    pointer-events: none;
}
.annotation-underline .underline-svg path {
    fill: none;
    stroke: var(--blue);
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.8;
}

/* 3 ─ handwritten font switch (blue) */
.annotation-font {
    font-family: var(--font-hand);
    font-size: 1.44em;
    color: var(--blue);
    line-height: 1;
    white-space: nowrap;
}

/* 4 ─ strikethrough + correction */
.annotation-strike { position: relative; white-space: nowrap; }
.strike-target { position: relative; }
.strike-target .strike-svg {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    overflow: visible;
    pointer-events: none;
}
.annotation-strike .strike-svg {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    overflow: visible;
    pointer-events: none;
}
.annotation-strike .strike-svg path {
    fill: none;
    stroke: var(--blue);
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.75;   /* διακριτική διαγραφή */
}
.annotation-correction {
    font-family: var(--font-hand);
    color: var(--blue);
    font-size: 1.05em;
    line-height: 1;
    display: inline-block;
    margin-left: 0.3em;
    opacity: 0;
    transform: translateY(0.25em) rotate(-2deg);
    white-space: nowrap;
}

/* ════════════════════════════════════════
   READING ANIMATION
   words: rise from below + fade
   letters (.char): clipped rise = "γράφεται"
════════════════════════════════════════ */
/* hidden until JS splits them after fonts load (no flash of unsplit text) */
.read-animate, .fade-in, .hero-line, .section-title,
.hand-title, .center-sub, .highlight-cta {
    visibility: hidden;
}
.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.55em);
    will-change: transform, opacity;
}
.char-word {
    display: inline-block;
    white-space: nowrap; /* η λέξη δεν σπάει ποτέ στη μέση */
}
.char {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}
.char-inner {
    display: inline-block;
    transform: translateY(115%);
    will-change: transform;
}

/* ════════════════════════════════════════
   SERVICES accordion
════════════════════════════════════════ */
.services-list { list-style: none; margin-top: clamp(1.6rem, 4vh, 2.6rem); }
.service-item { border-bottom: 1px solid rgba(0,0,0,0.25); }
.service-item:first-child { border-top: 1px solid rgba(0,0,0,0.25); }
.service-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 0.2rem;
    font-size: clamp(1.25rem, 2.2vw, 1.7rem);
    font-weight: 500;
    text-align: left;
}
.service-toggle .icon {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.35s var(--ease-out);
    flex-shrink: 0;
}
.service-item.is-open .service-toggle .icon { transform: rotate(45deg); }
.service-body { overflow: hidden; max-height: 0; transition: max-height 0.45s var(--ease-out); }
.service-body-inner { padding: 0.2rem 0.2rem 1.4rem; font-size: 0.95rem; color: #333; max-width: 60ch; }

/* ════════════════════════════════════════
   PHILOSOPHY — hand-drawn checklist
════════════════════════════════════════ */
.philosophy-list {
    list-style: none;
    margin: 1.1rem 0 1.6rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.philosophy-list li {
    --bullet-o: 0;   /* GSAP tweens this to 1 with the words */
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}
/* pen-dash bullet in the hand font */
.philosophy-list li::before {
    content: '—';
    position: absolute;
    left: 0.2rem;
    top: 0;
    font-family: var(--font-hand);
    color: var(--blue);
    font-size: 1.1em;
    transform: rotate(-4deg);
    opacity: var(--bullet-o, 0);
}
.philosophy-result {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    margin-top: 1.6rem;
    max-width: 54ch;
}
.philosophy-result__arrow {
    font-family: var(--font-hand);
    font-size: 1.9em;
    line-height: 1;
    color: var(--blue);
    flex-shrink: 0;
    transform: translateY(0.1em) rotate(-3deg);
}
.philosophy-result p {
    font-size: 1.05rem;
    line-height: 1.65;
}
.philosophy-result strong {
    font-weight: 700;
    white-space: nowrap;
}

/* ── full-bleed utility (breaks out of content column) ── */
.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* ════════════════════════════════════════
   TESTIMONIALS — full-width auto-rotating
════════════════════════════════════════ */
.testimonials-track {
    padding: 0.5rem 0 1.4rem;
    animation-duration: 45s;
}
.testimonial-card {
    background: var(--yellow);
    padding: clamp(1.6rem, 3vw, 2.4rem);
    width: clamp(300px, 32vw, 420px);
    flex-shrink: 0;
    box-shadow: 3px 5px 14px rgba(0,0,0,0.12);
    user-select: none;
}
.testimonial-card header {
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 0.9rem;
}
.testimonial-card p { font-size: 0.9rem; line-height: 1.65; }

/* ════════════════════════════════════════
   MARQUEE (partners + testimonials)
════════════════════════════════════════ */
.marquee { overflow: hidden; }
.marquee-track {
    display: flex;
    gap: clamp(3rem, 7vw, 6rem);
    align-items: stretch;
    width: max-content;
    animation: marquee 26s linear infinite;
}
.testimonials-track { gap: clamp(1.2rem, 2.5vw, 2rem); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.partner-logo {
    height: clamp(70px, 9vw, 120px);
    width: auto;
    flex-shrink: 0;
}
.partner-logo--placeholder {
    height: clamp(70px, 9vw, 120px);
    aspect-ratio: 1;
    background: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: #666;
}

/* ════════════════════════════════════════
   BLOG — paper notes pinned with tape
════════════════════════════════════════ */
.blog-title-wrap { text-align: center; margin-bottom: 0.6rem; }

.blog-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.8rem, 4vw, 3rem) clamp(1.4rem, 3vw, 2.4rem);
    margin-top: clamp(2.5rem, 6vh, 4rem);
    align-items: start;
}

.blog-note {
    --tilt: 0deg;
    position: relative;
    background:
        /* notebook ruling: line every 1.9em, transparent in between */
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent calc(1.9em - 1px),
            rgba(43, 89, 224, 0.14) calc(1.9em - 1px),
            rgba(43, 89, 224, 0.14) 1.9em
        ),
        #fdfdfb;
    background-position: 0 1.2em;
    padding: 2.2em 1.6em 1.7em;
    transform: rotate(var(--tilt));
    box-shadow:
        0 1px 2px rgba(0,0,0,0.08),
        0 8px 22px rgba(0,0,0,0.13);
    display: flex;
    flex-direction: column;
}
.blog-note:hover {
    box-shadow:
        0 2px 4px rgba(0,0,0,0.09),
        0 14px 30px rgba(0,0,0,0.17);
}

/* the tape strip at the top */
.blog-note__tape {
    position: absolute;
    top: -12px;
    left: 50%;
    width: 92px;
    height: 26px;
    transform: translateX(-50%) rotate(calc(var(--tilt) * -2 - 1deg));
    background: rgba(255, 229, 0, 0.75);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    /* slightly ragged tape ends */
    clip-path: polygon(
        0 8%, 4% 0, 96% 4%, 100% 12%,
        99% 88%, 95% 100%, 5% 96%, 1% 90%
    );
}

.blog-note__title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.9em;    /* sits on the ruling */
    margin-bottom: 0;
}
.blog-note__title a { transition: opacity 0.15s; }
.blog-note__title a:hover { opacity: 0.55; }
.blog-note__excerpt {
    font-size: 0.86rem;
    line-height: 1.9em;    /* every line lands on a rule */
    color: #333;
    margin: 0 0 0.6em;
    flex: 1;
}
.blog-note__cta {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.9em;
    color: var(--blue);
    align-self: flex-start;
    transition: opacity 0.15s;
}
.blog-note__cta:hover { opacity: 0.55; }
.blog-note__date {
    position: absolute;
    top: 0.55em;
    right: 1.2em;
    font-size: 0.68rem;
    color: #999;
    letter-spacing: 0.04em;
}

/* tablet: 2 columns */
@media (max-width: 1100px) {
    .blog-notes { grid-template-columns: repeat(2, 1fr); }
}
/* mobile: 1 column */
@media (max-width: 640px) {
    .blog-notes { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-inner { text-align: center; }
.contact-text {
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
    font-weight: 500;
    line-height: 1.5;
    max-width: 24em;
    margin: 0 auto clamp(1.6rem, 4vh, 2.4rem);
}
.contact-email {
    display: inline-block;
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
    font-weight: 500;
    margin-bottom: clamp(3rem, 8vh, 5rem);
    transition: opacity 0.15s;
}
.contact-email:hover { opacity: 0.5; }
.newsletter-label { font-weight: 600; font-size: 1.05rem; margin-bottom: 0.7rem; }
.newsletter-form {
    display: flex;
    align-items: center;
    background: var(--yellow);
    max-width: 360px;
    margin: 0 auto;
    padding: 0.25rem 0.4rem 0.25rem 1rem;
}
.newsletter-form input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}
.newsletter-form input::placeholder { color: #777; }
.newsletter-form button {
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.5rem 0.7rem;
}
.footer-bottom {
    margin-top: clamp(4rem, 10vh, 6.5rem);
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 6vw, 5rem);
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: #333;
}
.footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-bottom a:hover { opacity: 0.5; }
.footer-bottom svg { width: 20px; height: 20px; fill: var(--black); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1000px) {
    :root { --header-h: 96px; }

    /* Header: row1 = logo + burger, row2 = tagline under logo */
    .site-header { height: auto; min-height: var(--header-h); }
    .header-inner {
        flex-wrap: wrap;
        align-items: center;
        padding: 0.7rem clamp(1rem, 4vw, 1.5rem) 0.5rem;
    }
    .site-logo  { order: 1; flex: 1; min-width: 0; }
    .site-logo__img { height: clamp(42px, 9vw, 54px); }
    .burger-btn { order: 2; margin-left: 0; }
    .site-tagline {
        order: 3;
        position: static;
        transform: none;
        width: 100%;
        text-align: left;
        font-size: 0.62rem;
        margin-top: 0.15rem;
    }

    /* Sticky note above content */
    .section {
        grid-template-columns: 1fr;
        grid-template-areas: "left" "right" "content";
    }
    .sticky-note--left, .sticky-note--right {
        justify-self: start;
        margin: 0 0 1.4rem;
    }

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

@media (max-width: 600px) {
    .nav-panel { width: 86vw; }
    .testimonial-card { width: 84vw; }
}
