/* XL — أقل من 1200px */
@media (max-width: 1199.98px) {
  /* كودك هنا */
}

/* LG — أقل من 992px */
@media (max-width: 991.98px) {
  .navbar .nav-list {
    display: none;
  }
  .navbar .btn {
    display: none;
  }
  .toggle {
    display: block;
  }
  .hero {
    height: auto;
  }
  .hero .inner-hero {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero .inner-hero .hero-img {
    order: -1;
  }
  .news .news-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .news .news-inner .news-content .item {
    flex-wrap: wrap;
  }

  .news .news-img {
    padding: 300px 0;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }

  .news .news-img .news-img-content {
    text-align: center;
  }

  .club .row {
    display: grid;
    grid-template-columns: 1fr;
    /* gap: 35px; */
  }

  .club .row .club-content {
    flex-wrap: wrap;
    justify-content: center;
  }
  .club .row .club-content > div {
    width: 100%;
  }

  .article .row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer .row {
    grid-template-columns: 1fr;
  }
}

/* MD — أقل من 768px */
@media (max-width: 767.98px) {
  .category .row {
    justify-content: center;
  }

  /*  start football */
  .football .inner-football {
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    gap: 45px;
  }
  .football .inner-football .football-content {
    text-align: center;
  }
  .football .inner-football .football-content h6 {
    font-size: 16px;
  }
  .football .inner-football .football-content h2 {
    font-size: 30px;
    margin: 20px 0;
  }
  .football .inner-football .football-content p {
    font-size: 15px;
  }
  /*  end football */
}

/* SM — أقل من 576px */
@media (max-width: 575.98px) {
  .article .row {
    grid-template-columns: 1fr;
  }
}
