/* ============================
   RMS Footer (Post-it inspired)
   ============================ */

.rms-footer {
  border-top: 1px solid rgba(0,0,0,0.12);
  padding: 28px 0;
  color: #ffffff;
  font-size: 0.9rem; /* slightly smaller than body */
}

.rms-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.rms-footer-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rms-footer-copy {
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
  font-size: inherit; /* same size as footer base text */
}

.rms-footer-nav,
.rms-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
}

.rms-footer a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.rms-footer a:hover {
  text-decoration: underline;
}

/* Make it feel like the Post-it footer: 3 columns on desktop */
@media (min-width: 768px) {
  .rms-footer-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
  }

  .rms-footer-copy {
    flex: 0 0 auto;
    max-width: 340px;
  }

  .rms-footer-nav {
    flex: 1 1 auto;
    justify-content: center;
  }

  .rms-footer-social {
    flex: 0 0 auto;
    justify-content: flex-end;
  }
}
