.sponsors-container {
  padding: 50px 20px;
  background-color: #b20a24;
  text-align: center;
}

.sponsors-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.sponsor-logo {
  max-height: 120px;
  max-width: 150px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.2s;
}

/* ---------------- Footer ---------------- */

.footer {
  background: #2f2a28;
  color: #fff;
  padding: 60px 20px;
  font-family: var(--primary-copy-font);
  font-weight: var(--bold-font);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.footer__col {
  min-width: 0;
}

.footer .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  max-width: 100%;
  text-align: center;
}

/* ---- Contact column ---- */

.footer__address {
  margin-bottom: 24px;
  font-size: 0.6rem;
}

.footer__address:last-child {
  margin-bottom: 0;
}

.footer__address-title {
  font-family: var(--primary-copy-font);
  font-weight: var(--bold-font);
  font-size: 0.9rem;
  margin: 0 0 8px;
  color: #bbb;
}

.footer__address-lines {
  margin: 0;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

/* ---- Nav column ---- */

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.footer__nav-link:hover {
  text-decoration: underline;
}

/* ---- Social column ---- */

.footer__col--social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__social-title {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--primary-copy-font);
  font-weight: var(--bold-font);
  line-height: 0.95;
  font-weight: 700;
  text-transform: uppercase;
}

.footer__highlight {
  display: block;
  color: #c8102e; /* red */
  font-style: italic;
}

.footer__social-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* NHRA row */
.footer__social-link {
  display: block;
  width: 130px;
}

.footer__social-link img,
#NHRA {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

/* socials row below */
.footer_social {
  list-style: none;
  display: flex;
  flex-direction: row; /* stack icons */
  gap: 14px;
  margin: 0;
  padding: 0;
}

.footer_social li {
  margin: 0;
  padding: 0;
}

.footer_social a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.footer_social img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.mailing_btn{
  background:none;
  text-decoration: none;
  border:1px solid #fff;
  padding:.5em 1em;
  text-transform: uppercase;
}

.mailing_btn:hover{
  border-color: #ff0;
}

/* ---- Divider ---- */

.footer__divider {
  height: 1px;
  background: #555;
  margin: 40px auto 0;
  max-width: 1200px;
}

/* ---- Tablet ---- */

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__col--social {
    grid-column: 1 / -1;
  }
}

/* ---- Mobile ---- */

@media (max-width: 640px) {
  .footer {
    padding: 40px 16px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__col--contact,
  .footer__col--nav,
  .footer__col--social {
    width: 100%;
  }

  .footer__social-icons {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer_social {
    width: 100%;
  }

  .footer .btn {
    width: 100%;
  }
}