/**
 * @file    css/_tmpl-footer.css
 * @brief   Footer stylesheet.
 *
 * @ingroup BLNG_CSS
 */

 /**
 * Table of Contents
 *
 * 1.0 - Footer
 *   1.1 - Site Footer
 *   1.2 - Site Footer Media Queries
 */

/*===========================================================================*/
/* 1.0 Footer                                                                */
/*===========================================================================*/
/**
 * 1.1 - Site Footer
 */
:root {
  --blng-footer-padding-side: var(--blng-content-padding-side);
  --blng-footer-padding-block: 22px;
}

#blng-site-footer {
  width: 100%;
  background-color: var(--blng-pe-azure-3c);
  padding: var(--blng-footer-padding-block) var(--blng-footer-padding-side);
  color: var(--blng-pe-brand-midnight-2g);
}

#blng-site-footer .footer-content {
  font-size: 0.92em;
  text-align: center;
}

#blng-site-footer .footer-content a {
  color: var(--blng-pe-brand-midnight-2e);
  font-weight: 500;
}

#blng-site-footer .footer-content .other-info {
  text-transform: uppercase;
}

/**
 * 1.2 - Site Footer Media Queries
 */
@media screen and (max-width: 1023px) {
  :root {
  --blng-footer-padding-block: 12px;
}
}