/*
 * Footer dùng chung cho các trang con.
 * Các thông số được sao chép từ footer hiện tại của index.html.
 */

.site-footer {
  color: #ecdfc8;
  border-top: 2px solid #c49b55;
  background: #052d25;
}

.site-footer .footer-inner {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.6fr;
  gap: 45px;
  width: auto;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 32px;
}

.site-footer .footer-inner > div,
.site-footer .footer-inner > div + div,
.site-footer .footer-inner .map-column {
  grid-column: auto;
  padding: 0;
  border: 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #dcb76a;
  font-family: Cambria, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: #efd08f;
}

.site-footer p {
  margin: 8px 0;
  color: #ecdfc8;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.site-footer p a {
  display: inline;
}

.site-footer .map-column iframe {
  display: block;
  width: 100%;
  height: 185px;
  border: 3px solid #d7ba7c;
}

.site-footer .copyright {
  margin: 0;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbae99;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: 0.12em;
  text-align: center;
}

@media (max-width: 820px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer .footer-inner .map-column {
    grid-column: 1 / 3;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 20px;
  }

  .site-footer .footer-inner .map-column {
    grid-column: auto;
  }
}
