/* ================================
   Racing Division - Footer
================================ */

.rd-footer {
  background: #030303;
  border-top: 1px solid rgba(0,200,83,.28);
  color: var(--rd-text);
}

.rd-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding: 46px 0 38px;
}

.rd-footer__logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.rd-footer__logo img {
  width: 170px;
  height: auto;
}

.rd-footer__brand p,
.rd-footer__contact p {
  margin: 0 0 8px;
  color: var(--rd-text);
  font-size: 16px;
  line-height: 1.5;
}

.rd-footer__social {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.rd-footer__social a {
  font-size: 0;
  width: 20px;
  height: 20px;
  position: relative;
  opacity: .85;
}

.rd-footer__social a::before {
  font-size: 15px;
  color: var(--rd-text);
}



.rd-footer__social a:hover::before {
  color: var(--rd-green);
}

.rd-footer__col h3 {
  margin: 0 0 16px;
  color: var(--rd-green);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.rd-footer__col a {
  display: block;
  margin-bottom: 8px;
  color: var(--rd-text);
  font-size: 16px;
  line-height: 1.4;
}

.rd-footer__col a:hover {
  color: var(--rd-green);
}

.rd-footer__contact p {
  position: relative;
  padding-left: 22px;
}

.rd-footer__contact p::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rd-green);
  font-size: 13px;
}

.rd-footer__bottom {
  border-top: 1px solid var(--rd-border);
}

.rd-footer__bottom-inner {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.rd-footer__bottom p {
  margin: 0;
  color: var(--rd-text-muted);
  font-size: 12px;
}

.rd-footer__payments {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.rd-footer__payments a{
    display: flex;
  justify-content: center;
  align-items: center;
}

.rd-footer__payments img{
      object-fit: contain;
    width: 30px;
    height: 30px;
}

.rd-footer__payments span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 18px;
  padding: 0 5px;
  background: #141414;
  border: 1px solid var(--rd-border);
  border-radius: 4px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.rd-footer__currency {
  justify-self: end;
  color: var(--rd-text);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .rd-footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .rd-footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 0 32px;
  }

  .rd-footer__bottom-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 18px 0;
  }

  .rd-footer__currency {
    justify-self: center;
  }
}