#customFooter {
  background: #111;
  color: #fff;
  font-weight: 400;
}

#customFooter .custom-footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

#customFooter .custom-footer-link:hover {
  color: #1ed760;
  text-decoration: underline;
}

#customFooter .custom-footer-date {
  font-size: 0.9em;
  color: #aaa;
}

#customFooter .custom-footer-post {
  margin-bottom: 12px;
}

#customFooter .custom-footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #181818;
  border-radius: 6px;
  font-size: 1.2em;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

#customFooter .custom-footer-social-btn:hover {
  background: #1ed760;
  color: #181818;
  box-shadow: 0 2px 8px rgba(30, 215, 96, 0.25);
}

#customFooter .custom-footer-text {
  margin-bottom: 0.5rem;
}
#customFooter a {
  color: #fff !important;     /* White links */
  text-decoration: none !important;
}

#customFooter a:hover {
  color: #1ed760 !important;  /* Green on hover */
  text-decoration: underline;
}

#customFooter .custom-footer-social-btn i {
  color: #181818;
}

#customFooter .custom-footer-social-btn:hover i {
  color: #000;
}
/* === Social media section layout === */
#customFooter .col-md-3.mb-4:last-child {
  display: block;
}

#customFooter .col-md-3.mb-4:last-child .custom-footer-text {
  flex: 1;
  margin: 0;
}

#customFooter .col-md-3.mb-4:last-child .custom-footer-social {
  display: flex;
  gap: 10px;
  margin-left: 0px;
}

/* Responsive layout: stack icons below address on smaller screens */
@media (max-width: 768px) {
  #customFooter .col-md-3.mb-4:last-child {
    flex-direction: column;
    align-items: flex-start;
  }

  #customFooter .col-md-3.mb-4:last-child .custom-footer-social {
    margin-left: 0;
    margin-top: 10px;
  }
}