/* ==========================================================================
   Footer Section
   Prefix: --ft-
   Dark only — footer is always dark.
   Mobile-first: stacked → 2-col@600px → 4-col@992px
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */

.footer-section.ft-footer {
  /* Brand accent */
  --ft-orange:              #ff5c00;
  --ft-orange-dim:          rgba(255, 92, 0, .10);
  --ft-orange-glow:         rgba(255, 92, 0, .25);

  /* Backgrounds */
  --ft-bg:                  linear-gradient(160deg, #020c18 0%, #00264d 60%, #031a30 100%);
  --ft-bg-overlay-line:     rgba(255, 255, 255, .03);

  /* Text */
  --ft-heading-color:       #ffffff;
  --ft-body-color:          rgba(255, 255, 255, .60);
  --ft-link-color:          rgba(255, 255, 255, .55);
  --ft-link-hover-color:    #ffffff;
  --ft-muted-color:         rgba(255, 255, 255, .35);

  /* Column headings */
  --ft-col-heading-color:   #ffffff;

  /* Newsletter input */
  --ft-input-bg:            rgba(255, 255, 255, .06);
  --ft-input-border:        rgba(255, 255, 255, .12);
  --ft-input-border-focus:  #ff5c00;
  --ft-input-color:         #ffffff;
  --ft-input-placeholder:   rgba(255, 255, 255, .30);
  --ft-input-shadow-focus:  0 0 0 3px rgba(255, 92, 0, .15);

  /* Newsletter button */
  --ft-btn-bg:              #ff5c00;
  --ft-btn-color:           #ffffff;
  --ft-btn-hover-bg:        #e65200;

  /* Social icons */
  --ft-social-bg:           rgba(255, 255, 255, .06);
  --ft-social-border:       rgba(255, 255, 255, .10);
  --ft-social-color:        rgba(255, 255, 255, .55);
  --ft-social-hover-bg:     #ff5c00;
  --ft-social-hover-color:  #ffffff;
  --ft-social-hover-border: #ff5c00;

  /* Divider */
  --ft-divider:             rgba(255, 255, 255, .08);

  /* Legal bar */
  --ft-legal-bg:            rgba(0, 0, 0, .25);
  --ft-legal-color:         rgba(255, 255, 255, .40);
  --ft-legal-link-color:    rgba(255, 255, 255, .50);
  --ft-legal-link-hover:    #ffffff;
  --ft-legal-separator:     rgba(255, 255, 255, .15);
}

/* --------------------------------------------------------------------------
   2. Footer wrapper — mobile base
   -------------------------------------------------------------------------- */

.footer-section.ft-footer {
  background: var(--ft-bg);
  position: relative;
  overflow: hidden;
  display: block !important;
  height: auto !important;
  flex-shrink: 0;
  flex-basis: auto;
}

/* Ensure the Drupal region div doesn't collapse */
.footer-section.ft-footer > .region-footer {
  display: block;
  width: 100%;
}

/* Subtle grid overlay */
.footer-section.ft-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ft-bg-overlay-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ft-bg-overlay-line) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Top accent line */
.footer-section.ft-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ft-orange) 0%, transparent 70%);
  z-index: 1;
}

.footer-section__container.ft-container,
.footer-section__legal-container.ft-container {
  /*max-width: 1200px;*/
  /*margin: 0 auto;*/
  /*padding: 0;*/
  /*position: relative;*/
}

/* --------------------------------------------------------------------------
   3. Main footer content — mobile base (stacked)
   -------------------------------------------------------------------------- */

.footer-section__main.ft-main {
  padding: 56px 0 40px;
}

.footer-section__grid.ft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* --------------------------------------------------------------------------
   4. Brand column
   -------------------------------------------------------------------------- */

.footer-section__brand.ft-brand {
  max-width: 320px;
}

.footer-section__logo.ft-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-section__logo-icon.ft-logo__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-section__logo-icon.ft-logo__icon svg {
  width: 40px;
  height: 40px;
}

.footer-section__logo-text.ft-logo__text {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ft-heading-color);
}

.footer-section__logo-text.ft-logo__text span {
  color: var(--ft-orange);
}

.footer-section__tagline.ft-brand__tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ft-muted-color);
  margin-bottom: 16px !important;
}

.footer-section__desc.ft-brand__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ft-body-color);
  margin-bottom: 24px !important;
}

/* --------------------------------------------------------------------------
   5. Social icons
   -------------------------------------------------------------------------- */

.footer-section__social.ft-social {
  display: flex;
  gap: 10px;
}

.footer-section__social-link.ft-social__link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ft-social-bg);
  border: 1px solid var(--ft-social-border);
  color: var(--ft-social-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section__social-link.ft-social__link:hover {
  background: var(--ft-social-hover-bg);
  border-color: var(--ft-social-hover-border);
  color: var(--ft-social-hover-color);
  transform: translateY(-2px);
}

.footer-section__social-link.ft-social__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   6. Nav columns
   -------------------------------------------------------------------------- */

.footer-section__nav-heading.ft-nav__heading {
  font-family: 'Oswald', sans-serif;
  font-size: 14px !important;
  font-weight: 600;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  color: var(--ft-col-heading-color);
  margin: 0 0 20px !important;
  line-height: 1.4 !important;
  position: relative;
  padding-bottom: 12px;
}

.footer-section__nav-heading.ft-nav__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--ft-orange);
}

.footer-section__nav-list.ft-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-section__nav-link.ft-nav__link {
  font-size: 14px;
  color: var(--ft-link-color) !important;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}

.footer-section__nav-link.ft-nav__link:hover {
  color: var(--ft-link-hover-color);
  padding-left: 4px;
}

/* --------------------------------------------------------------------------
   7. Newsletter column
   -------------------------------------------------------------------------- */

.footer-section__newsletter.ft-newsletter {
  max-width: 320px;
}

.footer-section__newsletter-heading.ft-newsletter__heading {
  font-family: 'Oswald', sans-serif;
  font-size: 14px !important;
  font-weight: 600;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  color: var(--ft-col-heading-color);
  margin: 0 0 20px !important;
  line-height: 1.4 !important;
  position: relative;
  padding-bottom: 12px;
}

.footer-section__newsletter-heading.ft-newsletter__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--ft-orange);
}

.footer-section__newsletter-desc.ft-newsletter__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ft-body-color);
  margin-bottom: 16px;
}

.footer-section__newsletter-form.ft-newsletter__form {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
}

.footer-section__newsletter-input.ft-newsletter__input {
  flex: 1;
  background: var(--ft-input-bg) !important;
  border: 1px solid var(--ft-input-border) !important;
  border-right: none !important;
  color: var(--ft-input-color) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  padding: 12px 14px !important;
  margin: 0 !important;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  min-width: 0;
  width: auto !important;
  -webkit-appearance: none;
}

.footer-section__newsletter-input.ft-newsletter__input::placeholder {
  color: var(--ft-input-placeholder);
}

.footer-section__newsletter-input.ft-newsletter__input:focus {
  border-color: var(--ft-input-border-focus) !important;
  border-left: 1px solid var(--ft-input-border-focus) !important;
  box-shadow: var(--ft-input-shadow-focus) !important;
  background: var(--ft-input-bg) !important;
  padding: 12px 14px !important;
}

.footer-section__newsletter-btn.ft-newsletter__btn {
  background: var(--ft-btn-bg) !important;
  border: 1px solid var(--ft-btn-bg) !important;
  color: var(--ft-btn-color) !important;
  font-family: 'Oswald', sans-serif;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 20px !important;
  cursor: pointer;
  transition: background 0.25s ease;
  white-space: nowrap;
  position: relative;
}

/* Kill the wordpress-theme ::before wipe animation on submit buttons */
.footer-section__newsletter-btn.ft-newsletter__btn::before {
  display: none !important;
}

.footer-section__newsletter-btn.ft-newsletter__btn:hover {
  background: var(--ft-btn-hover-bg) !important;
  color: var(--ft-btn-color) !important;
}

.footer-section__newsletter-privacy.ft-newsletter__privacy {
  font-size: 12px;
  color: var(--ft-muted-color);
  line-height: 1.5;
}

.footer-section__newsletter-privacy.ft-newsletter__privacy a {
  color: var(--ft-link-color) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.25s ease;
}

.footer-section__newsletter-privacy.ft-newsletter__privacy a:hover {
  color: var(--ft-link-hover-color);
}

/* ── Webform overrides inside the newsletter column ──────────────────────
   Targets the newsletter_signup webform rendered inside
   .footer-section__newsletter so it matches the original
   inline input + button design.
   ──────────────────────────────────────────────────────────── */

.footer-section__newsletter .webform-submission-newsletter-signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 12px;
}

/* Hide form-item wrappers’ extra spacing */
.footer-section__newsletter .webform-submission-newsletter-signup-form .form-item {
  flex: 1;
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0;
}

/* Hide the label (title_display: invisible handles SR, but ensure visually) */
.footer-section__newsletter .webform-submission-newsletter-signup-form label {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  overflow: hidden !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Email input — match the original .ft-newsletter__input */
.footer-section__newsletter .webform-submission-newsletter-signup-form input[type="email"] {
  width: 100% !important;
  background: var(--ft-input-bg) !important;
  border: 1px solid var(--ft-input-border) !important;
  border-right: none !important;
  color: var(--ft-input-color) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  padding: 12px 14px !important;
  margin: 0 !important;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  border-radius: 0 !important;
  box-shadow: none !important;
  height: auto !important;
}

.footer-section__newsletter .webform-submission-newsletter-signup-form input[type="email"]::placeholder {
  color: var(--ft-input-placeholder);
}

.footer-section__newsletter .webform-submission-newsletter-signup-form input[type="email"]:focus {
  border-color: var(--ft-input-border-focus) !important;
  border-left: 1px solid var(--ft-input-border-focus) !important;
  box-shadow: var(--ft-input-shadow-focus) !important;
}

/* Submit button — match the original .ft-newsletter__btn */
.footer-section__newsletter .webform-submission-newsletter-signup-form .form-actions {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-section__newsletter .webform-submission-newsletter-signup-form .form-actions .webform-button--submit,
.footer-section__newsletter .webform-submission-newsletter-signup-form .form-actions input[type="submit"],
.footer-section__newsletter .webform-submission-newsletter-signup-form .form-actions button[type="submit"] {
  background: var(--ft-btn-bg) !important;
  border: 1px solid var(--ft-btn-bg) !important;
  color: var(--ft-btn-color) !important;
  font-family: 'Oswald', sans-serif;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 20px !important;
  cursor: pointer;
  transition: background 0.25s ease;
  white-space: nowrap;
  border-radius: 0 !important;
  line-height: 1.4 !important;
  height: auto !important;
  position: relative;
}

.footer-section__newsletter .webform-submission-newsletter-signup-form .form-actions .webform-button--submit::before {
  display: none !important;
}

.footer-section__newsletter .webform-submission-newsletter-signup-form .form-actions .webform-button--submit:hover,
.footer-section__newsletter .webform-submission-newsletter-signup-form .form-actions input[type="submit"]:hover,
.footer-section__newsletter .webform-submission-newsletter-signup-form .form-actions button[type="submit"]:hover {
  background: var(--ft-btn-hover-bg) !important;
  color: var(--ft-btn-color) !important;
}

/* Confirmation message styling */
.footer-section__newsletter .webform-confirmation {
  font-size: 13px;
  color: var(--ft-orange);
  line-height: 1.6;
  padding: 8px 0;
}

/* Hide any AJAX throbber/progress indicator clutter */
.footer-section__newsletter .ajax-progress {
  position: absolute;
}

/* ── CAPTCHA overrides inside the newsletter column ──────────────────────
   Ensures the CAPTCHA element sits below the inline input + button row
   and matches the footer's dark theme.
   ──────────────────────────────────────────────────────────── */

.footer-section__newsletter .captcha {
  flex-basis: 100%;
  order: 10;
  margin: 8px 0 0 !important;
  padding: 0 !important;
}

.footer-section__newsletter .captcha .fieldset-legend,
.footer-section__newsletter .captcha > legend {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  overflow: hidden !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  border: 0 !important;
}

.footer-section__newsletter .captcha .fieldset-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-section__newsletter .captcha .form-item {
  flex: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-section__newsletter .captcha label {
  position: static !important;
  clip: auto !important;
  overflow: visible !important;
  height: auto !important;
  width: auto !important;
  color: var(--ft-body-color) !important;
  font-size: 13px !important;
  font-family: 'Inter', sans-serif !important;
  margin: 0 4px 0 0 !important;
}

.footer-section__newsletter .captcha input[type="text"] {
  width: 60px !important;
  background: var(--ft-input-bg) !important;
  border: 1px solid var(--ft-input-border) !important;
  color: var(--ft-input-color) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  padding: 6px 8px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none;
}

.footer-section__newsletter .captcha input[type="text"]:focus {
  border-color: var(--ft-input-border-focus) !important;
  box-shadow: var(--ft-input-shadow-focus) !important;
}

.footer-section__newsletter .captcha .description,
.footer-section__newsletter .captcha .fieldset-description {
  display: none !important;
}

/* ── Simplenews overrides inside the newsletter column
   Targets the Simplenews subscription form rendered inside
   .footer-section__newsletter so it matches the original
   inline input + button design.
   ──────────────────────────────────────────────────────────── */

.footer-section__newsletter .simplenews-subscriber-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin-bottom: 12px;
}

/* Email wrapper — fill remaining space next to the button */
.footer-section__newsletter .simplenews-subscriber-form .field--type-email {
  flex: 1;
  min-width: 0;
}

/* Hide form-item wrappers' extra spacing */
.footer-section__newsletter .simplenews-subscriber-form .form-item {
  margin: 0 !important;
  padding: 0 !important;
}

/* Hide the label */
.footer-section__newsletter .simplenews-subscriber-form label {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  overflow: hidden !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Hide subscriptions wrapper (fieldset + checkboxes) */
.footer-section__newsletter .simplenews-subscriber-form .field--type-entity-reference {
  display: none !important;
}

/* Hide description text below email field */
.footer-section__newsletter .simplenews-subscriber-form .description {
  display: none !important;
}

/* Hide the "Manage existing" link */
.footer-section__newsletter .simplenews-subscriber-form a[href*="simplenews/validate"] {
  display: none !important;
}

/* Email input — match the original .ft-newsletter__input */
.footer-section__newsletter .simplenews-subscriber-form input[type="email"] {
  width: 100% !important;
  background: var(--ft-input-bg) !important;
  border: 1px solid var(--ft-input-border) !important;
  border-right: none !important;
  color: var(--ft-input-color) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  padding: 12px 14px !important;
  margin: 0 !important;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  border-radius: 0 !important;
  box-shadow: none !important;
  height: auto !important;
}

.footer-section__newsletter .simplenews-subscriber-form input[type="email"]::placeholder {
  color: var(--ft-input-placeholder);
}

.footer-section__newsletter .simplenews-subscriber-form input[type="email"]:focus {
  border-color: var(--ft-input-border-focus) !important;
  border-left: 1px solid var(--ft-input-border-focus) !important;
  box-shadow: var(--ft-input-shadow-focus) !important;
}

/* Submit button — match the original .ft-newsletter__btn */
.footer-section__newsletter .simplenews-subscriber-form .form-actions {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-section__newsletter .simplenews-subscriber-form .form-actions input[type="submit"],
.footer-section__newsletter .simplenews-subscriber-form .form-actions button[type="submit"] {
  background: var(--ft-btn-bg) !important;
  border: 1px solid var(--ft-btn-bg) !important;
  color: var(--ft-btn-color) !important;
  font-family: 'Oswald', sans-serif;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 20px !important;
  cursor: pointer;
  transition: background 0.25s ease;
  white-space: nowrap;
  border-radius: 0 !important;
  line-height: 1.4 !important;
  height: auto !important;
  position: relative;
  margin-top: 0;
}

.footer-section__newsletter .simplenews-subscriber-form .form-actions input[type="submit"]::before,
.footer-section__newsletter .simplenews-subscriber-form .form-actions button[type="submit"]::before {
  display: none !important;
}

.footer-section__newsletter .simplenews-subscriber-form .form-actions input[type="submit"]:hover,
.footer-section__newsletter .simplenews-subscriber-form .form-actions button[type="submit"]:hover {
  background: var(--ft-btn-hover-bg) !important;
  color: var(--ft-btn-color) !important;
}

/* Confirmation/status message styling */
.footer-section__newsletter .simplenews-subscriber-form .messages {
  font-size: 13px;
  color: var(--ft-orange);
  line-height: 1.6;
  padding: 8px 0;
  background: transparent;
  border: none;
}

/* Hide any AJAX throbber/progress indicator clutter */
.footer-section__newsletter .simplenews-subscriber-form .ajax-progress {
  position: absolute;
}

/* --------------------------------------------------------------------------
   8. Legal bar — mobile base
   -------------------------------------------------------------------------- */

.footer-section__legal.ft-legal {
  background: rgb(0 0 0 / 53%);
  padding: 18px 0;
  position: relative;
}

.footer-section__legal-inner.ft-legal__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer-section__legal-copy.ft-legal__copy {
  font-size: 13px;
  color: var(--ft-legal-color);
  margin: 0;
}

.footer-section__legal-copy.ft-legal__copy a {
  color: var(--ft-legal-link-color) !important;
  text-decoration: none;
  transition: color 0.25s ease;
  font-weight: bold;
}

.footer-section__legal-copy.ft-legal__copy a:hover {
  color: var(--ft-legal-link-hover);
}

.footer-section__legal-links.ft-legal__links {
  list-style: none;
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
}

.footer-section__legal-links.ft-legal__links li {
  font-size: 13px;
  padding: 0 14px;
  position: relative;
  color: var(--ft-legal-color);
}

.footer-section__legal-links.ft-legal__links li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: var(--ft-legal-separator);
}

.footer-section__legal-links.ft-legal__links li:last-child {
  padding-right: 0;
}

.footer-section__legal-links.ft-legal__links li:last-child::after {
  display: none;
}

.footer-section__legal-link.ft-legal__link {
  color: var(--ft-legal-link-color);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-section__legal-link.ft-legal__link:hover {
  color: var(--ft-legal-link-hover);
}

/* --------------------------------------------------------------------------
   9. Override old legal-bar component + global theme leak resets
   -------------------------------------------------------------------------- */

.footer-section.ft-footer .footer_last {
  display: none;
}

/* Reset wordpress-theme.css global resets inside footer */
.footer-section.ft-footer p {
  margin: 0;
  padding: 0;
}

.footer-section.ft-footer a {
  color: inherit;
  background: transparent;
}

.footer-section.ft-footer ul {
  list-style: none;
  margin: 0 !important;
  padding: 0;
}

.footer-section.ft-footer h2 {
  font-size: inherit !important;
  line-height: inherit !important;
  margin: 0 !important;
}

/* --------------------------------------------------------------------------
   10. Tablet — 600px
   -------------------------------------------------------------------------- */

@media (min-width: 600px) {
  .footer-section__grid.ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .footer-section__brand.ft-brand {
    grid-column: 1 / -1;
  }

  .footer-section__legal-inner.ft-legal__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* --------------------------------------------------------------------------
   11. Desktop — 992px
   -------------------------------------------------------------------------- */

@media (min-width: 992px) {
  .footer-section__main.ft-main {
    padding: 64px 0 48px;
  }

  .footer-section__grid.ft-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 32px 48px;
  }

  .footer-section__brand.ft-brand {
    grid-column: auto;
  }
}

/* --------------------------------------------------------------------------
   12. Large desktop — 1200px
   -------------------------------------------------------------------------- */

@media (min-width: 1200px) {
  .footer-section__grid.ft-grid {
    gap: 32px 64px;
  }
}
