
.footer-note {
  margin-top: 2em;
  padding-top: 0;
  padding-bottom: 2em;
  border-top: none;
  color: #cccccc;
  font-style: italic;
}

.footer-note a {
  color: var(--primary);
  text-decoration: none;
  font-style: normal;
}

.footer-note a span {
  color: var(--primary-yellow);
}

.social-icons {
  display: flex;
  gap: 1.5em;
  justify-content: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid var(--border-dark);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-icon a {
  line-height: 0px;
  margin: none;
  padding: none;
  text-decoration: none;
  font-style: normal;
  font-size: inherit;
}

.social-icon:hover {
  border-color: var(--primary-yellow);
  /* background: rgba(255, 186, 0, 0.1); */
  cursor: pointer;
}

/* TABLET - Small to Medium (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .social-icons {
      gap: 1.5em;
  }

  .social-icon {
      width: 56px;
      height: 56px;
  }
}

/* MOBILE - Extra Small (up to 480px) */
@media (max-width: 480px) {
  .social-icons {
      gap: 1.25em;
  }

  .social-icon {
      width: 54px;
      height: 54px;
      min-width: 44px;
      min-height: 44px;
  }

  .footer-note {
      font-size: 15px;
      padding-top: 1.5em;
      margin-top: 2.5em;
  }
}

/* Print styles */
@media print {
  .social-icons {
      display: none;
  }
}