/* Blog-matched footer, isolated from MechBunny's core stylesheet. */
.footer-sec.waybig-modern-footer {
  width: 100%;
  margin: clamp(40px, 6vw, 80px) 0 0;
  padding: clamp(32px, 4vw, 52px) 0;
  border-top: 1px solid #343434;
  background: #111;
  color: #b8b8b8;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.waybig-modern-footer .wrapper {
  width: min(1180px, 100%);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 32px);
}
.waybig-modern-footer .row {
  display: grid !important;
  grid-template-columns: minmax(240px, 1fr) minmax(250px, .9fr) minmax(240px, 1fr);
  grid-template-areas: "nav logo about";
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  width: 100%;
  margin: 0 !important;
}
.waybig-modern-footer .footer-nav-col,
.waybig-modern-footer .footer-logo-col,
.waybig-modern-footer .footer-list-col {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  flex: none;
}
.waybig-modern-footer .footer-nav-col { grid-area: nav; }
.waybig-modern-footer .footer-logo-col { grid-area: logo; text-align: center; }
.waybig-modern-footer .footer-list-col { grid-area: about; }
.waybig-modern-footer .footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 1.3;
  text-align: left;
}
.waybig-modern-footer .footer-nav li { display: block; margin: 0; padding: 0; }
.waybig-modern-footer .footer-nav a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 7px 4px;
  border-bottom: 1px solid #292929;
  color: #e6e6e6;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color .18s ease, color .18s ease;
}
.waybig-modern-footer .footer-nav a:hover,
.waybig-modern-footer .footer-nav a:focus-visible {
  border-color: #ffbd0a;
  color: #ffbd0a;
}
.waybig-modern-footer .footer-nav a:focus-visible,
.waybig-modern-footer .footer-logo-col a:focus-visible {
  outline: 3px solid #ffbd0a;
  outline-offset: 3px;
}
.waybig-modern-footer .footer-logo-col > a { display: inline-block; max-width: none; }
.waybig-modern-footer .footer-logo-col img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin-inline: auto;
}
.waybig-modern-footer .copy-info {
  margin-top: 13px;
  color: #8e8e8e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.4;
  text-transform: uppercase;
}
.waybig-modern-footer .footer-description {
  max-width: 576px;
  margin: 0;
  color: #b8b8b8;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .footer-sec.waybig-modern-footer { margin-top: 48px; padding-block: 36px; }
  .waybig-modern-footer .row {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "logo" "nav" "about";
    gap: 28px;
  }
  .waybig-modern-footer .footer-description { margin-inline: auto; text-align: center; }
}
@media (max-width: 420px) {
  .waybig-modern-footer .footer-nav { gap: 4px 10px; }
  .waybig-modern-footer .footer-nav a { min-height: 44px; font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  .waybig-modern-footer .footer-nav a { transition: none; }
}
