/* Shared footer base styles */
.footer {
  background: #FFFFFF;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.footer .divider {
  height: 1px;
  background: #E5E5E5;
  width: 50%;
  margin: 1rem auto;
}

.footer p,
.footer a {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer { padding: 1.5rem 1rem; }
}

@media (max-width: 480px) {
  .footer { padding: 1rem; }
}

/* Social Icons */
.footer .socials {
  position: absolute;
  left: 3vw;
  top: -2.75vh;
  display: flex;
  gap: 15px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.social-link img {
  width: 44px;
  height: 44px;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
}

