.header {
  background-color: #f1f1f1;
  /* padding: 2rem; */
  text-align: center;
}

.logo-img {
  height: 8rem;
}

.nav-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.section-matches {
  padding: 0 9.6rem;
}

.matches-container {
  max-width: 150rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap; /* Add this line */
  background-color: #22b8cf;
  /* justify-content: space-between; */
  gap: 2.4rem;
  overflow-x: scroll !important;
  margin-top: 2rem;
  border-radius: 1.5rem;
  /* justify-content: space-between; */
  padding: 1.6rem 3.2rem;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.07);
}

.match {
  background-color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 1.2rem;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.07);
  cursor: pointer;
  flex-shrink: 0;
}

.match-live--status {
  color: #e54624 !important;
  font-size: 1.5rem;
  /* font-weight: 700; */
}

.match-info {
  font-size: 1.2rem;
  font-weight: 700;
  color: #666 !important;
  margin-bottom: 1rem;
}

.teams {
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin-bottom: 1rem;
}

.match-teams {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 2rem;
}

.team-logos {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 3.5rem;
  gap: 2.4rem;
}

.team-names {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}

.team-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
}

.team-logo {
  width: 3.5rem;
  height: 2.5rem;
}

.match-scores {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  text-align: end;
  font-weight: 500;
  width: auto !important;
  gap: 2.4rem;
}

.score {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  width: auto;
}

.team-overs {
  font-size: 1.2rem;
  color: #666;
  text-align: end;
}

.match-status {
  color: #ed7e66;
  font-weight: 700;
  font-size: 1.4rem;
}

/* News section */
.section-news {
  padding: 9.6rem 0;
}

.news-list {
  list-style: none;
}

.news-item {
  display: grid;
  grid-template-columns: 0.5fr 3fr;
  gap: 2.4rem;
  margin-bottom: 4.8rem;
  justify-content: center;
  /* background-image: linear-gradient(to right bottom, #d3d3d3, #e9e9e9); */
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.07),
    0 -20px 30px 0 rgba(0, 0, 0, 0.07);
  border-radius: 1.5rem;
  width: 95%;
  padding: 2.4rem;
}

.news--link {
  text-decoration: none;
  /* color: #111; */
}

.news-item--pic-div {
  height: 15rem;
  width: 15rem;
  /* width: 100%; */
  /* justify-self: center; */
}

.news-item--img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.07);
}

.news-item--header-div {
  padding: 1.6rem 0;
  display: grid;
  grid-template-columns: 1fr;
}

.news-item--header {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--main-color--darker);
  /* margin-bottom: rem; */
}

.news-item--desc {
  font-size: 1.8rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 1.2rem;
}

.news-item--date {
  font-size: 1.6rem;
  font-weight: 600;
  color: #666;
}
