/* =========================================
   R & D EVENTS — SITE FOOTER ONLY
   Used by: footer-new include
   ========================================= */

.site-footer {
  background: #1f2b24; /* dark neutral / sage-black */
  color: #e8eee9;
  padding: 48px 20px 32px;
  font-size: 14px;
  position: relative;
  clear: both;
}

.site-footer a {
  color: #d4e0d5;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* --- Footer container --- */
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Footer layout --- */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

/* --- Footer headings --- */
.footer-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Footer lists --- */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list li:last-child {
  margin-bottom: 0;
}

/* --- Footer text --- */
.footer-text {
  line-height: 1.6;
  color: #cfd9d1;
}

/* --- Footer logo --- */
.footer-logo {
  max-width: 180px;
  margin-bottom: 14px;
}

/* --- Social icons (image or SVG safe) --- */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.footer-social a:hover {
  background: rgba(255,255,255,0.18);
}

/* --- Footer bottom bar --- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 18px;
  text-align: center;
  font-size: 12px;
  color: #b9c7bd;
}

/* =========================================
   MOBILE FOOTER
   ========================================= */

@media (max-width: 900px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .footer-social {
    justify-content: center;
  }
}