/* MaritimeHub Footer Styles
   Enqueue in functions.php:
   wp_enqueue_style('mh-footer', get_stylesheet_directory_uri() . '/mh-footer.css', array(), '1.0');
*/

footer.mh-footer {
  background: #0b1220;
  color: rgba(255,255,255,.90);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 0;
  margin: 0;
}

footer.mh-footer * {
  box-sizing: border-box;
}

footer.mh-footer .mh-footer-wrap {
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  footer.mh-footer .mh-footer-wrap { padding: 0 .75rem; }
}

footer.mh-footer .mh-footer-topgrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

@media (max-width: 980px) {
  footer.mh-footer .mh-footer-topgrid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 560px) {
  footer.mh-footer .mh-footer-topgrid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

footer.mh-footer .mh-footer-brandbox {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

footer.mh-footer .mh-foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255,255,255,.90);
  margin-bottom: .75rem;
}

footer.mh-footer .mh-foot-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

footer.mh-footer .mh-foot-brandtext {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

footer.mh-footer .mh-foot-title {
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1;
  color: rgba(255,255,255,.90);
}

footer.mh-footer .mh-foot-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

footer.mh-footer .mh-foot-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  margin: 0 0 .75rem;
  max-width: 340px;
}

footer.mh-footer .mh-foot-contact a {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,.90);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.20);
  padding-bottom: 1px;
}

footer.mh-footer .mh-foot-contact a:hover {
  border-color: rgba(255,255,255,.90);
}

footer.mh-footer .mh-foot-head {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(255,255,255,.55);
  margin-bottom: .6rem;
}

footer.mh-footer .mh-foot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

footer.mh-footer .mh-foot-list li {
  padding: 0;
  margin: 0;
}

footer.mh-footer .mh-foot-list a {
  display: inline-block;
  padding: 5px 0;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,.80);
  text-decoration: none;
  background: transparent;
  border: none;
  transition: color .15s;
}

footer.mh-footer .mh-foot-list a:hover {
  color: #fff;
}

footer.mh-footer .mh-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 1rem 0;
  min-height: 46px;
}

footer.mh-footer .mh-legal {
  font-size: 12px;
  color: rgba(255,255,255,.50);
  margin: 0;
}

footer.mh-footer .mh-legal strong {
  color: rgba(255,255,255,.90);
  font-weight: 900;
}

footer.mh-footer .mh-legal-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

footer.mh-footer .mh-legal-links a {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.50);
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  transition: color .15s, background .15s, border-color .15s;
}

footer.mh-footer .mh-legal-links a:hover {
  color: rgba(255,255,255,.90);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

footer.mh-footer a:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
  border-radius: 4px;
}