/*
  Site footer styles.
  Scoped to classes prefixed with `site-` and `footer-`.
*/

.site-footer {
  background-color: #005fa9 !important;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 1.4rem;
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-brand-logo {
  display: block;
  width: auto;
  height: 62px;
}

.footer-social-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  text-align: right;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-social-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-social-link i {
  font-size: 15px;
  line-height: 1;
}

.footer-social-link:hover,
.footer-social-link:focus {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-social-link:active,
.footer-social-link.is-touch-active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-newsletter-link {
  text-decoration: none;
  color: #47cbff;
  font-size: 13px;
  font-weight: 500;
}

.footer-newsletter-link:hover,
.footer-newsletter-link:focus {
  color: #7dddff;
}

.footer-newsletter-link:active,
.footer-newsletter-link.is-touch-active {
  color: #7dddff;
}

.footer-content-grid {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.35fr)
    minmax(165px, 0.8fr)
    minmax(220px, 1fr)
    minmax(210px, 1fr);
  gap: 0.45rem 0.7rem;
  align-items: start;
}

.footer-company-block {
  font-family: "Bai Jamjuree", system-ui, sans-serif;
  margin-left: 0.55rem;
  max-width: 360px;
}

.footer-company-block p {
  margin: 0 0 0.18rem;
  font-size: 13px;
  line-height: 1.32;
  opacity: 0.92;
  overflow-wrap: anywhere;
}

.footer-policy-link,
.footer-powered-link {
  color: #47cbff;
  font-size: 13px;
  text-decoration: none;
}

.footer-policy-link:hover,
.footer-policy-link:focus,
.footer-powered-link:hover,
.footer-powered-link:focus {
  color: #7dddff;
}

.footer-policy-link:active,
.footer-policy-link.is-touch-active,
.footer-powered-link:active,
.footer-powered-link.is-touch-active {
  color: #7dddff;
}

.footer-inline-divider {
  width: min(240px, 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  margin: 0.4rem 0;
}

.footer-muted-line {
  opacity: 0.8;
}

.footer-block-title {
  margin: 0 0 0.45rem;
  font-family: "kallisto", "Bai Jamjuree", system-ui, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.25rem;
}

.footer-logo-row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  min-height: 108px;
}

.footer-partner-logo {
  width: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.footer-partner-logo--compact {
  max-height: 68px;
}

.footer-partner-logo--partnerof {
  max-height: 102px;
}

.footer-partner-logo--wide {
  max-height: 80px;
}

.footer-useful-row {
  min-height: auto;
}

.footer-useful-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.46rem 0.78rem;
  border-radius: 8px;
  border: 1px solid rgba(71, 203, 255, 0.7);
  background: rgba(6, 36, 73, 0.28);
  color: #47cbff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.footer-useful-link:hover,
.footer-useful-link:focus {
  color: #8ce7ff;
  border-color: rgba(140, 231, 255, 0.9);
  background: rgba(6, 36, 73, 0.46);
}

.footer-useful-link:active,
.footer-useful-link.is-touch-active {
  color: #8ce7ff;
  border-color: rgba(140, 231, 255, 0.9);
  background: rgba(6, 36, 73, 0.46);
}

.site-footer p {
  opacity: 0.92;
}

@media (max-width: 991px) {
  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social-wrap {
    align-items: flex-start;
  }

  .footer-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1rem;
  }

  .footer-company-block {
    margin-left: 0;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .footer-content-grid {
    grid-template-columns: 1fr;
  }

  .footer-block-title {
    font-size: 21px;
  }

  .footer-brand-logo {
    height: 56px;
  }

  .footer-logo-row {
    min-height: auto;
  }

  .footer-partner-logo--wide {
    max-height: 70px;
  }

  .footer-partner-logo--compact {
    max-height: 62px;
  }
}
