.footer-section {
  width: 100%;

  min-height: 56px;
  padding-block: 0.7rem;

  display: flex;
  align-items: center;

  margin-top: clamp(4rem, 8vw, 6rem);

  background: linear-gradient(
    90deg,
    rgba(4, 15, 35, 0.92) 0%,
    rgba(8, 18, 42, 0.94) 50%,
    rgba(16, 18, 40, 0.92) 100%
  );

  border-top: 1px solid rgba(1, 230, 255, 0.08);
}

.footer-container {
  width: 100%;
  max-width: 100%;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  padding-inline: 5%;
}

.footer-logo {
  justify-self: start;

  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-logo img {
  width: 140px;
  height: 45px;

  display: block;
}

.footer-text {
  justify-self: center;

  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-section {
    height: auto;
    padding-block: 0.8rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.8rem;
  }

  .footer-logo {
    justify-self: center;
  }

  .footer-text {
    justify-self: center;
  }
}