/* Bola.com footer — layout mengikuti footer__wrapper */
.footer {
  background: #ececec;
  font-family: "PT Sans", Arial, sans-serif;
  color: #333;
}

.footer__wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 36px 16px 28px;
}

.footer__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer__link-wrapper {
  flex: 1;
  min-width: 0;
  max-width: 620px;
}

.footer__link-logo {
  margin-bottom: 22px;
  line-height: 0;
}

.footer__link-logo__anchor {
  display: inline-block;
  text-decoration: none;
}

.footer__link-logo__image {
  max-height: 44px;
  width: auto;
  display: block;
}

.footer__link-logo__badge {
  display: inline-block;
  background: #0f5a38;
  padding: 10px 16px 9px;
  border-radius: 2px 10px 2px 2px;
  line-height: 1;
}

.footer__link-logo__badge-text {
  display: block;
  color: #fff;
  font-family: Montserrat, "PT Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer--nav-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 28px;
}

.footer--nav-list__item {
  margin: 0;
}

.footer--nav-list__link {
  display: inline-block;
  color: #666;
  text-decoration: none;
  font-family: Montserrat, "PT Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer--nav-list__link:hover {
  color: var(--site-accent);
}

.footer__socmed-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__socmed-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.15s;
}

.footer__socmed-link:hover {
  opacity: 0.88;
}

.footer__socmed-link_facebook {
  background: #1877f2;
}

.footer__socmed-link_twitter {
  background: #111;
}

.footer__socmed-link_instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.footer__socmed-link_youtube {
  background: #ff0000;
}

.footer__socmed-link_tiktok {
  background: #010101;
}

.footer__socmed-icon {
  font-size: 16px;
  line-height: 1;
}

.footer__network-wrapper {
  flex: 0 0 420px;
  max-width: 46%;
  min-width: 0;
}

.footer__network-title {
  display: block;
  margin: 0 0 16px;
  font-family: Montserrat, "PT Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.footer__network-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
}

.footer__network-link {
  display: inline-block;
  color: #444;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer__network-link:hover {
  color: var(--site-accent);
  text-decoration: underline;
}

.footer--copyright {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #d8d8d8;
}

.footer--copyright__text {
  margin: 0;
  font-size: 12px;
  color: #777;
  line-height: 1.6;
  text-align: center;
}

.footer--copyright__link {
  color: #555;
  text-decoration: none;
}

.footer--copyright__link:hover {
  color: var(--site-accent);
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer__row {
    flex-direction: column;
    gap: 32px;
  }

  .footer__link-wrapper,
  .footer__network-wrapper {
    max-width: 100%;
    flex: none;
    width: 100%;
  }

  .footer__network-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .footer--nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  .footer__network-list {
    grid-template-columns: 1fr;
  }
}
