/**
 * Modul: Footer Embed (iframe responsif full width)
 */

.footer-embed {
  width: 100%;
  margin: 40px 0;
  text-align: center;
}

.embed-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

/* Bingkai iframe agar selalu proporsional */
.footer-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9; /* menjaga proporsi video & map */
  border: 0;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Layout berdampingan di layar besar */
@media (min-width: 992px) {
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3%;
    width: 100%;
  }
  .footer-embed {
    flex: 1;
  }
}

/* Layout menumpuk di mobile */
@media (max-width: 991px) {
  .footer-container {
    display: block;
  }
  .footer-embed {
    margin-bottom: 30px;
  }
}
