/* News cards: shared desktop/mobile layout for homepage and /news/. */
.news-section.home-news-layout .section-title {
  margin-bottom: 32px;
  font-size: 56px;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.news-section.home-news-layout .filters,
.news-section.news-page-layout .filters.news-filters-js {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
  padding: 10px;
  border-radius: 16px;
  background: #1c1f26;
}

.news-section.home-news-layout .filters button,
.news-section.news-page-layout .filters.news-filters-js button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 22px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #c2c5ce;
  font-family: "MontserratMedium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.news-section.home-news-layout .filters button img,
.news-section.news-page-layout .filters.news-filters-js button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.news-section.home-news-layout .filters button.active,
.news-section.home-news-layout .filters button:hover,
.news-section.news-page-layout .filters.news-filters-js button.active,
.news-section.news-page-layout .filters.news-filters-js button:hover {
  background: #3f8d43;
  color: #ffffff;
}

.news-section.news-page-layout .search-form {
  margin: 0 0 30px;
}

.news-section.news-page-layout .search-input-group {
  min-height: 56px;
  border-radius: 10px;
  border: 1px solid #4e9947;
  background: #191d24;
}

.news-section.news-page-layout .search-input {
  height: 56px;
  padding: 0 20px;
  color: #f2f4f7;
  font-family: "MontserratMedium", sans-serif;
  font-size: 16px;
}

.news-section.news-page-layout .search-input::placeholder {
  color: #8d919b;
}

.news-section.news-page-layout .search-icon {
  margin: 0 18px;
  color: #9ca1ab;
}

.news-section.home-news-layout .news-grid,
.news-section.news-page-layout #news-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.news-empty-state {
  margin-bottom: 32px;
  padding: 32px 24px;
  border: 1px solid #242934;
  border-radius: 16px;
  background: #1b1f27;
  color: #cfd3da;
  text-align: center;
  font-family: "MontserratMedium", sans-serif;
  font-size: 18px;
  line-height: 1.4;
}

.news-section.home-news-layout .news-carousel-container,
.news-section.news-page-layout .news-carousel-container {
  display: none;
}

.news-section.home-news-layout .news-card.featured,
.news-section.news-page-layout .news-card.featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(300px, 36%, 364px);
  grid-template-areas:
    "category image"
    "content image";
  align-items: start;
  column-gap: 28px;
  row-gap: 16px;
  min-height: 306px;
  margin: 0;
  padding: 22px;
  border: 1px solid #242934;
  border-radius: 16px;
  background: var(--main-bg-color);
  box-shadow: none;
}

.news-section.home-news-layout .news-card.featured:hover,
.news-section.news-page-layout .news-card.featured:hover {
  transform: none;
  border-color: #2a313d;
  box-shadow: none;
}

.news-section.home-news-layout .news-card--no-image,
.news-section.news-page-layout .news-card--no-image {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "category"
    "content";
  min-height: 0;
}

.news-section.home-news-layout .news-card .news-image.first,
.news-section.news-page-layout .news-card .news-image.first {
  display: none;
}

.news-section.home-news-layout .news-card .news-image.last,
.news-section.news-page-layout .news-card .news-image.last {
  display: block;
  grid-area: image;
  width: 100%;
  height: 258px;
  border-radius: 12px;
  overflow: hidden;
}

.news-section.home-news-layout .news-card--no-image .news-image.last,
.news-section.news-page-layout .news-card--no-image .news-image.last {
  display: none;
}

.news-section.home-news-layout .news-image img,
.news-section.news-page-layout .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.news-section.home-news-layout .news-category,
.news-section.news-page-layout .news-category {
  grid-area: category;
  position: static;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  max-width: max-content;
  min-height: 24px;
  margin: 0;
  padding: 4px 11px;
  border-radius: 999px;
  background: #f0c44f;
  color: #191919;
  font-family: "MontserratMedium", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.news-section.home-news-layout .news-category.hockey,
.news-section.news-page-layout .news-category.hockey,
.news-section.home-news-layout .news-category.football,
.news-section.news-page-layout .news-category.football {
  background: #f0c44f;
  color: #191919;
}

.news-section.home-news-layout .news-content,
.news-section.news-page-layout .news-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
}

.news-section.home-news-layout .news-content h3,
.news-section.home-news-layout .news-content .news-card-title,
.news-section.news-page-layout .news-content h3,
.news-section.news-page-layout .news-content .news-card-title {
  margin: 0 0 14px;
  color: #f3f5f7;
  font-family: "MontserratBold", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-section.home-news-layout .news-excerpt,
.news-section.news-page-layout .news-excerpt {
  margin: 0;
  color: #c7cbd3;
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.news-section.home-news-layout .news-meta,
.news-section.news-page-layout .news-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin-top: auto;
  padding-top: 22px;
}

.news-section.home-news-layout .news-date,
.news-section.news-page-layout .news-date {
  margin: 0;
  color: #9fa4af;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.news-section.home-news-layout .read-more,
.news-section.news-page-layout .read-more {
  color: #d5d8de;
  font-family: "MontserratBold", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.news-section.home-news-layout .read-more:hover,
.news-section.news-page-layout .read-more:hover {
  color: #ffffff;
}

.news-section.news-page-layout #news-show-more-wrap {
  margin-top: 0;
}

.news-section.news-page-layout #news-show-more-wrap a {
  border-color: #252a34;
  background: var(--main-bg-color);
}

@media (max-width: 1024px) {
  .news-section.home-news-layout .section-title {
    font-size: 44px;
  }

  .news-section.home-news-layout .news-card.featured,
  .news-section.news-page-layout .news-card.featured {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 34%);
  }
}

@media (max-width: 768px) {
  .news-section.home-news-layout .news-grid.desctop,
  .news-section.news-page-layout .news-grid.desctop {
    display: none;
  }

  .news-section.home-news-layout .news-carousel-container,
  .news-section.news-page-layout .news-carousel-container {
    display: block;
  }

  .news-section.home-news-layout .section-title {
    margin-bottom: 24px;
    font-size: 34px;
    line-height: 1;
  }

  .news-empty-state {
    padding: 24px 18px;
    font-size: 16px;
  }

  .news-section.home-news-layout .filters,
  .news-section.news-page-layout .filters.news-filters-js {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 24px;
    padding: 8px;
  }

  .news-section.home-news-layout .filters button,
  .news-section.news-page-layout .filters.news-filters-js button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .news-section.news-page-layout .search-form {
    margin-bottom: 24px;
  }

  .news-section.news-page-layout .search-input-group {
    min-height: 52px;
  }

  .news-section.news-page-layout .search-input {
    height: 52px;
    font-size: 15px;
  }

  .news-section.home-news-layout .news-carousel-slide .news-card.featured,
  .news-section.news-page-layout .news-carousel-slide .news-card.featured {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "image"
      "category"
      "content";
    min-height: 0;
    row-gap: 16px;
    padding: 18px;
  }

  .news-section.home-news-layout .news-carousel-slide .news-card--no-image,
  .news-section.news-page-layout .news-carousel-slide .news-card--no-image {
    grid-template-areas:
      "category"
      "content";
  }

  .news-section.home-news-layout .news-carousel-slide .news-image.last,
  .news-section.news-page-layout .news-carousel-slide .news-image.last {
    height: 220px;
  }

  .news-section.home-news-layout .news-carousel-slide .news-content h3,
  .news-section.home-news-layout .news-carousel-slide .news-content .news-card-title,
  .news-section.news-page-layout .news-carousel-slide .news-content h3,
  .news-section.news-page-layout .news-carousel-slide .news-content .news-card-title {
    font-size: 18px;
  }

  .news-section.home-news-layout .news-carousel-slide .news-excerpt,
  .news-section.news-page-layout .news-carousel-slide .news-excerpt {
    font-size: 14px;
    -webkit-line-clamp: 4;
  }

  .news-section.home-news-layout .news-carousel-slide .news-meta,
  .news-section.news-page-layout .news-carousel-slide .news-meta {
    gap: 14px;
    padding-top: 18px;
  }
}

header .container nav a.is-active,
header .container nav a.is-active:hover {
  color: #59c53c;
}

header .container nav a.is-active svg,
header .container nav a.is-active:hover svg {
  fill: #59c53c;
}

/* Remove browser blue focus/tap highlight sitewide. */
html {
  -webkit-tap-highlight-color: transparent;
}

:where(
  a,
  button,
  summary,
  input,
  textarea,
  select,
  [role="button"],
  [tabindex],
  img,
  a img,
  button img
) {
  -webkit-tap-highlight-color: transparent;
}

:where(
  a,
  button,
  summary,
  [role="button"],
  [tabindex],
  img,
  a img,
  button img
):focus,
:where(
  a,
  button,
  summary,
  [role="button"],
  [tabindex],
  img,
  a img,
  button img
):focus-visible,
:where(
  a,
  button,
  summary,
  [role="button"],
  [tabindex],
  img,
  a img,
  button img
):active {
  outline: none !important;
  box-shadow: none !important;
}

:where(input, textarea, select):focus,
:where(input, textarea, select):focus-visible,
:where(input, textarea, select):active {
  outline: none !important;
  box-shadow: none !important;
  border-color: #62b55c !important;
}

:where(input[type="checkbox"], input[type="radio"]):focus,
:where(input[type="checkbox"], input[type="radio"]):focus-visible,
:where(input[type="checkbox"], input[type="radio"]):active {
  outline: none !important;
  box-shadow: none !important;
}

:where(a, button)::-moz-focus-inner {
  border: 0;
}


.popular-articles.home-articles-layout .container {
  display: block;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0;
}

.popular-articles.home-articles-layout .section-title {
  margin-bottom: 34px;
}

.popular-articles.home-articles-layout .articles-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.popular-articles.home-articles-layout.no-main-article .main-article {
  display: none;
}

.popular-articles.home-articles-layout.no-main-article .secondary-articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.popular-articles.home-articles-layout .main-article,
.popular-articles.home-articles-layout .secondary-articles {
  display: contents;
}

.popular-articles.home-articles-layout .home-article-card {
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  background: var(--main-bg-color);
  box-shadow: none;
  overflow: hidden;
}

.popular-articles.home-articles-layout .home-article-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.popular-articles.home-articles-layout .main-article .home-article-card {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  grid-template-areas: "image content";
  min-height: 264px;
}

.popular-articles.home-articles-layout .main-article .home-article-card .news-image {
  grid-area: image;
  height: 100%;
}

.popular-articles.home-articles-layout .main-article .home-article-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.popular-articles.home-articles-layout .main-article .home-article-card .news-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px 18px 22px;
}

.popular-articles.home-articles-layout .main-article .home-article-card .news-content h2,
.popular-articles.home-articles-layout .main-article .home-article-card .news-content h3,
.popular-articles.home-articles-layout .main-article .home-article-card .news-content .news-card-title {
  margin: 0 0 14px;
  color: #f4f6f8;
  font-family: "MontserratBold", sans-serif;
  font-size: 20px;
  line-height: 1.35;
}

.popular-articles.home-articles-layout .main-article .home-article-card .news-excerpt {
  margin: 0 0 18px;
  color: #d3d7dc;
  font-size: 14px;
  line-height: 1.38;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.popular-articles.home-articles-layout .main-article .home-article-card .news-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-top: 0;
}

.popular-articles.home-articles-layout .home-article-card .news-date {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.2;
}

.popular-articles.home-articles-layout .home-article-card .read-more {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
}

.popular-articles.home-articles-layout .home-article-card .read-more::after {
  display: none;
}

.popular-articles.home-articles-layout .secondary-articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.popular-articles.home-articles-layout .secondary-articles .home-article-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.popular-articles.home-articles-layout .secondary-articles .home-article-card .news-image {
  height: 265px;
  width: 100%;
}

.popular-articles.home-articles-layout .secondary-articles .home-article-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.popular-articles.home-articles-layout .secondary-articles .home-article-card .news-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 16px 18px 22px;
}

.popular-articles.home-articles-layout .secondary-articles .home-article-card .news-content h2,
.popular-articles.home-articles-layout .secondary-articles .home-article-card .news-content h3,
.popular-articles.home-articles-layout .secondary-articles .home-article-card .news-content .news-card-title {
  margin: 0 0 12px;
  color: #f4f6f8;
  font-family: "MontserratBold", sans-serif;
  font-size: 18px;
  line-height: 1.32;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.popular-articles.home-articles-layout .secondary-articles .home-article-card .news-excerpt {
  margin: 0 0 16px;
  color: #d3d7dc;
  font-size: 13px;
  line-height: 1.38;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.popular-articles.home-articles-layout .secondary-articles .home-article-card .news-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: 0;
}

.popular-articles.home-articles-layout .articles-carousel-container {
  display: none;
}

.popular-articles.home-articles-layout .all-predictions {
  margin-top: 0;
}

.popular-articles.home-articles-layout .all-predictions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  margin-top: 0;
  padding: 0 20px;
  border-radius: 8px;
  border: 0;
  background: var(--main-bg-color);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
}

.popular-articles.home-articles-layout .all-predictions a:hover {
  background: #20232b;
}

@media (max-width: 1024px) {
  .popular-articles.home-articles-layout .main-article .home-article-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  }
}

@media (max-width: 768px) {
  .popular-articles.home-articles-layout .articles-grid.noslide {
    display: none;
  }

  .popular-articles.home-articles-layout .articles-carousel-container {
    display: block;
  }

  .popular-articles.home-articles-layout .articles-carousel-nav.top {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 18px;
  }

  .popular-articles.home-articles-layout .articles-carousel-prev,
  .popular-articles.home-articles-layout .articles-carousel-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: #17191f;
    color: #fff;
  }

  .popular-articles.home-articles-layout .articles-carousel-track {
    display: flex;
    transition: transform 0.3s ease;
  }

  .popular-articles.home-articles-layout .articles-carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .popular-articles.home-articles-layout .articles-carousel-slide .main-article {
    display: block;
  }

  .popular-articles.home-articles-layout .articles-carousel-slide .home-article-card {
    display: flex;
    flex-direction: column;
  }

  .popular-articles.home-articles-layout .articles-carousel-slide .home-article-card .news-image {
    height: 220px;
  }

  .popular-articles.home-articles-layout .articles-carousel-slide .home-article-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .popular-articles.home-articles-layout .articles-carousel-slide .home-article-card .news-content {
    padding: 18px;
  }

  .popular-articles.home-articles-layout .articles-carousel-slide .home-article-card .news-content h2,
  .popular-articles.home-articles-layout .articles-carousel-slide .home-article-card .news-content h3,
  .popular-articles.home-articles-layout .articles-carousel-slide .home-article-card .news-content .news-card-title {
    font-size: 18px;
  }

  .popular-articles.home-articles-layout .articles-carousel-slide .home-article-card .news-excerpt {
    -webkit-line-clamp: 4;
  }

  .popular-articles.home-articles-layout .articles-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 0 0 18px;
  }

  .popular-articles.home-articles-layout .articles-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
  }

  .popular-articles.home-articles-layout .articles-dot.active {
    background: #62b55c;
    transform: scale(1.15);
  }

  .popular-articles.home-articles-layout .all-predictions a {
    min-height: 42px;
    font-size: 15px;
  }
}



:where(
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="file"]):not([type="image"]),
  textarea,
  select,
  .search-input,
  .search-input-group,
  .filter-select
) {
  background: var(--main-bg-color);
}

.predictions-page-content-section {
  margin-top: 36px;
  margin-bottom: 80px;
}

.predictions-page-content {
  padding: 28px 30px;
  border-radius: 16px;
  background: var(--main-bg-color);
}
