/* Rivalry Commerce — consistent seven-block footer architecture */
@media (min-width: 1181px) {
  .site-footer .footer-grid {
    display: grid;
    grid-template-columns: minmax(180px,1.35fr) repeat(6,minmax(105px,1fr));
    gap: clamp(16px,1.8vw,28px);
    align-items: start;
  }

  .site-footer .footer-brand-block,
  .site-footer .footer-column {
    grid-column: auto;
    margin-top: 0;
    min-width: 0;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .site-footer .footer-grid {
    display: grid;
    grid-template-columns: minmax(190px,1.25fr) repeat(3,minmax(125px,1fr));
    gap: 26px 22px;
    align-items: start;
  }

  .site-footer .footer-brand-block,
  .site-footer .footer-column {
    grid-column: auto;
    margin-top: 0;
  }
}

.site-footer .footer-column h2 {
  color: #D4AF6A;
}

.site-footer .footer-column a:hover,
.site-footer .footer-column a:focus-visible {
  color: #f5f1e8;
  text-decoration: underline;
  text-decoration-color: #D4AF6A;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
