<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.sports_banner {
  width: 100%;
  height: 316px;
  overflow: hidden;
  border-radius: 10px;
}

.dg_top {
  .category_strip {
    bottom: 10px;
  }
}

.news_main_wrap {
  position: relative;

  &amp;::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -26px;
    background-color: rgba(0, 0, 0, 0.105);
  }
}


/* photo gallery */
.sports-img-container {
  background-image: radial-gradient(50% 30% ellipse at center top, #34466a 0%, rgb(0 0 0 / 0%) 100%), radial-gradient(60% 50% ellipse at center bottom, #1c415a 0%, #100a1c 100%) !important;
}

.sports-img-container {
  margin-bottom: 40px;
  padding-inline: 15px;
  padding-bottom: 30px;
  padding-top: 35px;
  border-radius: 10px;
  background-image: radial-gradient(50% 30% ellipse at center top, #37346a 0%, rgb(0 0 0 / 0%) 100%), radial-gradient(60% 50% ellipse at center bottom, #5a1c49 0%, #100a1c 100%);
  width: 100%;
  margin-top: 10px;

  h4 {
    text-align: center;
    color: #fff;
    font-weight: 500;
    position: relative;
    margin-bottom: 40px;

    &amp;::before {
      content: "";
      position: absolute;
      left: 0px;
      bottom: -11px;
      width: 100%;
      height: 0.7px;
      background: linear-gradient(90deg, transparent 0px, rgb(255, 185, 33) 50%, transparent);
    }
  }
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

.news-grid-item {
  position: relative;
  overflow: hidden;
  height: 200px;
  border-radius: 5px;
  overflow: hidden;
}

.news-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 100%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transform: scale(1);
  opacity: 1;

  &amp;:hover {
    transform: scale(1.1);
    opacity: 0.8;
    filter: brightness(1.2);
  }
}

.news-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 15px;
}

.news-category {
  font-size: 12px;
  text-transform: uppercase;
  color: red;
}

.cstm-news-title {
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}



/* story */

.story-grid {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  padding: 10px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.reals-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: auto;
  width: 13px;
  height: 19px;
  background-color: #fff;
  border-radius: 2px;
}

.reals-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -4px;
  width: 2px;
  height: 16px;
  border-radius: 10px;
  background-color: #fff;
}

.reals-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -4px;
  width: 2px;
  height: 16px;
  border-radius: 10px;
  background-color: #fff;
}

.story-card {
  max-width: 150px;
  width: 100%;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
}


.story_img {
  position: relative;
  height: 200px;
  border-radius: 5px;
  overflow: hidden;

  img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

.story-card p {
  margin-top: 5px;
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0px;
}

.cstm-story-container {
  margin-top: 30px;

  h3 {
    text-align: center;
    margin-bottom: 36px;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    color: #414141;

    &amp;:before {
      content: "";
      position: absolute;
      left: 0;
      bottom: -11px;
      width: 100%;
      height: 0.7px;
      background: linear-gradient(90deg, transparent 0, #ffb921 50%, transparent);
    }
  }
}

/* ========================== */
/* Media Queries */
/* For mobile phones: */
/* ========================== */


@media (max-width: 600px) {
  .sports_banner {
    height: auto;
    margin-bottom: 14px;
    margin-top: 2px;
  }

  .news_sub_wrap {
    padding-top: 10px;
  }
}</pre></body></html>