.gb-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.gb-footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
}

.gb-footer__copyright {
  color: var(--text-light);
  font-size: 14px;
}

.gb-footer__social {
  display: flex;
  gap: 16px;
}

.gb-footer__icon {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}

.gb-footer__icon:hover {
  background-color: var(--bg-primary);
}

.gb-footer__icon img {
  width: 24px;
  height: 28px;
}

/* @MEDIA ===================================================================== */

@media (max-width: 997px) {
  .gb-footer__wrapper {
    flex-direction: column;
    padding: 16px;
  }

  .gb-footer__copyright {
    margin-top: 16px;
    text-align: center;
  }
}
