/* ========================================
   RLM Redesign - Footer Styles
   ======================================== */

.footer-rlm {
  background-color: #FFF;
  padding: 60px 0;
  border-top: 1px solid #e5e5e5;
}

.footer-rlm__container {
  max-width: 1088px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.footer-rlm__logo {
  flex-shrink: 0;
}

.footer-rlm__logo img {
  max-width: 280px;
  height: auto;
}

.footer-rlm__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  flex-grow: 1;
}

.footer-rlm__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-rlm__link {
  color: #000;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.footer-rlm__link:hover {
  color: #4a9d5f;
  text-decoration: none;
}

.footer-rlm__divider {
  display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-rlm__container {
    max-width: 720px;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .footer-rlm__links {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-rlm {
    padding: 40px 0;
  }

  .footer-rlm__container {
    max-width: 540px;
  }

  .footer-rlm__links {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
  }

  .footer-rlm__column {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .footer-rlm__links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-rlm__column {
    text-align: center;
  }

  .footer-rlm__divider {
    display: block;
    border: 0;
    border-bottom: 0;
    border-top: 2px solid #000;
    margin: 5px auto;
    width: 60%;
    background: none;
    color: #000;
  }

  .footer-rlm__logo img {
    max-width: 220px;
  }
}
