/* Footer Map Widget */
.footer-map-widget {
  display: flex;
  flex-direction: column;
}

.footer-map {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1; /* perfect square */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 0.5rem;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-map-link {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-map-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Mobile tweak */
@media (max-width: 767px) {
  .footer-map {
    max-width: 100%;
  }
}
