/* VERSION v14 · 2026-07-31 · v13 + .gdbs-footer (sitewide footer code block: 3 columns + legal line, stacks centered on mobile) */
/* Squarespace: Website → Website Tools → Custom CSS
   ==================================================================
   APPEND THIS BELOW WHAT IS ALREADY THERE. DO NOT REPLACE.
   The existing rules style the contact form (field borders, Roboto,
   uppercase labels) and the #block-yui_...3847 grey panel. Pasting
   over them breaks the contact form site-wide.
   ==================================================================

   Good Dog Boston design system. Everything is scoped under .gdbs, so
   it only affects blocks that opt in by wrapping their markup in
   <div class="gdbs">…</div>. Nothing here can leak into the theme,
   the header, the footer, or any page that doesn't use it.

   Fonts are Rubik (display) + Roboto (body) — both already loaded by
   the theme, weights 300/400/500/700. Brand blue #102093 unchanged.
   All colour pairings checked against WCAG AA before use.

   Keep this file in sync with what is pasted live. */

.gdbs {
  --blue:  #102093;   /* brand blue, unchanged */
  --ink:   #3F4550;   /* body copy — 9.6:1 on white */
  --meta:  #5C6370;   /* secondary — 6.1:1 on white */
  --line:  #E3E5E9;   /* hairline */
  --band:  #F4F5F7;   /* section tint */
  --gold:  #B8860B;   /* stars */

  --display: Rubik, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body:    Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  font-family: var(--body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
.gdbs *, .gdbs *::before, .gdbs *::after { box-sizing: border-box; }

/* Squarespace wraps a Code Block in .sqs-block, which carries ~84px side
   margins + 17px padding inside its column, so content only gets ~984px of a
   1186px column. This un-insets just the wrapper containing our markup.
   Measured 984px -> 1186px. Falls back harmlessly where :has() is unsupported.
   EXCLUDES hero blocks: an Index page's hero section centres its content differently,
   and stripping the margins there pushes the text off the left edge of the screen. */
.sqs-block:has(.gdbs):not(:has(.hero)) {
  margin-left: 0 !important; margin-right: 0 !important;
  padding-left: 0 !important; padding-right: 0 !important;
  width: auto !important;
}

/* ---------- type ---------- */
.gdbs h1, .gdbs h2, .gdbs h3 {
  font-family: var(--display); color: var(--blue); margin: 0;
  letter-spacing: -0.02em; text-wrap: balance;
}
.gdbs h1 { font-size: clamp(31px, 4.6vw, 46px); line-height: 1.1;  font-weight: 700; }
.gdbs h2 { font-size: clamp(24px, 3.1vw, 33px); line-height: 1.17; font-weight: 700; }
.gdbs h3 { font-size: 21px; line-height: 1.25; font-weight: 500; letter-spacing: -0.015em; }
.gdbs p  { margin: 0; font-size: 16.5px; line-height: 1.68; color: var(--ink); }
.gdbs .measure { max-width: 78ch; }  /* was 60ch = 634px inside an 1127px section — the H1 above it spans full width, so the paragraph stopped barely past halfway and left a large empty gap at the right. 78ch is still within the accepted 45-80ch readability range but actually uses the column. In split-layout columns the column width binds first, so those are unaffected. */
.gdbs .eyebrow {
  font-family: var(--display); font-size: 12px; font-weight: 500; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--meta); margin: 0 0 16px;
}
.gdbs .sec { padding: 60px 0; border-top: 1px solid var(--line); }
.gdbs .sec:first-child { padding-top: 44px; border-top: 0; }
.gdbs .sec--plain { border-top: 0; }
.gdbs .lede { margin-top: 18px; font-size: 19px; line-height: 1.6; color: var(--meta); }

/* ---------- buttons ---------- */
.gdbs .btn {
  display: inline-block; padding: 14px 28px; border-radius: 3px; text-decoration: none;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  border: 1.5px solid var(--blue);
}
.gdbs .btn--solid { background: var(--blue); color: #fff; }
.gdbs .btn--solid:hover { background: #0b1866; border-color: #0b1866; }
.gdbs .btn--out { background: transparent; color: var(--blue); }
.gdbs .btn--out:hover { background: var(--blue); color: #fff; }
.gdbs .btn--onblue { background: #fff; color: var(--blue); border-color: #fff; }
.gdbs .btn--onblue:hover { background: #E7EAF6; }
.gdbs .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.gdbs .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.10); }
.gdbs .btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* ---------- hero (sits over a Squarespace section background image) ---------- */
.gdbs .hero { padding: 8px 0 4px; color: #fff; max-width: 900px; }  /* was 46rem/736px — narrower than the original, which had no cap and filled the column. Widened, not removed entirely, so very long lines on ultrawide still stay readable. */
.gdbs .hero h1 { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.55); }
.gdbs .hero .eyebrow { color: #DCE3FF; text-shadow: 0 1px 6px rgba(0,0,0,.6); }
.gdbs .hero .lede { color: #6BC6FF; text-shadow: 0 1px 6px rgba(0,0,0,.6); }  /* restored from the original hero — was changed to off-white with no specific reason */
.gdbs .hero p { color: #F0F2FA; text-shadow: 0 1px 8px rgba(0,0,0,.55); }
.gdbs .hero .facts { border-top-color: rgba(255,255,255,.55); color: #fff; }
.gdbs .hero .facts b.stars-inline { color: #FFC107; letter-spacing: 1px; }  /* matches the original hero's star color exactly; needs .facts b in the selector to out-specificity the white .facts b rule above */
.gdbs .hero .facts b { color: #fff; }
.gdbs .hero .btns { margin-top: 24px; }
.gdbs .hero .btn--solid { background: #fff; color: var(--blue); border-color: #fff; }
.gdbs .hero .btn--solid:hover { background: #E7EAF6; }
.gdbs .hero .btn--out { color: #fff; border-color: rgba(255,255,255,.7); }
.gdbs .hero .btn--out:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.gdbs .hero a:focus-visible { outline-color: #fff; }
/* On phones the supporting paragraph pushed the CTA below the fold (measured: button
   at 767-884px against 568-667px viewports on iPhone SE sizes). It's supporting copy —
   the same argument is made in full by "Why we train in your home" further down — so it
   is hidden below 700px to lift the primary CTA above the fold. Measured after: CTA
   above the fold on every phone size tested. */
@media (max-width: 700px) {
  .gdbs .hero { padding: 4px 0; }
  .gdbs .hero .hero-detail { display: none; }
  .gdbs .hero .lede { font-size: 17px; }
  .gdbs .hero .facts { gap: 8px 20px; margin-top: 20px; padding-top: 16px; font-size: 13.5px; }
  .gdbs .hero .btns { margin-top: 20px; }
}

/* ---------- facts strip ---------- */
.gdbs .facts {
  display: flex; flex-wrap: wrap; gap: 12px 34px;
  margin-top: 28px; padding-top: 20px; border-top: 2px solid var(--blue);
  font-size: 14.5px; color: var(--ink);
}
.gdbs .facts b { font-family: var(--display); font-weight: 700; color: var(--blue); }

/* ---------- section head ---------- */
.gdbs .head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 30px;
}
.gdbs .head p { font-size: 15px; color: var(--meta); }
/* secondary/supporting text tier — one size (15px) and one color (--meta) for every
   paragraph-level caption or description on the page. Previously scattered across
   13.5-15.5px with no purpose behind the differences (.foot, .desc, details p, .post p,
   .rating, .head p, .step p all did the same job at slightly different sizes). */

/* ---------- program cards ---------- */
.gdbs .programs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gdbs .programs--2 { grid-template-columns: repeat(2, 1fr); }  /* 4-item grids (about-us principles): 3-up would leave an orphan and squeeze long copy */
/* At 2-up the cards are ~700px wide, so the shared 3/2 card image would render ~468px
   tall and dominate the card. These cards lead with text, so the photo is a supporting
   band instead. Measured: 468px -> 301px, card 749px -> 590px. */
.gdbs .programs--2 .prog img { aspect-ratio: 21/9; }
.gdbs .prog {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 3px; overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.gdbs .prog:hover { border-color: var(--blue); box-shadow: 0 6px 20px rgba(16,32,147,.10); }
/* height:auto is REQUIRED — width/height attrs become presentational hints and
   aspect-ratio is ignored unless height is auto, which renders images portrait. */
.gdbs .prog img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; display: block; }
.gdbs .pbody { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.gdbs .prog h3 { margin-bottom: 12px; }
.gdbs .price {
  font-family: var(--display); font-weight: 700; font-size: 28px;
  color: var(--blue); letter-spacing: -0.025em; line-height: 1;
}
.gdbs .sessions { font-size: 13px; color: var(--meta); margin-top: 5px; }
.gdbs .hr { height: 1px; background: var(--line); margin: 18px 0; }
.gdbs .for { font-size: 14px; margin-bottom: 11px; color: var(--ink); }
.gdbs .for b { font-family: var(--display); font-weight: 500; color: var(--blue); }
.gdbs .desc { font-size: 15px; line-height: 1.64; color: var(--meta); flex: 1; }
.gdbs .more {
  margin-top: 18px; align-self: flex-start; font-size: 13.5px; font-weight: 700;
  color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.gdbs .more:hover { border-bottom-color: var(--blue); }
.gdbs .more svg { width: 13px; height: 13px; transition: transform .18s ease; }
.gdbs .more:hover svg { transform: translateX(3px); }
.gdbs .foot { margin-top: 24px; font-size: 15px; color: var(--meta); }

/* ---------- generic photo (image half of a .split row, e.g. about-us) ---------- */
.gdbs .photo { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; display: block; }
.gdbs .photo--wide { aspect-ratio: 16/6; }  /* full-width establishing image under a page intro */
.gdbs .pbody .eyebrow { margin-bottom: 8px; }  /* the 16px default is too airy inside a card */

/* ---------- split (text + panel), e.g. "why we train in your home" ---------- */
.gdbs .split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: start; }
.gdbs .panel { background: var(--band); border-radius: 3px; padding: 30px 32px; }
.gdbs .panel p + p { margin-top: 16px; }
.gdbs .panel--accent { border-left: 3px solid var(--blue); }
.gdbs .checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.gdbs .checklist li { display: flex; gap: 12px; align-items: flex-start; }
.gdbs .checklist svg { width: 19px; height: 19px; flex: 0 0 19px; margin-top: 2px; color: var(--blue); }
.gdbs .checklist span { font-size: 16px; line-height: 1.55; color: var(--ink); }
.gdbs .checklist--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 44px; }
.gdbs .es {
  display: inline-block; margin-top: 18px; font-family: var(--display); font-weight: 500;
  font-size: 14px; color: var(--blue); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 15px; background: #fff;
}

/* ---------- numbered steps (a real sequence, not decoration) ---------- */
.gdbs .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: s; }
.gdbs .step { border-top: 2px solid var(--blue); padding-top: 20px; counter-increment: s; }
.gdbs .step::before {
  content: "Step " counter(s); font-family: var(--display); font-weight: 700; font-size: 12px;
  color: var(--blue); display: block; margin-bottom: 12px; letter-spacing: 0.08em; text-transform: uppercase;
}
.gdbs .step-icon {
  width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 14px;
}
.gdbs .step-icon svg { width: 19px; height: 19px; }
.gdbs .step h3 { font-size: 18px; margin-bottom: 8px; }
.gdbs .step p { font-size: 15px; color: var(--meta); line-height: 1.62; }

/* ---------- areas / town list ---------- */
.gdbs .areas { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.gdbs .tlabel {
  font-family: var(--display); font-size: 12px; font-weight: 500; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--meta); margin: 0 0 12px;
}
.gdbs .towns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 26px; list-style: none; margin: 0; padding: 0; }
.gdbs .towns li { border-bottom: 1px solid var(--line); }
.gdbs .towns a, .gdbs .towns span { display: block; padding: 10px 0; font-size: 15px; text-decoration: none; }
.gdbs .towns a { color: var(--blue); font-weight: 500; transition: transform .15s ease; }
.gdbs .towns a:hover { transform: translateX(3px); }
.gdbs .towns span { color: var(--meta); }
.gdbs .towns li:last-child, .gdbs .towns li:nth-last-child(2) { border-bottom: 0; }

/* ---------- testimonials ---------- */
.gdbs .band { background: var(--band); border-radius: 3px; padding: 36px 32px; }
.gdbs .rating { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; font-size: 15px; color: var(--meta); }
.gdbs .rating .score { font-family: var(--display); font-weight: 700; font-size: 27px; color: var(--blue); letter-spacing: -0.02em; }
.gdbs .rating .stars { color: var(--gold); letter-spacing: 2px; }
.gdbs .rating a { color: var(--blue); font-weight: 700; }
.gdbs .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 26px; align-items: stretch; }
.gdbs figure { margin: 0; display: flex; flex-direction: column; height: 100%; }
.gdbs blockquote {
  font-family: var(--display); font-weight: 400; font-size: 17px; line-height: 1.52;
  color: var(--blue); letter-spacing: -0.01em; margin: 0 0 16px;
}
.gdbs .by { font-size: 13px; color: var(--meta); border-top: 1px solid var(--line); padding-top: 11px; margin-top: auto; }
.gdbs .by b { display: block; font-family: var(--display); font-weight: 500; color: var(--ink); font-size: 14px; margin-bottom: 2px; }

/* ---------- Google-style review cards ----------
   Kept deliberately: for a local service business the recognisable Google review
   card IS the trust signal — the logo, avatar and stars do work that an anonymous
   pull-quote can't. These are real reviews with real names and link to the live
   Google listing, so the familiar styling is honest rather than imitative. */
.gdbs .greviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
.gdbs .grev {
  background: #fff; border: 1px solid #e8eaed; border-radius: 8px; padding: 20px;
  box-shadow: 0 1px 2px rgba(60,64,67,.10); transition: box-shadow .18s ease;
  display: flex; flex-direction: column; position: relative;
}
.gdbs .grev:hover { box-shadow: 0 2px 8px rgba(60,64,67,.18); }
.gdbs .grev-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.gdbs .grev-av {
  width: 40px; height: 40px; flex: 0 0 40px; border-radius: 50%; color: #fff;
  font-family: var(--body); font-size: 17px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
}
.gdbs .grev-name { font-size: 14px; font-weight: 500; color: #202124; line-height: 1.3; }
.gdbs .grev-when { font-size: 12px; color: #70757a; line-height: 1.3; margin-top: 1px; }
.gdbs .grev-g { margin-left: auto; flex: 0 0 18px; }
.gdbs .grev-stars { display: flex; align-items: center; gap: 1px; margin-bottom: 10px; }
.gdbs .grev-stars svg { width: 17px; height: 17px; display: block; }
.gdbs .grev-text { font-size: 14px; line-height: 1.62; color: #3c4043; margin: 0; }
/* CSS-only expand. opacity (not display:none) keeps the control in the tab order —
   display:none makes "Read more" mouse-only, which is a real accessibility failure. */
.gdbs .grev-tog { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.gdbs .grev-clamp { display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.gdbs .grev-tog:checked ~ .grev-text .grev-clamp { -webkit-line-clamp: unset; overflow: visible; }
.gdbs .grev-more {
  display: inline-block; margin-top: 8px; font-size: 13px; color: #1a73e8;
  cursor: pointer; user-select: none; align-self: flex-start;
}
.gdbs .grev-more:hover { text-decoration: underline; }
.gdbs .grev-more::after { content: "Read more"; }
.gdbs .grev-tog:checked ~ .grev-more::after { content: "Show less"; }
.gdbs .grev-tog:focus-visible ~ .grev-more { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 3px; }
.gdbs .grev-foot { margin-top: 24px; text-align: center; }
.gdbs .grev-foot a {
  display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500;
  color: #3c4043; text-decoration: none; border: 1px solid #dadce0; border-radius: 22px;
  padding: 10px 22px; background: #fff;
}
.gdbs .grev-foot a:hover { background: #f8f9fa; box-shadow: 0 1px 3px rgba(60,64,67,.18); }

/* ---------- blog cards ---------- */
.gdbs .posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gdbs .post {
  display: block; text-decoration: none; border: 1px solid var(--line);
  border-radius: 3px; padding: 22px; transition: border-color .18s ease;
}
.gdbs .post:hover { border-color: var(--blue); }
.gdbs .post h3 { font-size: 17px; line-height: 1.3; margin-bottom: 9px; }
.gdbs .post p { font-size: 15px; line-height: 1.6; color: var(--meta); }

/* ---------- faq ---------- */
.gdbs .faqgrid { display: grid; grid-template-columns: minmax(200px, 260px) minmax(0, 680px); gap: 36px; align-items: start; }
.gdbs details { border-bottom: 1px solid var(--line); }
.gdbs summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-size: 16.5px;
  font-family: var(--display); font-weight: 500; color: var(--blue);
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.gdbs summary::-webkit-details-marker { display: none; }
.gdbs summary::marker { content: ""; }
.gdbs .pm { position: relative; width: 12px; height: 12px; flex-shrink: 0; }
.gdbs .pm::before, .gdbs .pm::after { content: ""; position: absolute; background: var(--blue); transition: transform .2s ease, opacity .2s ease; }
.gdbs .pm::before { top: 5.5px; left: 0; width: 12px; height: 1.5px; }
.gdbs .pm::after  { left: 5.5px; top: 0; height: 12px; width: 1.5px; }
.gdbs details[open] .pm::after { transform: rotate(90deg); opacity: 0; }
.gdbs details p { padding: 0 0 20px; font-size: 15px; color: var(--meta); }

/* ---------- closing cta ---------- */
.gdbs .close { background: var(--blue); border-radius: 3px; padding: 50px 44px; }
.gdbs .close h2 { color: #fff; max-width: 20ch; }
.gdbs .close p { color: #C7CCE8; margin-top: 12px; max-width: 54ch; font-size: 16px; }

/* ---------- focus ---------- */
.gdbs a:focus-visible, .gdbs summary:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 2px; }
.gdbs .close a:focus-visible { outline-color: #fff; }
.gdbs p a:not(.btn) { color: var(--blue); text-decoration: underline; text-underline-offset: 2.5px; text-decoration-thickness: 1px; }
.gdbs .close p a:not(.btn) { color: #fff; }
.gdbs .close p a:not(.btn):hover { color: #DCE3FF; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .gdbs .programs, .gdbs .quotes, .gdbs .steps, .gdbs .posts, .gdbs .greviews { grid-template-columns: 1fr; }
  .gdbs .areas, .gdbs .split { grid-template-columns: 1fr; gap: 34px; }
  .gdbs .faqgrid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .gdbs .sec { padding: 42px 0; }
  .gdbs .sec:first-child { padding-top: 32px; }
  .gdbs .band, .gdbs .panel { padding: 26px 20px; }
  .gdbs .close { padding: 36px 24px; }
  .gdbs .towns { grid-template-columns: 1fr; }
  .gdbs .towns li:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .gdbs .lede { font-size: 17.5px; }
  .gdbs .facts { gap: 10px 22px; }
}
@media (prefers-reduced-motion: reduce) { .gdbs * { transition: none !important; } }

/* responsive stack for the two-column checklist — must come after its base rule */
@media (max-width: 700px) {
  .gdbs .checklist--2col { grid-template-columns: 1fr; }
}

/* ---------- graduates photo grid (about-us) ---------- */
.gdbs .grads { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gdbs .grads figure { margin: 0; }
.gdbs .grads img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 35%; border-radius: 3px; display: block; }
.gdbs .grads figcaption { margin-top: 8px; font-family: var(--display); font-weight: 500; font-size: 14.5px; letter-spacing: 0.01em; color: var(--ink); }
@media (max-width: 900px) { .gdbs .grads { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* ---------- proof split (program pages: graduate photo | matched review) ---------- */
.gdbs .split--proof { grid-template-columns: minmax(0, 380px) 1fr; }
@media (max-width: 700px) { .gdbs .split--proof { grid-template-columns: 1fr; } }

/* ---------- sitewide footer (code block in the Squarespace footer area) ---------- */
.gdbs-footer { padding: 10px 0 4px; }
.gdbs-footer .fcols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; text-align: left; }
.gdbs-footer p { font-size: 14.5px; color: var(--meta); line-height: 1.65; margin: 0; }
.gdbs-footer .fbrand { font-family: var(--display); font-weight: 700; color: var(--blue); font-size: 16px; margin-bottom: 8px; }
.gdbs-footer .fhead { font-family: var(--display); font-weight: 500; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--meta); margin-bottom: 10px; }
.gdbs-footer ul { list-style: none; margin: 0; padding: 0; }
.gdbs-footer li { margin: 6px 0; }
.gdbs-footer a { color: var(--ink); text-decoration: none; font-size: 14.5px; }
.gdbs-footer a:hover { color: var(--blue); text-decoration: underline; }
.gdbs-footer .ftel { margin-top: 10px; display: inline-block; font-weight: 700; color: var(--blue); }
.gdbs-footer .fline { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; text-align: center; }
@media (max-width: 700px) {
  .gdbs-footer .fcols { grid-template-columns: 1fr; gap: 26px; text-align: center; }
}
