:root {
  /* OLD COLORS */
  /* --black: #000000;
  --white: #ffffff;
  --blue: #1e284a;
  --alt-blue: #2c3764;
  --gray-blue: #525e75;
  --lighter-blue: #1f284a;
  --dark-blue: #020f3e;
  --turquoise: #65bae8;
  --red: #ff0000;
  --teams-bg: rgba(101, 186, 232, 0.7);
  --breaking-bg: rgba(2, 15, 62, 0.9);
  --footer-bg: #151c33;
  --light-gray: #e7e7e7;
  --green: #62ff97;
  --yellow: #ffdd66;
  --orange: #ff2e00;
  --widget-bg: #353e5c;
  --widget-bg-alt: #212d50;
  --team-bg: #353d5c; */

  /* NEW COLORS */
  --black: #000000;
  --blue-1: #1e284a;
  --blue-2: #394366;
  --blue-3: #aab2cf;
  --blue-4: #062fcc;
  --blue-5: #0248f7;
  --blue-6: #6ec8f9;
  --blue-6b: #4bb9f4;
  --grey-1: #d9d9d9;
  --grey-2: #efefef;
  --grey-3: #f6f6f6;
  --grey-4: #8a8fa0;
  --petrol: #0e5d7c;
  --red: #f61950;
  --white: #ffffff;

  --font-title: "Sansation", sans-serif;
  --font-title-inner: "Sansation", sans-serif;
  --font-text: "Open Sans", serif;

  --andko-color: #06f;

  --default-transition: all 0.3s ease;
  --color-transition: color 0.3s ease;
  --background-transition: background-color 0.3s ease;

  --cat-bg: #394366;
  --cat-blob-bg: #6ec8f9;
}

/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  background-color: var(--blue-1);
  color: var(--white);
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6525;
  -webkit-font-smoothing: antialiased;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.row {
  --bs-gutter-x: 20px;
}

/* body.search-popup-active {
  overflow: hidden;
} */

.header-actions-btn-icon--search {
  display: inline-block;
}
.header-actions-btn-icon--close {
  display: none;
}

body.search-popup-active .header-actions-btn-icon--search {
  display: none;
}
body.search-popup-active .header-actions-btn-icon--close {
  display: inline-block;
}

body.search-popup-active .header-actions-btn--menu {
  display: none !important;
}

.header-actions-btn-icon--menu {
  display: inline-block;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
}

a,
button {
  text-decoration: none;
  transition: all 0.3s ease;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.wp-post-image {
  display: block;
  height: auto;
  width: 100%;
}

.wp-post-image img {
  display: block;
  height: auto;
  width: 100%;
}

.mb-25 {
  margin-bottom: 12px;
}

.col.col--sidebar {
  flex: 0 0 324px;
  height: max-content;
  max-width: 324px;
  padding-top: 88px;
  position: sticky;
  top: 0;
}

.mb-sec-top-post .col.col--sidebar {
  height: auto;
  padding-top: 0;
  position: relative;
  top: auto;
}

.col--opta-sidebar .sidebar-widget {
  margin-bottom: 32px;
}

.col--opta-sidebar .news-list-wrapper {
  margin-top: 24px;
}

.mb-sec-top-post {
  height: 100%;
}

.top-post-author a {
  color: var(--blue-6);
  font-size: 16px;
  font-weight: 700;
  transition: var(--color-transition);
}

.top-post-author a:hover {
  color: var(--blue-5);
}

.post .article-content img,
.post .article-content figure {
  max-width: 100%;
  height: auto;
}

.sidebar-widget--news {
  display: flex;
  flex-direction: column;
  height: 600px;
  overflow: auto;
}

.sidebar-widget--news::-webkit-scrollbar {
  width: 6px;
}

.sidebar-widget--news::-webkit-scrollbar-thumb {
  background-color: var(--blue-3);
  border-radius: 3px;
}

.sidebar-widget--news::-webkit-scrollbar-thumb:hover {
  background-color: var(--blue-6);
}

.sidebar-widget .news-list-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sidebar-widget .news-list-wrapper .ad-box {
  order: 0;
  margin: 16px -16px;
  overflow: hidden;
}

.sidebar-widget .news-list-wrapper article:nth-of-type(1) {
  order: -3;
}

.sidebar-widget .news-list-wrapper article:nth-of-type(2) {
  order: -2;
}

.sidebar-widget .news-list-wrapper article:nth-of-type(3) {
  order: -1;
}

.sidebar-widget .news-list-wrapper article {
  order: 1;
}

.sidebar-widget .news-list-wrapper .news-list-wrapper-bottom {
  order: 2;
}

.col--main {
  flex: 1;
  min-width: 0;
}

.view-more-cta {
  color: var(--blue-6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.view-more-cta:hover {
  gap: 14px;
}

.view-more-cta--blue {
  color: var(--blue-5);
}

.view-more-cta--white {
  color: var(--white);
}

.view-more-cta svg {
  width: 24px;
}

.view-more-cta svg path {
  fill: var(--blue-6);
  transition: all 0.3s ease;
}

.view-more-cta--white svg path {
  fill: var(--white);
}

.view-more-cta--blue svg path {
  fill: var(--blue-5);
}
.news-list-wrapper-bottom .view-more-cta {
  padding: 24px 0;
}

.btn {
  background-color: var(--blue-6);
  border: 2px solid var(--blue-6);
  border-radius: 80px;
  color: var(--blue-1);
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  padding: 6px 20px;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  background-color: transparent;
  border-color: var(--blue-6);
  color: var(--blue-6);
}

.play-btn {
  background-color: var(--blue-5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 72px;
  padding: 0;
  padding-left: 6px;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}

.play-btn:hover {
  background-color: var(--blue-6);
}

/* .play-btn svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
} */

.play-btn svg path {
  fill: var(--white);
  transition: all 0.3s ease;
}

.play-btn:hover svg path {
  fill: var(--blue-1);
}

/* Header */
.site-header {
  background-color: var(--blue-1);
  box-shadow: 0px 4px 24px 0px #000000e5;
  font-family: var(--font-title);
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  padding: 20px 32px;
  z-index: 50;
}

.header-actions-btn {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

.admin-bar header {
  top: 32px;
}

.site-header-logo img {
  width: 200px;
}

/* Search Popup */

.search-popup {
  position: fixed;
  left: 0;
  top: 72px;
  height: calc(100% - 72px);
  width: 100%;
  background-color: #00000066;
  display: flex;
  align-items: flex-start;
  z-index: 40;
}

.admin-bar .search-popup {
  top: 104px;
  height: calc(100% - 104px);
}

.search-popup-inner {
  background: var(--blue-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
  width: 100%;
}

.mb-search-form {
  display: flex;
  max-width: 480px;
  width: 100%;
  position: relative;
}

.mb-search-form input[type="search"] {
  background: var(--grey-3);
  border: none;
  border-radius: 80px;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  font-size: 16px;
  outline: none;
  padding: 12px 100px 12px 20px;
}

.mb-search-form input[type="search"]::placeholder {
  color: var(--blue-1);
  opacity: 1;
  font-size: 16px;
}

.mb-search-form input[type="search"]:-ms-input-placeholder {
  color: var(--blue-1);
}

.mb-search-form input[type="search"]::-ms-input-placeholder {
  color: var(--blue-1);
}

.mb-search-form button {
  background: var(--blue-5);
  border-radius: 80px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  position: absolute;
  right: -1px;
  top: 0;
  height: 100%;
  width: auto;
}

.mb-search-form button:hover {
  background: var(--blue-6);
}

.mb-search-form button svg {
  height: auto;
  width: 24x;
}

.mb-search-form button svg path {
  transition: all 0.3s ease;
}

.mb-search-form button:hover svg path {
  fill: var(--blue-1);
}

.main-menu {
  gap: 32px;
}

.main-menu ul,
.main-menu li {
  list-style: none;
}

.main-menu ul {
  padding: 0;
}

.main-menu > li {
  position: relative;
}

.main-menu li > a {
  color: var(--blue-1);
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.main-menu > li > a {
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  position: relative;
  white-space: nowrap;
}

.main-menu > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 25px;
  width: 100%;
}

.main-menu .non-link > a {
  cursor: default;
}

.menu-level-2.non-link {
  pointer-events: none;
}

.menu-level-2.non-link > a {
  font-family: var(--font-title);
  font-weight: 700;
}

.mega-menu-dropdown {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 25px);
  background-color: var(--white);
  border-radius: 16px;
  padding: 16px 0 20px;
  min-width: 276px;
}

.mega-menu-dropdown > .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-level-1 {
  font-family: var(--font-text);
}

.menu-level-1 > a {
  padding: 10px 24px;
  position: relative;
}

.menu-level-1 > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 4px;
  width: 100%;
}

.menu-level-1.menu-item-has-children > a,
.menu-level-1.menu-item-has-posts > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-item-arrow-right {
  display: block;
  width: 24px;
}

.menu-item-arrow-right svg path {
  fill: var(--white);
}

.mega-menu-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: var(--grey-3);
  padding: 20px;
  border-radius: 0 16px 16px 0;
  height: 100%;
  width: 510px;
  overflow: auto;
}

.mega-menu-submenu .sub-menu {
  flex: 1;
}

.mega-menu-category-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  pointer-events: none;
}

.mega-menu-category-icon img {
  border-radius: 4px;
  display: block;
  height: 64px;
  object-fit: cover;
  width: 56px;
}

.mega-menu-posts {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: var(--grey-3);
  padding: 20px;
  border-radius: 0 16px 16px 0;
  height: 100%;
  width: 510px;
  overflow: auto;
}

.mega-menu-posts .view-more-cta {
  display: inline-flex;
}

.main-menu .menu-level-2 > a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 8px;
  white-space: nowrap;
}

.main-menu .menu-level-2 > a > img {
  height: auto;
  width: 24px;
}

.sub-menu.column-2 {
  column-count: 2;
  column-gap: 16px;
}

.mega-menu-posts-heading {
  color: var(--blue-1);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 20px;
}

.mega-menu-posts .morenews-post {
  background-color: var(--white);
}

.mega-menu-posts .mega-menu-posts-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

/* Generic */
.mb-sec-padding {
  padding: 90px 0;
}

.mb-sec-top-post {
  padding: 40px 0 60px;
}

.mb-sec-news {
  background-color: var(--blue-1);
}

.mb-sec-news--top-news {
  background-color: var(--blue-2);
  background-image: url(../../images/top-news-bg.svg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 100%;
}

.mb-sec-news--superleague-2 {
  background-image: url(../../images/superleague-2-bg.svg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}

.mb-sec-news--womens-football {
  background-image: url(../../images/womens-football-bg.svg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}

.mb-sec-news--more-news {
  background-color: var(--blue-6);
  background-image: url(../../images/more-news-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0;
  overflow: hidden;
}

.mb-sec-top-post {
  background-image: url(../../images/top-post-bg.svg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}

.mb-sec-bloggers {
  background-image: url(../../images/bloggers-bg.svg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto;
}

.mb-sec-reels {
  background-image: url(../../images/reels-bg.svg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}

.mb-sec-news--white {
  background-color: var(--grey-3);
  color: var(--blue-1);
}

.mb-sec-news--true-white {
  background-color: var(--white);
  color: var(--blue-1);
}

.mb-sec-news--petrol {
  background-color: var(--petrol);
  color: var(--white);
}

.mb-sec-news-heading {
  color: var(--white);
  margin-left: -34px;
}

.mb-sec-news--white .mb-sec-news-heading {
  color: var(--blue-1);
}

.mb-sec-news--petrol .mb-sec-news-heading {
  color: var(--white);
}

.mb-sec-news--more-news .mb-sec-heading {
  color: var(--blue-1);
}

.mb-sec-heading {
  font-size: 36px;
  font-weight: 700;
}

.mb-sec-news-heading a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.1;
}

.mb-sec-news-heading a:hover {
  color: var(--blue-6);
}

.mb-sec-news--white .mb-sec-news-heading a:hover {
  color: var(--blue-5);
}

.mb-sec-news--petrol .mb-sec-news-heading a:hover {
  color: var(--blue-6);
}

/* News Section */
.sec-news-post--portrait {
  margin-bottom: 40px;
}

.sec-news-post--landscape {
  margin-bottom: 32px;
}

.sec-news-post.sec-news-post--landscape img {
  height: 130px;
}

.sec-news-post .cat a {
  color: var(--blue-6);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.mb-sec-news--white .sec-news-post .cat a {
  color: var(--blue-5);
}

.mb-sec-news--petrol .sec-news-post .cat a {
  color: var(--white);
}

.sec-news-post--landscape .cat a {
  font-size: 12px;
}

.sec-news-post .cat a:hover {
  color: var(--blue-6b);
}

.mb-sec-news--white .sec-news-post .cat a:hover {
  color: var(--blue-1);
}

.mb-sec-news--petrol .sec-news-post .cat a:hover {
  color: var(--blue-6);
}

.sec-news-post h2 a {
  color: var(--white);
  display: inline-block;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
}

.sec-news-post h2 a:hover {
  color: var(--blue-6);
}

.sec-news-post h3 a {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.mb-sec-news--true-white .sec-news-post h3 a,
.mb-sec-news--white .sec-news-post h3 a {
  color: var(--blue-1);
}

.mb-sec-news--petrol .sec-news-post h3 a {
  color: var(--white);
}

.sec-news-post h3 a:hover {
  color: var(--blue-6);
}

.mb-sec-news--white .sec-news-post h3 a:hover {
  color: var(--blue-5);
}

.mb-sec-news--petrol .sec-news-post h3 a:hover {
  color: var(--blue-6);
}

.sec-news-post--landscape h3 a {
  font-size: 18px;
}

.sec-news-post .datetime {
  font-size: 14px;
}

.sec-news-post img {
  border-radius: 16px 0 16px 0;
  object-fit: cover;
}

.sec-news-thumb-wrapper {
  position: relative;
}

.sec-news-post .video-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 40px;
  width: 40px;
  pointer-events: none;
}

.sec-news-post--landscape .video-icon {
  height: 24px;
  width: 24px;
}

.sec-news-post .video-icon img {
  border-radius: 0 !important;
  height: inherit !important;
  width: inherit !important;
}

.mb-sec-news-ad {
  margin-top: 90px;
}

.top-post-info {
  height: 100%;
}

.top-post-info .cat {
  margin-bottom: 20px;
}

.top-post-info h2 {
  margin-bottom: 12px;
}

.top-post-info .datetime {
  font-weight: 600;
  margin-bottom: 16px;
}

.top-post-info .related-post {
  margin-top: auto;
}

.top-post-image img {
  min-height: 600px;
  object-fit: cover;
}

.related-post {
  background-color: var(--blue-6);
  background-image: url(../../images/related-post-bg.svg);
  background-position: top -7px right -9px;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 16px 0 16px 0;
  overflow: hidden;
  padding: 24px 16px;
  position: relative;
  transition: all 0.3s ease;
}

.related-post:hover {
  background-color: var(--white);
}

.related-post-heading {
  color: var(--blue-1);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0;
}

.related-post-title {
  color: var(--blue-1);
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

.related-post-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* Videos */
.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 4px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container .controls {
  position: absolute;
  top: calc(50% - 75px);
  left: calc(50% - 75px);
  z-index: 2;
  opacity: 1;
  transition: all 1s;
}

.video-container .playbtn,
.video-container .pausebtn {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  height: 150px;
  width: 150px;
}

.video-container .playbtn svg,
.video-container .pausebtn svg {
  max-width: 100%;
  max-height: 100%;
}

.video-container .fullscreen {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2 !important;
  cursor: pointer;
  z-index: 2147483647;
}

.mb-carousel-nav-btn {
  background: var(--white);
  border: none;
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  padding: 0;
  width: 40px;
  transition: all 0.3s ease;
}

.mb-carousel-nav-btn--dark {
  background: var(--blue-1);
}

.mb-carousel-nav-btn.mb-carousel-nav-btn--transparent {
  background: transparent;
}

.mb-carousel-nav-btn:hover {
  background: var(--blue-6);
}

.mb-carousel-nav-btn svg {
  width: 22px;
}

.mb-carousel-nav-btn svg path {
  fill: var(--blue-1);
  transition: all 0.3s ease;
}

.mb-carousel-nav-btn--dark svg path {
  fill: var(--white);
}

.mb-carousel-nav-btn:hover svg path {
  fill: var(--blue-1);
}

.mb-carousel-nav-btn--dark {
  background: var(--blue-1);
}

.mb-carousel-nav-btn--dark svg path {
  fill: var(--white);
}

/* Bloggers section */
.mb-sec-bloggers {
  overflow: hidden;
}

.mb-sec-bloggers .swiper {
  overflow: visible;
}

.mb-sec-bloggers .swiper-slide {
  width: 300px;
}

.mb-sec-bloggers-card {
  display: block;
  position: relative;
}

.mb-sec-bloggers-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.mb-sec-bloggers-card-fig {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.mb-sec-bloggers-card-fig::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--blue-6);
  height: 100%;
  width: 12px;
  transition: all 0.3s ease;
}

.mb-sec-bloggers-card:hover .mb-sec-bloggers-card-fig::before {
  width: 20px;
}

.mb-sec-bloggers-card-img {
  height: 380px;
  object-fit: cover;
}

.mb-sec-bloggers-sponsor {
  position: relative;
}

.mb-sec-bloggers-sponsor-text {
  font-size: 24px;
  font-weight: 700;
}

.mb-sec-bloggers-sponsor-brand {
  height: 62px;
  margin-left: 12px;
  width: auto;
}

.mb-sec-bloggers-card-title {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.mb-sec-bloggers-card:hover .mb-sec-bloggers-card-title {
  color: var(--blue-6);
}

.mb-sec-bloggers-glow {
  mix-blend-mode: screen;
  transform: translate(56px);
  position: absolute;
  right: 100%;
  width: 179px;
}

/* Highlights */
.mb-sec-highlights {
  background: var(--grey-3);
  color: var(--blue-1);
  overflow: hidden;
}

.mb-sec-highlights .swiper {
  overflow: visible;
}

.mb-sec-news--more-news .swiper {
  overflow: visible;
}

.mb-sec-highlights .swiper-slide {
  width: 460px;
}

.bestof-slider-wrapper {
  overflow: hidden;
}

.bestof-slider {
  overflow: visible;
}

.bestof-slider .swiper-slide {
  width: 460px;
}

.mb-sec-bloggers {
  overflow: hidden;
}

.bestof-post {
  background-color: var(--blue-5);
  background-image: url(../../images/bestof-post-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 256px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.bestof-post:hover {
  background-color: var(--blue-4);
}

.bestof-post:hover .bestof-post-author::after {
  background-color: var(--blue-4);
}

.bestof-post-title a {
  color: var(--white);
  display: block;
  font-family: inherit;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.bestof-post-title a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.bestof-post-date {
  color: var(--white);
  font-size: 14px;
}

.bestof-post-author {
  position: absolute;
  right: -1px;
  top: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--blue-6);
  border-radius: 0 0 0 16px;
  padding: 12px 12px 12px 24px;
  transition: all 0.3s ease;
}

.bestof-post-author:hover {
  background-color: var(--white);
}

.bestof-post-author:hover::before {
  background-color: var(--white);
}

.bestof-post-author::before,
.bestof-post-author::after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  height: 34px;
  width: 44px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.bestof-post-author::before {
  background-color: var(--blue-6);
  height: 33px;
  width: 43px;
}

.bestof-post-author::after {
  background-color: var(--blue-5);
  border-radius: 0 16px 0 0;
}

.bestof-post-author-name a {
  color: var(--blue-1);
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0;
}

.bestof-post-author-name a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.bestof-post-author-avatar img {
  display: block;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  object-fit: cover;
}

.morenews-slider .swiper-wrapper {
  align-items: stretch;
}

.morenews-slider .swiper-slide {
  height: auto;
  width: 360px;
}

.morenews-slider .swiper-slide .morenews-post {
  height: 100%;
}

.morenews-post {
  display: flex;
  align-items: stretch;
  gap: 12px;
  background-color: var(--grey-3);
  border-radius: 8px;
  padding: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.morenews-post:hover {
  background-color: var(--blue-1);
}

.morenews-post-image {
  flex: 0 0 120px;
  max-width: 120px;
}

.morenews-post-image a {
  display: block;
  height: 100%;
}

.morenews-post-image img {
  border-radius: 4px;
  display: block;
  height: 100%;
  object-fit: cover;
}

.morenews-post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.morenews-post-title a {
  color: var(--blue-1);
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.morenews-post:hover .morenews-post-title a {
  color: var(--white);
}

.morenews-post-title a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.morenews-post-date {
  color: var(--blue-1);
  font-size: 14px;
  transition: all 0.3s ease;
}

.morenews-post:hover .morenews-post-date {
  color: var(--white);
}

/* Category */
.category-header {
  background: url(../../images/category-bg.svg) no-repeat left bottom
    var(--cat-bg);
  padding: 40px 0 200px;
  position: relative;
  overflow: hidden;
}

.category-header--B40A0D {
  background-image: url(../../images/category-bg-B40A0D.svg);
}

.category-header--009E1D {
  background-image: url(../../images/category-bg-009E1D.svg);
}

.category-header--24282A {
  background-image: url(../../images/category-bg-24282A.svg);
}

.category-header--E89805 {
  background-image: url(../../images/category-bg-E89805.svg);
}

.category-header--0248F7 {
  background-image: url(../../images/category-bg-0248F7.svg);
}

.category-header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1000px;
  height: 1000px;
  background: var(--cat-blob-bg);
  border-radius: 50%;
  transform: translate(-30%, 60%);
  filter: blur(420px);
  z-index: 0;
  opacity: 0.2;
}

.category-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1000px;
  height: 1000px;
  background: var(--cat-blob-bg);
  border-radius: 50%;
  transform: translate(10%, 0%);
  filter: blur(420px);
  z-index: 0;
  opacity: 0.5;
}

.author .category-header {
  background: url(../../images/author-bg.svg) no-repeat left bottom
    var(--petrol);
  background-size: cover;
}

.author .category-header::before,
.author .category-header::after {
  display: none;
}

.category-grigori-matia .category-header {
  background: var(--white);
  padding: 40px 0 100px;
}

.category-grigori-matia .category-header::before,
.category-grigori-matia .category-header::after {
  display: none;
}

.search-results .category-header {
  background: var(--white);
  padding: 40px 0 100px;
}

.search-results .category-header::before,
.search-results .category-header::after {
  display: none;
}

.category-header .container {
  position: relative;
  z-index: 1;
}

.web-tv-category .category-header {
  background: var(--white);
  padding: 40px 0 100px;
}

.web-tv-category .category-header::before,
.web-tv-category .category-header::after {
  display: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  color: var(--white);
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.breadcrumb span,
.breadcrumb a {
  color: var(--white);
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.breadcrumb a:hover {
  color: var(--blue-6);
}

.breadcrumb span::before,
.breadcrumb a::before {
  content: "/";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  pointer-events: none;
}

.breadcrumb li:last-child a::before,
.breadcrumb li:last-child span::before {
  display: none;
}

.breadcrumb.blue {
  color: var(--blue-1);
}

.breadcrumb.blue span,
.breadcrumb.blue a {
  color: var(--blue-1);
  white-space: nowrap;
}

.breadcrumb.blue a:hover {
  color: var(--blue-6);
}

.breadcrumb.blue span::before,
.breadcrumb.blue a::before {
  color: var(--blue-1);
}

.breadcrumb li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.ad-banner.in-ros {
  margin: 40px 0;
}

.cat-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cat-title .icon:not(:has(.avatar)) img {
  border-radius: 4px;
  max-width: 56px;
}

.cat-title h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
}

.search-results .cat-title h1 {
  font-size: 28px;
}

.cat-title.blue h1 {
  color: var(--blue-1);
}

.share-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  gap: 8px;
}

.share-box .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-box a {
  background: var(--blue-1);
  display: flex;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: var(--default-transition);
}

.share-box a:hover {
  background: var(--blue-6);
}

.share-box.white a {
  background: var(--white);
  color: var(--blue-1);
}

.share-box.white a:hover {
  background: var(--blue-1);
  color: var(--white);
}

.share-box.white path {
  fill: var(--blue-1);
  transition: var(--default-transition);
}

.share-box.white a:hover path {
  fill: var(--white);
}

.share-box.gray a {
  background: var(--grey-2);
  color: var(--blue-1);
}

.share-box.gray a:hover {
  background: var(--blue-1);
  color: var(--white);
}

.share-box.gray path {
  fill: var(--blue-1);
  transition: var(--default-transition);
}

.share-box.gray a:hover path {
  fill: var(--white);
}

.category-container {
  background: var(--white);
  transform: translateY(-100px);
  border-radius: 24px;
  padding: 40px;
  max-width: 1370px;
}

.single-post.single-post.single-format-standard .article-header {
  padding: 40px 0;
}

.single-post.single-post.single-format-standard .article-header .breadcrumb {
  margin-bottom: 0;
}

.single-post.single-post.single-format-standard .article-header ~ section .category-container {
  transform: none;
}

.single-post.single-post.single-format-standard .article-header ~ section .category-container .sidebar {
  top: 140px;
}

.show-content .category-container {
  background: transparent;
  transform: translate(0);
  padding: 0;
  max-width: 1300px;
}

.single-format-video .category-container {
  background: transparent;
  transform: none;
  max-width: 1320px;
  padding: 0;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}

.category-container .post-list {
  width: calc(100% - 320px);
}

.category-container .post-list.full {
  width: 100%;
}

.category-container .web-tv-list {
  width: 100%;
}

.category-col-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--blue-3);
}

.category-col-wrapper.no-border {
  padding-bottom: 0;
  border-bottom: none;
}

.category-web-tv .category-col-wrapper,
.search-results .category-col-wrapper {
  padding-bottom: 0;
  border-bottom: none;
}

.category-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  list-style: none;
  margin: 0 0 33px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--grey-1);
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.category-nav::-webkit-scrollbar {
  height: 4px;
}

.category-nav::-webkit-scrollbar-thumb {
  background-color: var(--blue-3);
  border-radius: 3px;
}

.category-nav::-webkit-scrollbar-thumb:hover {
  background-color: var(--blue-6);
}

.category-nav a {
  font-family: var(--font-title);
  color: var(--blue-2);
  font-size: 20px;
  font-weight: 700;
  transition: var(--default-transition);
}

.category-nav a:hover {
  color: var(--blue-6);
}

.category-nav a.current-category {
  color: var(--blue-5);
  position: relative;
}

.category-nav a.current-category::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 100%;
  height: 3px;
  background: var(--blue-5);
}

.read-more {
  color: var(--blue-5);
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 8px;
}

.content-bar {
  width: 970px;
}

.popular-news {
  margin-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--blue-3);
}

.more-news {
  margin-top: 32px;
}

.popular-news h2,
.more-news h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
}

.more-news .sec-news-post img {
  height: 250px;
}

.popular-news-post {
}

.thumb-wrap {
  position: relative;
}

.popular-news-post .thumb-wrap {
  position: relative;
}

.popular-news-post .thumb-wrap .thumb {
  background-color: var(--black);
  height: 540px;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.popular-news-post .thumb-wrap .thumb::before {
  content: "";
  display: block;
  background: var(--blue-6);
  width: 12px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 16px 0 0 16px;
}

.popular-news-post .thumb-wrap .thumb::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 1) 100%
  );
  left: 0;
  top: 0;
}

.popular-news-post .thumb-wrap .thumb img {
  height: 540px;
  object-fit: cover;
}

.popular-news-post .article-details {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.popular-news-post .article-details .cat {
  background: var(--blue-1);
  color: var(--blue-6);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  display: inline-block;
  padding: 8px 16px;
  transition: var(--default-transition);
}

.popular-news-post .article-details h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  transition: var(--default-transition);
}

.popular-news-post:hover {
  cursor: pointer;
}

.popular-news-post:hover .article-details h3 {
  color: var(--blue-6);
}

.popular-news-post:hover .article-details .cat {
  background: var(--blue-6);
  color: var(--white);
}

/* Single */
.article-header {
  background: var(--white);
  padding: 40px 0 100px;
  position: relative;
  overflow: hidden;
}

.article-header.show-single {
  background: var(--blue-2);
  padding: 40px 0 0;
}

.single-format-video .article-header,
.single-format-chat .article-header {
  background: var(--blue-1);
  padding-bottom: 0;
}

.single-format-video .article-header.show-single {
  background: var(--blue-2);
}

.single-game .Opta-Matchdata {
  background: none;
}

.single-game .Opta .Opta-MatchHeader tr.Opta-MatchHeader-Details td > div,
.single-game .Opta .Opta-MatchHeader div.Opta-MatchHeader-Details > div {
  background: none;
}

.single-game .game-content {
  background: var(--blue-2);
  padding: 40px;
  border-radius: 16px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 64px;
}

.single-game .post-details {
  width: calc(100% - 300px);
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.single-game .post-details.full {
  width: 100%;
}

.single-game .post-details h2 {
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 24px;
}

.single-game aside {
  width: 300px;
  background: var(--blue-1);
  position: sticky;
  top: 124px;
  border-radius: 8px;
}

.single-game aside .sidebar-widget {
  background: var(--blue-1);
  border-radius: 8px;
  padding: 16px;
  color: var(--white);
}

.single-game .game-details {
  margin-bottom: 54px;
}

.match-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.match-details .game-info {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  justify-content: center;
  text-align: center;
}

.match-details .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 250px;
  padding-top: 28px;
}

.match-details .team .logo-thumb {
  max-width: 80px;
}

.match-details .sponsor {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.match-details .game-data {
  font-family: var(--font-title);
}

.match-details .team-name {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
}

.match-details .scores {
  font-family: var(--font-title);
  font-size: 56px;
  font-weight: 700;
}

.match-details .team-scorers {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.match-details .team-scorers p {
  background: url(../../images/small-emblem-blue.svg) no-repeat left center;
  background-size: 24px 24px;
  padding-left: 32px;
}

.match-details .venue {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  margin-top: 40px;
}

.match-details .info {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.match-details .info strong {
  font-size: 28px;
}

.show-content {
  background: var(--blue-2);
  padding-bottom: 64px;
}

/* .mb-sec.mb-sec-news.bet365 {
  background-image: url(../../images/365gameskin.jpg);
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
} */

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

.author-date {
  display: flex;
  gap: 20px;
  align-items: center;
}

.author-date .datetime {
  position: relative;
}

.author-datetime {
  display: flex;
  gap: 25px;
}

.author-name a {
  color: var(--blue-5);
  font-weight: 700;
  transition: var(--default-transition);
}

.author-name a:hover {
  color: var(--blue-6);
}

.author-date .datetime span {
  width: 8px;
  height: 2px;
  display: inline-block;
  background: var(--blue-6);
  margin: 0 5px;
}

.author-date .datetime::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-6);
}

.post .author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post .author .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 0 none;
}

.post .author .author-avatar::after {
  display: none;
}

.post h1 {
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
}

.post .article-thumb {
  display: block;
  margin-top: 20px;
  position: relative;
}

.post .article-thumb .legend {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  font-size: 14px;
  border-radius: 0 0 24px 0;
  text-align: right;
}

.post .article-thumb img {
  border-radius: 24px 0;
}

.post .article-content {
  margin-top: 48px;
  padding-inline: 80px;
}

.page .article-content a {
  color: var(--blue-5);
}

.post .article-tags {
  padding: 32px 0;
  border-bottom: 1px solid var(--blue-3);
}

.tag-list {
  padding: 32px 0;
  border-bottom: 1px solid var(--blue-3);
  display: flex;
  gap: 18px;
  font-size: 16px;
  font-weight: 700;
}

.tag-list span {
  white-space: nowrap;
}

.tag-list .tags {
  display: flex;
  list-style: none;
  gap: 16px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.tag-list .tags a {
  background: var(--blue-1);
  color: var(--blue-6);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--default-transition);
}

.tag-list .tags a:hover {
  background: var(--blue-6);
  color: var(--white);
}

.post-details .cat a {
  color: var(--blue-5);
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}

.article-content h2 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 24px;
}

.article-content p {
  margin-bottom: 24px;
}

.article-content p img {
  height: auto;
}

.article-content iframe {
  max-width: 100%;
}

.article-content p a {
  color: var(--blue-5);
  font-weight: 600;
  text-decoration: underline;
}

.article-content p a:hover {
  color: var(--blue-6);
}

.article-content .ad-box {
  margin-bottom: 24px;
}

.highlight-promo {
  margin: 72px 0;
}

.highlight-promo a,
.highlight-promo span {
  color: var(--blue-5);
  text-decoration: underline;
  transition: var(--color-transition);
}

.highlight-promo a:hover {
  color: var(--blue-6);
  text-decoration: none;
}

/* Sidebar */
.sidebar {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: sticky;
  top: 240px;
}

.ad-box {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-box div[id*="xau"] {
  max-width: 100%;
}

.ad-box div[id*="xau"] * {
  max-width: 100%;
}

.ad-box iframe {
  max-width: 100%;
}

.ad-box img {
  height: auto;
  max-width: 100%;
}

.sidebar-widget {
  background: var(--blue-2);
  border-radius: 8px;
  padding: 16px;
  color: var(--white);
}

.sidebar-widget.sidebar-widget--blue-1 {
  background: var(--blue-1);
}

.sidebar-widget h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.web-tv-list article {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--blue-3);
}

.web-tv-list article:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.web-tv-list article a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  transition: var(--default-transition);
}

.web-tv-list article a:hover {
  color: var(--blue-6);
}

.web-tv-list article a img {
  width: 96px;
  height: 72px;
  border-radius: 8px 0 8px 0;
  object-fit: cover;
}

.web-tv-list article a .details {
  display: flex;
  flex-direction: column;
  width: 140px;
}

.web-tv-list article a .details h4 {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}

.web-tv-list article a .details p {
  font-size: 12px;
  margin: 0;
}

.news-list-wrapper {
  margin-top: 14px;
}

.news-list-wrapper-bottom {
  background: var(--blue-2);
  position: sticky;
  bottom: -16px;
  left: 0;
  margin-bottom: -12px;
  margin-left: -16px;
  margin-right: -16px;
  margin-top: auto;
  width: calc(100% + 32px);
}

.sidebar-widget.sidebar-widget--blue-1 .news-list-wrapper-bottom {
  background-color: var(--blue-1);
  bottom: auto;
  margin-bottom: 0;
  position: relative;
}

.sidebar-widget.sidebar-widget--blue-1 .view-more-cta {
  padding-bottom: 8px;
}

.news-list-wrapper article {
  margin-top: 12px;
}

.news-list-wrapper article:first-child {
  margin-top: 0;
}

.news-list-wrapper article a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  transition: var(--default-transition);
}

.news-list-wrapper article a:hover {
  color: var(--blue-6);
}

.news-list-wrapper article a img {
  width: 96px;
  height: 72px;
  border-radius: 8px 0 8px 0;
  object-fit: cover;
}

.news-list-wrapper article a .details {
  display: flex;
  flex-direction: column;
}

.news-list-wrapper article a .details h4 {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  margin: 0 0 8px;

  overflow: hidden;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-list-wrapper article a .details p {
  font-size: 12px;
  margin: 0;
}

.list-selection ul {
  display: flex;
  border-bottom: 1px solid var(--blue-1);
  margin-bottom: 10px;
  padding: 0 0 6px;
  list-style: none;
  gap: 16px;
}

.sidebar-widget.sidebar-widget--blue-1 .list-selection ul {
  border-color: var(--blue-2);
}

.list-selection ul li {
  flex: 1;
}

.list-selection ul li a {
  color: var(--white);
  display: block;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  text-align: center;
  transition: var(--default-transition);
  width: 100%;
}

.list-selection ul li a.current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 3px;
  background: var(--white);
}

.list-selection ul li a:hover {
  color: var(--blue-6);
}

.author-avatar {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 2px solid var(--blue-6);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.author-avatar::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 20px;
  background: url(../../images/author-quotes.svg) no-repeat center center;
}

.grigori-matia-article {
  background: var(--grey-3);
  border-left: 5px solid var(--blue-5);
  padding: 32px 24px;
  border-radius: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

.grigori-matia-article::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 24px;
  height: 18px;
  background: url(../../images/blue-quotes.svg) no-repeat center center;
}

.grigori-matia-article h2 {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 16px;
}

.search-form {
  display: inline-flex;
  background: var(--grey-3);
  border-radius: 50px;
  overflow: hidden;
  margin-top: 24px;
  width: 480px;
}

.search-form input {
  background: transparent;
  border: none;
  padding: 10px 20px;
  color: var(--blue-1);
  font-size: 16px;
  width: 100%;
  outline: none;
}

.search-form button {
  background-color: var(--blue-5);
  border: none;
  padding: 10px 20px;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  border-radius: 50px;
  transition: var(--background-transition);
}

.search-form button:hover {
  background-color: var(--blue-6);
}

/* WebTV */
.subcategory-link {
  display: flex;
  align-items: stretch;
  background: var(--grey-3);
  border-radius: 24px;
  color: var(--blue-1);
  overflow: hidden;
  transition: var(--default-transition);
}

.subcategory-link:hover {
  background: var(--grey-2);
  color: var(--blue-5);
}

.subcategory-image {
  position: relative;
  min-width: 460px;
  max-width: 460px;
}

.subcategory-image.as-hero {
  width: 100%;
  min-width: 100%;
  max-width: none;
  margin-bottom: 48px;
}

.subcategory-image.as-hero img {
  width: 100%;
  height: auto;
  border-radius: 32px 0 32px 0;
}

.subcategory-image.as-hero .sponsor-label {
  border: 1px solid var(--grey-1);
}

.subcategory-image.as-hero .sponsor-label img {
  height: 57px;
  width: 57px;
  border-radius: 0;
}

/* .subcategory-image .sponsor-label {
  position: absolute;
  background: var(--white);
  padding: 20px;
  left: 0;
  top: 0;
  border-radius: 0 0 24px 0;
} */

.subcategory-content {
  padding: 16px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  font-size: 18px;
}

.show-episode-card .subcategory-content {
  width: 100%;
  padding: 24px;
}

.subcategory-title {
  font-size: 38px;
}

.web-tv-list .subcategory-title {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 12px;
  margin-top: 20px;
}

.show-episode-card .subcategory-title {
  font-size: 20px;
  color: var(--blue-1);
}

.single-show-content .subcategory-title {
  font-size: 24px;
  line-height: 30px;
  color: var(--white);
  margin-bottom: 16px;
}

.single-show-content .article-content {
  margin-top: 16px;
}

.single-show-content .article-content p a {
  color: var(--blue-6);
}

.single-show-content .article-content p:last-child {
  margin-bottom: 0;
}

.subcategory-meta {
  margin-top: 32px;
}

.all-episodes {
  margin-top: auto;
  margin-left: auto;
  color: var(--blue-5);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.all-episodes .icon {
  background: var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 34px rgba(0, 0, 0, 0.08);
  transition: var(--background-transition);
}

.all-episodes .icon path {
  fill: var(--blue-5);
  transition: var(--default-transition);
}

.show-episode-card .all-episodes {
  transform: translateY(-40px);
  margin-bottom: -40px;
}

.show-count {
  font-weight: 700;
  font-size: 16px;
  color: var(--blue-5);
}

.show-count span {
  color: var(--blue-6);
}

.single-show .show-count {
  color: var(--blue-6);
}

.single-show .show-count span {
  color: var(--white);
}

.single-show-content {
  color: var(--white);
}

.show-excerpt {
  font-size: 18px;
  color: var(--blue-1);
}

.show-episode-card .all-episodes .icon {
  background: var(--blue-5);
}

.show-episode-card .all-episodes .icon path {
  fill: var(--white);
}

.subcategory-link:hover .all-episodes .icon {
  background: var(--blue-5);
}

.subcategory-link:hover .all-episodes .icon path {
  fill: var(--white);
}

.show-episode-card .subcategory-link:hover .all-episodes .icon {
  background: var(--white);
}

.show-episode-card .subcategory-link:hover .all-episodes .icon path {
  fill: var(--blue-5);
}

.show-episodes-box {
  background: var(--blue-1);
  border-radius: 8px;
  padding: 16px 0 0;
}

.show-episodes-box-title {
  color: var(--white);
  padding: 0 16px 0;
}

.show-episodes-box-title h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.show-episodes-box-title p {
  font-size: 14px;
  margin: 0;
}

.show-episodes-list-wrapper {
  padding: 16px;
  box-shadow: inset 0 0 10px rgba(0.2, 0.2, 0.2, 0.5);
  margin-top: 16px;
  border-radius: 0 0 8px 8px;
}

.show-episodes-list {
  height: 440px;
  overflow-y: auto;
  padding-right: 12px;
}

.show-episodes-list::-webkit-scrollbar {
  width: 6px;
}

.show-episodes-list::-webkit-scrollbar-thumb {
  background-color: var(--blue-2);
  border-radius: 3px;
}

.show-episodes-list::-webkit-scrollbar-thumb:hover {
  background-color: var(--blue-6);
}

.show-episodes-list article {
  border-top: 1px solid var(--grey-2);
  margin-top: 12px;
  padding-top: 12px;
}

.show-episodes-list article:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.show-episodes-list .show-count {
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-6);
}

.show-episodes-list .show-count span {
  color: var(--white);
}

.show-episodes-list h3 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--white);
  transition: var(--color-transition);
}

.show-episodes-list article a:hover h3 {
  color: var(--blue-6);
}

/* tv programme */
.programme-list .programme-day {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.programme-list .programme-row {
  background: var(--grey-2);
  display: flex;
  align-items: stretch;
  position: relative;
  border-radius: 12px 0 12px 0;
  overflow: hidden;
}

.programme-list .programme-row .channel-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--blue-6);
  color: var(--white);
  padding: 10px;
  width: 120px;
}

.programme-list .programme-row .channel-time .channel {
  font-size: 10px;
  font-weight: 700;
}

.programme-list .programme-row .channel-time .time {
  font-size: 26px;
  font-weight: 700;
}

.programme-list .programme-row .sport-teams {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 20px;
}

.programme-list .programme-row .teams {
  display: flex;
  flex-direction: row;
  font-size: 20px;
  font-weight: 700;
  gap: 4px;
}

.programme-list .programme-row .sport {
  color: var(--blue-2);
  font-size: 10px;
  font-weight: 700;
}

.programme-list .programme-row .channel {
  background: var(--blue-1);
  color: var(--white);
  font-size: 12px;
  padding: 5px 8px;
  margin-left: auto;
  margin-right: 10px;
  height: 100%;
  align-self: center;
  border-radius: 10px 0 10px 0;
}

/* pagination */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.nextpostslink,
.previouspostslink {
  color: var(--blue-5);
  font-size: 16px;
  font-weight: 700;
}

.previouspostslink {
  background: url(../../images/arrow-left.svg) no-repeat left center;
  padding-left: 25px;
}

.nextpostslink {
  background: url(../../images/arrow-right-blue.svg) no-repeat right center;
  padding-right: 25px;
}

/* Footer */
.site-footer {
  padding-top: 64px;
}

.site-footer-logo {
  width: 254px;
  display: block;
}

.follow-box {
  background: var(--blue-2);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
}

.follow-box--alt {
  align-items: flex-start;
  background-color: var(--blue-5);
  background-image: url(../../images/follow-box-alt-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  border-radius: 24px 0 24px 0;
  font-size: 18px;
  padding: 16px 24px;
}

.follow-box .social-icons {
  background: var(--blue-1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  list-style: none;
  border-radius: 12px;
  padding: 12px;
}

.follow-box--alt .social-icons {
  background: transparent;
  justify-content: flex-start;
  border-radius: 0;
  padding: 0;
}

.follow-box a path {
  fill: var(--white);
  transition: all 0.3s ease;
}

.follow-box--alt a {
  background: var(--blue-6);
  border-radius: 50%;
  display: block;
}

.follow-box--alt a path {
  fill: var(--blue-1);
}

.follow-box a:hover path {
  fill: var(--blue-6);
}

.follow-box--alt a:hover path {
  fill: var(--blue-1);
}

.web-tv-promo {
  background: var(--blue-5);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  border-radius: 16px;
  transition: var(--default-transition);
}

.web-tv-promo:hover {
  background: var(--blue-4);
  color: var(--white);
}

.web-tv-promo h4 {
  font-size: 24px;
}

.web-tv-promo p {
  font-size: 18px;
  margin: 0;
}

.web-tv-promo .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background: var(--white);
  border-radius: 50%;
  margin-top: 5px;
  margin-left: auto;
}

.middle-footer {
  padding: 45px 0;
}

.middle-footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.team-list {
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-list li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  transition: var(--default-transition);
}

.team-list li a:hover {
  color: var(--blue-6);
}

.team-list li a .icon {
  width: 32px;
  height: 32px;
}

.team-list li a .icon img {
  max-height: 100%;
  max-width: 100%;
}

.lower-footer {
  border-top: 1px solid var(--grey-4);
  padding: 20px 0;
}

.footer-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.footer-menu li {
  position: relative;
}

.footer-menu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-15px, -50%);
  width: 1px;
  height: 16px;
  background: var(--white);
}

.footer-menu li:first-child::before {
  display: none;
}

.footer-menu li a {
  color: var(--white);
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--default-transition);
}

.footer-menu li a:hover {
  color: var(--blue-6);
}

.footer-copyright {
  color: var(--white);
  font-size: 16px;
  text-align: right;
}

.footer-copyright a {
  color: var(--white);
  transition: var(--default-transition);
}

.footer-copyright a:hover {
  color: var(--andko-color);
}

.grigori-matia-widget {
  background-color: var(--blue-5);
  background-image: url(../../images/grigori-matia-bg.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  border-radius: 16px 0 16px 0;
  color: var(--white);
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.grigori-matia-widget-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.grigori-matia-widget-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.grigori-matia-widget .view-more-cta {
  justify-content: flex-start;
}

.grigori-matia-widget .view-more-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.ta-widget {
  background-color: var(--blue-2);
  background-image: url(../../images/ta-widget-graphic.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 89px;
  border-radius: 16px 0 16px 0;
  color: var(--white);
  margin-top: 32px;
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.ta-widget::before {
  content: "";
  position: absolute;
  height: 475px;
  width: 485px;
  left: 16px;
  top: -32px;
  border-radius: 50%;
  background-color: var(--blue-6);
  pointer-events: none;
  filter: blur(180px);
  z-index: 1;
  opacity: 1;
}

.ta-widget-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.ta-widget .news-list-wrapper {
  position: relative;
  z-index: 2;
}

.mobile-menu-back {
  display: none;
  color: var(--blue-5);
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  padding: 5px 5px 5px 0;
}

.mobile-menu-back svg {
  height: auto;
  width: 32px;
}

.competition-tabs {
  display: flex;
  flex-direction: column;
}

.competition-btn {
  background: var(--blue-2);
  border-radius: 4px;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0;
  margin-bottom: 12px;
  padding: 5px 10px 5px 12px;
  text-align: left;
  width: 100%;
}

.competition-btn.active {
  margin-bottom: 8px;
}

.competition-btn.active svg {
  transform: rotate(180deg);
}

.competition-btn:last-of-type {
  margin-bottom: 0;
}

.competition-btn.active:last-of-type {
  margin-bottom: 8px;
}

.competition-panel {
  display: none;
  max-height: 196px;
  overflow: auto;
  margin-bottom: 12px;
}

.competition-panel.active {
  display: block;
}

.header-teams-slider {
  margin: 0 auto;
  max-width: 1230px;
  padding: 16px 0;
}

.header-teams-slider .swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
}

.header-teams-slider .swiper:not(.swiper-initialized) .swiper-slide {
  flex: 0 0 calc(100% / 16);
  max-width: calc(100% / 16);
}

.header-teams-carousel {
  flex: 1;
  max-width: calc(100% - 40px - 40px - 19px - 19px);
  padding: 0 19px;
}

.header-teams-carousel .swiper-wrapper {
  align-items: center;
}

.header-teams-carousel .swiper-slide {
  width: 40px;
}

.header-teams-carousel .header-team-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-teams-carousel .header-team-item img {
  height: 40px;
}

.mb-sec-reels-sponsor {
  gap: 16px;
}

.mb-sec-reels-sponsor-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
}

.mb-sec-reels-sponsor a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-1);
  border-radius: 50%;
  height: 48px;
  min-width: 48px;
  width: 48px;
}

.mb-sec-reels-sponsor a:hover {
  background-color: var(--blue-6);
}

.mb-sec-reels-sponsor a svg {
  height: 32px;
}

.mb-sec-reels-sponsor a svg path {
  transition: all 0.3s ease;
}

.mb-sec-reels-sponsor a:hover svg path {
  fill: var(--blue-1);
}

.reel-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

.reel-image {
  height: 560px;
  object-fit: cover;
  transition: all 0.3s ease;
  width: 100%;
}

.reel-item:hover .reel-image {
  transform: scale(1.05);
}

.mb-sec-webtv {
  background-image: url(../../images/webtv-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mb-sec-webtv .mb-sec-heading {
  margin-bottom: 20px;
}

.mb-sec-webtv .mb-sec-description {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.mb-sec-webtv .mb-sec-news-heading-wrapper {
  margin-bottom: 56px;
}

.webtv-slider-container {
  margin-bottom: 64px;
}

.webtv-slider .swiper-slide {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  width: clamp(260px, 60vw, 820px);
}

.webtv-slide-image {
  display: block;
  height: auto;
  width: 100%;
}

.sponsor-label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: var(--white);
  border-radius: 16px 0 16px 0;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blue-2);
  font-size: 16px;
  gap: 4px;
  line-height: 1.625;
}

.sponsor-label img {
  height: 57px;
  object-fit: cover;
  width: 57px;
}

.webtv-slider .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.webtv-navigation-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  max-width: 424px;
}

.webtv-current-info {
  flex: 1;
  text-align: center;
}

.webtv-current-title a {
  color: var(--white);
  display: block;
  font-family: inherit;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 14px 0;
}

.webtv-current-description {
  color: var(--white);
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

#choice-footer-msg {
  display: none;
}

.mb-sec-tv-program {
  padding: 56px 0;
}

.mb-sec-tv-program-inner {
  display: flex;
  align-items: stretch;
  background-color: var(--blue-2);
  border-radius: 12px;
  padding: 0 24px;
}

.mb-sec-tv-program-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border-right: 1px solid var(--blue-1);
  margin-right: 8px;
  padding: 21px 32px 21px 0;
}

.mb-sec-tv-program .mb-sec-heading {
  font-size: 24px;
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

.mb-sec-tv-program-content-desktop {
  display: flex;
  align-items: center;
}

.mb-sec-tv-program-content-mobile {
  display: none;
}

.mb-sec-tv-program-items {
  display: flex;
  align-items: center;
}

.mb-sec-tv-program-item {
  border-right: 1px solid var(--blue-1);
  font-size: 16px;
  padding: 0 24px;
}

.sidebar-widget .mb-sec-tv-program-item {
  border-bottom: 1px solid var(--blue-1);
  border-right: none;
  margin-bottom: 12px;
  padding-bottom: 12px;
  padding-left: 0;
  padding-right: 0;
}

.sidebar-widget .mb-sec-tv-program-items {
  align-items: stretch;
  flex-direction: column;
  flex: 1;
  overflow: auto;
}

.mb-sec-tv-program-item-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  gap: 8px;
  margin-bottom: 8px;
}

.mb-sec-tv-program-item-sep {
  color: var(--blue-6);
}

.mb-sec-tv-program-item-competition {
  color: var(--blue-6);
  line-height: 1.625;
}

.mb-sec-tv-program-item-title {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

.mb-sec-tv-program-more-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 0 24px;
  white-space: nowrap;
}

.mb-sec-tv-program-cta {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.date-btn-container {
  background-color: var(--blue-1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 4px;
  width: 260px;
}

.date-btn {
  background: none;
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.date-btn:hover:not(:disabled) {
  background-color: var(--blue-6);
}

.date-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.date-btn-title {
  flex: 1;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

/* Teams Drawer */
.teams-drawer {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.teams-drawer .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 2rem;
  padding-top: 48px;
  color: var(--blue-1);
  width: 680px;
  height: 100dvh;
  position: relative;
  z-index: 1;
}

.teams-drawer h3 {
  font-size: 20px;
}

.teams-drawer .close-drawer {
  position: absolute;
  right: 20px;
  top: 20px;
}

.teams-drawer .backdrop {
  content: "";
  background: rgba(0.2, 0.2, 0.2, 0.5);
  width: 100dvw;
  height: 100dvh;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.teams-drawer .team-list {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  overflow-y: auto;
}

.teams-drawer .team-list li a {
  flex-direction: column;
  color: var(--blue-1);
  background: var(--grey-3);
  border-radius: 8px;
  padding: 2rem;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 600;
  transition: var(--background-transition);
  text-align: center;
  justify-content: center;
}

.teams-drawer .team-list li a:hover {
  background: var(--grey-2);
}

/* eurobasket */
.eurobasket {
  background: #6ec8f9;
  background: linear-gradient(
    90deg,
    rgba(110, 200, 249, 1) 0%,
    rgba(36, 117, 151, 1) 38%,
    rgba(36, 117, 151, 1) 57%,
    rgba(110, 200, 249, 1) 100%
  );
  position: relative;
}

.eurobasket::before {
  content: "";
  background: url(../../images/eurobasket-25-left-bg.svg);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 470px;
  height: 120px;
  z-index: 0;
  max-width: 100%;
}

.eurobasket::after {
  content: "";
  background: url(../../images/eurobasket-25-right-bg.svg);
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 743px;
  height: 120px;
  z-index: 0;
}

.eurobasket .container-xxl {
  position: relative;
  z-index: 1;
}

.eurobasket a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.eurobasket a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33%;
  font-size: 20px;
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  gap: 12px;
}

.eurobasket a span:first-child {
  justify-content: flex-start;
}

.eurobasket a span:last-child {
  justify-content: flex-end;
}

/* Mobile Slider Styles */
.tv-program-slider {
  width: 100%;
  overflow: hidden;
}

.tv-program-slider .swiper-slide {
  width: auto;
}

.tv-program-slider .mb-sec-tv-program-item {
  border-right: none;
  border-left: 1px solid var(--blue-1);
  min-width: 224px;
}

.tv-program-slider .mb-sec-tv-program-item:first-child {
  border-left: none;
}

/* HSL player */
.hsl-access-denied-error {
  background: var(--alt-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
}

.hsl-access-denied-error .middle-center p {
  color: var(--white);
  margin: 0;
  font-size: 1.6rem;
}

.hsl-video-player {
  position: relative;
}

.hsl-video-player .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  /* 16:9 aspect ratio (divide 9 by 16 = 0.5625) */
  height: 0;
  overflow: hidden;
}

.hsl-video-player .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hsl-video-player-logo {
  position: absolute;
  pointer-events: none;
  right: 20px;
  top: 20px;
  width: 180px;
  z-index: 1;
}

.hsl-overlay {
  position: absolute;
  /* pointer-events: none; */
  left: 20px;
  top: 20px;
  z-index: 1;
  display: flex;
  align-items: stretch;
  color: #fff;
  gap: 5px;
}

.hsl-overlay-time {
  background: #1c67f6;
  font-weight: 700;
  min-width: 80px;
  padding: 5px 10px;
  position: relative;
  text-align: center;
}

.hsl-overlay-extra-time {
  position: absolute;
  left: 0;
  top: 100%;
  height: auto;
  width: 100%;
  background: #1c67f6;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
}

.js-hsl-overlay-extra-time-timer {
  flex: 1;
  padding: 5px;
}

.js-hsl-overlay-extra-time-value {
  background: #000000;
  padding: 5px;
}

.hsl-overlay-teams {
  background: #000000;
  display: flex;
  position: relative;
}

.hsl-overlay-team {
  align-items: center;
  display: flex;
  gap: 20px;
  padding-left: 7px;
  padding-right: 7px;
}

.hsl-overlay-team--home {
  border: none;
  border-left: 7px solid;
}

.hsl-overlay-team--away {
  border: none;
  border-right: 7px solid;
  flex-direction: row-reverse;
}

.hsl-overlay-team-name {
  letter-spacing: 0.05em;
  width: 60px;
  position: relative;
  text-align: center;
}

.hsl-overlay-team-cards {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  display: flex;
  gap: 3px;
}

.hsl-overlay-team-card {
  font-size: 14px;
  font-weight: 700;
  min-width: 1ch;
  position: relative;
  text-align: center;
}

.hsl-overlay-team-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 5px;
  width: 100%;
  background: #f70000;
}

.hsl-overlay-team-score {
  font-size: 125%;
  min-width: 1ch;
  position: relative;
  text-align: center;
}

.hsl-overlay-graphic-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hsl-overlay-graphic-1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 60px;
  width: 60px;
  border-radius: 100%;
  border: 2px solid #1c67f6;
}

.hsl-overlay-graphic-2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 2px;
  background: #1c67f6;
}

.hsl-overlay-graphic-3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #1c67f6;
  border-radius: 100%;
  height: 8px;
  width: 8px;
}

.hsl-overlay-graphic-4 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 100%;
  height: 4px;
  width: 4px;
}

.hsl-overlay-graphic-5 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #000000;
  border-radius: 100%;
  height: 2px;
  width: 2px;
}

.section-poweredby-logo {
  display: flex;
  margin-bottom: 15px;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  justify-content: flex-end;
}

.section-poweredby-logo img {
  max-width: 100px;
}

@media (max-width: 1600px) {
  .main-menu {
    gap: 16px;
  }
}

@media (max-width: 1399px) {
  .mb-sec-tv-program-inner {
    flex-direction: column;
  }

  .date-btn-container {
  }

  .mb-sec-tv-program-header {
    border-right: none;
    margin-right: 0;
    margin-bottom: 3px;
    padding: 21px 0;
  }

  .mb-sec-tv-program-content-desktop {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-left: -24px;
    padding: 16px 0;
  }

  .mb-sec-tv-program-items {
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
  }

  .mb-sec-tv-program-item:last-child {
    border-right: none;
  }

  .mb-sec-tv-program-more-cta {
    justify-content: center;
  }

  .mb-sec-tv-program-cta {
    margin-left: 0;
    padding: 16px 0;
  }
}

@media (min-width: 1200px) {
  .mega-menu-dropdown:has(li.menu-item-has-children:hover),
  .mega-menu-dropdown:has(li.menu-item-has-posts:hover) {
    border-radius: 16px 0 0 16px;
  }

  .main-menu li:hover .mega-menu-dropdown {
    display: block;
  }

  .main-menu .menu-level-1:hover .mega-menu-posts {
    display: block;
  }

  .main-menu .menu-level-1:hover .mega-menu-submenu {
    display: flex;
  }

  .main-menu li.menu-level-1:hover > a {
    background-color: var(--blue-5);
    color: var(--white);
    padding: 10px 24px;
  }

  .main-menu .menu-item--superleague-1 .menu-level-2 > a {
    margin-bottom: 8px;
  }

  .main-menu li > a:hover {
    color: var(--blue-6);
  }

  .first-category .subcategory-image {
    min-width: 768px;
    max-width: 768px;
  }

  .first-category .subcategory-content {
    padding: 40px;
  }
}

@media (max-width: 1199px) {
  .site-header .header-actions-btn--menu {
    margin-left: 16px;
  }

  body.menu-popup-active .header-actions-btn-icon--menu {
    display: none;
  }
  body.menu-popup-active .header-actions-btn-icon--close {
    display: inline-block;
  }

  body.menu-popup-active .header-actions-btn--search {
    display: none !important;
  }

  body.menu-popup-active .menu-header-mega-menu-container {
    opacity: 1;
    pointer-events: all;
  }

  .mega-menu-search-container {
    border-bottom: 1px solid var(--blue-3);
    padding: 8px 0 32px;
  }

  .mb-search-form {
    max-width: 100%;
  }

  .mb-search-form input[type="search"] {
    font-size: 14px;
    font-weight: 600;
    height: 48px;
    padding: 12px 88px 12px 20px;
  }

  .mb-search-form input[type="search"]::placeholder {
    font-size: 14px;
  }

  .mb-search-form button {
    padding: 14px 22px;
  }

  .menu-header-mega-menu-container {
    position: fixed;
    left: 0;
    top: 72px;
    height: calc(100% - 72px);
    width: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
    opacity: 0;
    pointer-events: none;
  }

  .admin-bar .menu-header-mega-menu-container {
    top: 118px;
    height: calc(100% - 118px);
  }

  .menu-header-mega-menu-nav {
    flex: 1;
    overflow: auto;
    position: relative;
  }

  .main-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px 0;
  }

  .main-menu > li > a {
    color: var(--blue-1);
    font-family: var(--font-text);
    font-weight: 600;
    padding: 10px 24px;
  }

  .main-menu .menu-level-1 > a {
    padding-left: 40px;
  }

  .main-menu .menu-level-2 > a {
    padding-left: 40px;
  }

  .mobile-menu-back {
    display: flex;
  }

  .main-menu > li {
    position: unset;
  }

  .mobile-submenu-active-level-1,
  .mobile-submenu-active-level-2 {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    transform: none;
    height: 100%;
    width: 100%;
    background-color: var(--white);
    padding: 16px 0 20px;
    z-index: 1;
  }

  .mega-menu-category-icon {
    display: none;
  }

  .mega-menu-submenu {
    padding: 16px 0 20px;
  }

  .mb-sec-tv-program-content-desktop {
    display: none;
  }

  .mb-sec-tv-program-header {
    padding: 16px 0;
    margin-bottom: 8px;
  }

  .mb-sec-tv-program-content-mobile {
    display: block;
    margin-left: -24px;
  }

  .tv-program-slider .mb-sec-tv-program-item:nth-child(n) {
    border-right: 1px solid var(--blue-1);
  }

  .tv-program-slider
    .swiper-slide:last-child
    .mb-sec-tv-program-item:last-child {
    border-right: none;
  }

  .mb-sec-tv-program-cta {
    margin-top: 16px;
  }

  .mb-sec-tv-program-more-cta {
    display: none !important;
  }

  .mb-sec-tv-program-item-competition {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .mb-sec-tv-program-item-title {
    font-size: 14px;
  }

  .header-teams-slider .swiper:not(.swiper-initialized) .swiper-slide {
    flex: 0 0 calc(100% / 12);
    max-width: calc(100% / 12);
  }

  .site-footer-logo {
    width: 180px;
    margin: 0 auto 20px;
  }

  .follow-box {
    flex-direction: column;
  }

  .follow-box .social-icons {
    width: 100%;
    justify-content: center;
  }

  .follow-box--alt .social-icons {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .middle-footer {
    padding: 32px 0;
  }

  .web-tv-promo {
    margin-top: 32px;
  }
}

@media (max-width: 991px) {
  .mb-sec-latest-news {
    background-image: url(../../images/latest-news-bg-mobile.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
  }

  .top-post-image {
    margin-bottom: 12px;
  }

  .top-post-image img {
    min-height: 400px;
  }

  /* .mb-sec-top-post .col.col--sidebar {
    display: none;
  } */

  .col.col--sidebar.has-mb-ad {
    flex: 0 0 100%;
    height: auto;
    max-width: 100%;
    padding-top: 0;
    position: relative;
    top: auto;
    display: block !important;
  }

  .col.col--sidebar.col--opta-sidebar {
    flex: 0 0 100%;
    height: auto;
    max-width: 100%;
    position: relative;
    top: auto;
    padding-top: 0;
  }

  .col--opta-sidebar .sidebar-widget {
    margin: 40px 0;
  }

  .date-btn-container {
    width: 100%;
  }

  .header-teams-slider .swiper:not(.swiper-initialized) .swiper-slide {
    flex: 0 0 calc(100% / 8);
    max-width: calc(100% / 8);
  }

  .eurobasket .eurobasket-monobasket-logo img {
    height: 51px;
  }

  .eurobasket .eurobasket-logo img {
    height: 45px;
  }

  .eurobasket .eurobasket-poweredby-logo {
    align-items: flex-end;
    flex-direction: column;
    font-size: 8px;
    gap: 4px;
  }

  .eurobasket .eurobasket-poweredby-logo img {
    height: 10px;
  }

  .eurobasket a span img {
    width: auto;
  }

  .web-tv-list .subcategory-title {
    font-size: 28px;
  }

  .subcategory-link {
    flex-direction: column;
  }

  .subcategory-image {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .subcategory-content {
    padding-top: 20px;
  }

  /* .mb-sec.mb-sec-news.bet365 {
    background-image: none;
  } */

  .match-details .scores {
    font-size: 28px;
    line-height: 34px;
  }

  .match-details .logo-thumb img {
    max-height: 56px;
    width: auto;
  }

  .match-details .team-scorers {
    font-size: 12px;
    gap: 12px;
    padding-top: 11px;
  }

  .single-game .game-content {
    flex-direction: column;
    margin-left: -12px;
    margin-right: -12px;
  }

  .single-game .post-details {
    width: 100%;
    gap: 48px;
  }

  .single-game aside {
    width: 100%;
    position: relative;
    top: auto;
  }

  .match-details .game-info {
    gap: 30px;
  }

  .single-game .game-details {
    margin: 32px 0;
  }

  .match-details .team-name {
    font-size: 16px;
    line-height: 20px;
  }

  .single-game .post-details h2 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 16px;
  }

  .popular-news h2,
  .more-news h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .more-news .sec-news-post img {
    height: auto;
  }

  .match-details .info {
    font-size: 14px;
  }

  .match-details .info strong {
    font-size: 20px;
  }

  .match-details .team {
    padding-top: 0;
    min-width: 120px;
  }

  .match-details .venue {
    font-size: 14px;
  }

  .sidebar-widget--news {
    height: auto;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .btn {
    padding: 6px 14px;
  }

  .mb-sec-padding {
    padding: 50px 0;
  }

  .article-header {
    padding: 24px 0 32px;
  }

  .mb-sec-top-post {
    padding: 24px 0 54px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .search-popup {
    top: 56px;
    height: calc(100% - 56px);
  }

  .admin-bar .search-popup {
    top: 102px;
  }

  .search-popup-inner {
    padding: 32px 16px;
  }

  .mb-search-form input[type="search"] {
    font-size: 14px;
    padding: 12px 84px 12px 20px;
  }

  .mb-search-form button {
    padding: 14px 22px;
  }

  .site-header-logo img {
    width: 152px;
  }
  .sec-news-post--portrait {
    margin-bottom: 32px;
  }

  .sec-news-post--landscape {
    margin-bottom: 16px;
  }

  .sec-news-post h2 a {
    font-size: 24px;
  }

  .sec-news-post h3 a {
    font-size: 20px;
  }

  .sec-news-post--landscape h3 a {
    font-size: 16px;
  }

  .sec-news-post .cat a {
    font-size: 12px;
  }

  .mb-sec-news--top-news,
  .mb-sec-news--superleague-2 {
    background-image: none;
  }

  .mb-sec-news--womens-football {
    background-image: url(../../images/womens-football-bg-mobile.svg);
  }

  .mb-sec-top-post {
    background-image: url(../../images/top-post-bg-mobile.svg);
    background-position: top 150px left 0;
    background-size: auto;
  }

  .mb-sec-bloggers {
    background-size: 170px;
  }

  .mb-sec-news-heading-wrapper img {
    max-height: 38px;
    width: auto;
  }

  .mb-sec-news-heading {
    margin-left: -20px;
  }

  .mb-sec-heading {
    font-size: 24px;
  }

  .top-post-info .cat {
    margin-bottom: 8px;
  }

  .top-post-info h2 {
    margin-bottom: 8px;
  }

  .top-post-info .datetime {
    margin-bottom: 0;
  }

  .top-post-info .related-post {
    margin-top: 54px;
  }

  .top-post-image img {
    min-height: 200px;
  }

  .related-post-heading {
    font-size: 20px;
  }

  .related-post-title {
    font-size: 14px;
  }

  .mb-sec-bloggers-sponsor-text {
    font-size: 12px;
    white-space: nowrap;
  }

  .mb-sec-bloggers-sponsor-brand {
    height: auto;
    margin-left: 6px;
    width: 87px;
    min-width: 87px;
  }

  .mb-sec-news-heading a {
    color: inherit;
    line-height: 1.25;
  }

  .mb-carousel-nav-btn {
    height: 24px;
    min-width: 24px;
    width: 24px;
  }

  .mb-carousel-nav-btn svg {
    width: 11px;
  }

  .mb-sec-bloggers .swiper-slide {
    width: 248px;
  }

  .mb-sec-bloggers-card::before {
    display: none;
  }

  .mb-sec-bloggers-card-fig::before {
    width: 8px;
  }

  .mb-sec-bloggers-card-img {
    height: 313px;
  }

  .mb-sec-bloggers-card-title {
    font-size: 20px;
    margin-top: 12px;
  }

  .mb-sec-highlights .swiper-slide {
    width: 280px;
  }

  .mb-sec-highlights .popular-news-post .thumb-wrap .thumb {
    height: 360px;
  }

  .mb-sec-highlights .popular-news-post .thumb-wrap .thumb img {
    height: 360px;
  }

  .bestof-slider .swiper-slide {
    width: 312px;
  }

  .bestof-post {
    background-image: url(../../images/bestof-post-bg-mobile.svg);
    min-height: 173px;
    padding: 16px;
  }

  .bestof-post-title a {
    font-size: 18px;
  }

  .bestof-post-date {
    font-size: 12px;
  }

  .bestof-post-author {
    padding: 8px 8px 8px 16px;
  }

  .bestof-post-author:hover {
    background-color: var(--white);
  }

  .bestof-post-author-name a {
    font-size: 12px;
  }

  .bestof-post-author-avatar img {
    height: 32px;
    width: 32px;
  }

  .mb-sec-news--more-news {
    padding: 45px 0;
  }

  .morenews-post-image {
    flex: 0 0 96px;
    max-width: 96px;
  }

  .morenews-post-title a {
    font-size: 14px;
  }

  .morenews-post-date {
    font-size: 12px;
  }

  .grigori-matia-article {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-container {
    padding: 16px;
    transform: translateY(-20px);
  }

  .single-post.single-format-standard .article-header {
    padding: 24px 0;
  }

  .single-post.single-format-standard .article-header .breadcrumb {
    margin-bottom: 0;
  }

  .single-post.single-format-standard .article-header ~ section .category-container {
    transform: none;
  }

  .cat-title h1 {
    font-size: 20px;
  }

  .cat-title .icon:not(:has(.avatar)) {
    display: block;
    width: 32px;
  }

  .cat-title .icon:not(:has(.avatar)) img {
    max-width: 100%;
  }

  .author-avatar {
    width: 52px;
    height: 52px;
  }

  .author-avatar::after {
    right: -5px;
    width: 18px;
    height: 14px;
    background-size: cover;
  }

  .share-box {
    font-size: 12px;
    justify-content: flex-start;
  }

  /* .share-box a {
    width: 32px;
    height: 32px;
  } */

  .category-nav a {
    font-size: 16px;
  }

  .team-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .post .article-content {
    padding-inline: 0;
  }

  .author-datetime {
    flex-direction: column;
    gap: 0;
    font-size: 12px;
  }

  .author-date .datetime::before {
    display: none;
  }

  .post h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .all-episodes {
    margin-left: 0;
    margin-top: 20px;
  }

  .site-footer {
    padding-top: 40px;
  }

  .footer-menu {
    gap: 0 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-menu li a {
    font-size: 14px;
  }

  .teams-wrap h4 {
    text-align: center;
  }

  .lower-footer {
    width: calc(100% - 1.5rem);
    margin: 0 auto;
  }

  .follow-box .social-icons {
    justify-content: space-between;
  }
  .footer-copyright {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
  }

  .grigori-matia-widget {
    background-image: url(../../images/grigori-matia-bg-mobile.svg);
  }

  .grigori-matia-widget-title {
    font-size: 18px;
  }

  .grigori-matia-widget-text {
    font-size: 14px;
  }

  .ta-widget-title {
    font-size: 18px;
  }

  .mb-sec-reels-heading-wrapper {
    gap: 12px;
  }

  .mb-sec-reels-sponsor {
    gap: 12px;
  }

  .mb-sec-reels-sponsor-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .mb-sec-reels-sponsor a {
    height: 32px;
    min-width: 32px;
    width: 32px;
  }

  .mb-sec-reels-sponsor a svg {
    height: 24px;
  }

  .mb-sec-webtv {
    background-image: url(../../images/webtv-bg-mobile.svg);
  }

  .mb-sec-webtv .mb-sec-heading {
    margin-bottom: 8px;
  }

  .mb-sec-webtv .mb-sec-description {
    font-size: 16px;
  }

  .webtv-slider-container {
    margin-bottom: 40px;
  }

  .sponsor-label {
    background: var(--white);
    padding: 4px;
    font-size: 7px;
    gap: 4px;
  }

  .sponsor-label img {
    height: 16px;
    width: 16px;
  }

  .subcategory-image.as-hero .sponsor-label img {
    height: 16px;
    width: 16px;
  }

  .webtv-current-title a {
    font-size: 18px;
    margin: 0 0 8px 0;
  }

  .webtv-current-description {
    font-size: 14px;
  }

  .webtv-slider .play-btn {
    height: 24px;
    padding: 0;
    width: 24px;
  }

  .webtv-slider .play-btn svg {
    width: 8px;
  }

  .show-episode-card .all-episodes {
    transform: translateY(0px);
    margin-bottom: 0px;
  }

  .teams-drawer {
    top: 40px;
  }

  .teams-drawer .content {
    width: 100dvw;
    height: calc(100dvh - 35px);
    border-radius: 30px;
    padding: 48px 16px 26px;
  }

  .teams-drawer .backdrop {
    display: none;
  }

  .teams-drawer .team-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .teams-drawer .team-list li a {
    font-size: 14px;
    font-weight: 600;
    padding: 16px 8px;
    min-height: 128px;
  }

  .single-game .game-content {
    padding: 24px 16px;
  }

  .hsl-video-player-logo {
    width: 80px;
    right: 5px;
    top: 5px;
  }

  .hsl-overlay {
    transform: scale(0.5);
    transform-origin: left top;
    left: 5px;
    top: 5px;
  }

  .menu-header-mega-menu-container {
    top: 56px;
    height: calc(100% - 56px);
  }

  .admin-bar .menu-header-mega-menu-container {
    top: 102px;
    height: calc(100% - 102px);
  }

  .sec-news-post.sec-news-post--landscape img {
    height: 90px;
  }

  .category-grigori-matia .category-header {
    padding: 24px 0;
  }

  .category-web-tv .category-header {
    padding: 24px 0 80px;
  }

  .single-post .breadcrumb {
    margin-bottom: 0;
  }

  .web-tv-category .category-header {
    padding: 24px 0 32px;
  }

  .mb-sec-bloggers-glow {
    max-width: 96px;
    transform: translate(37px);
  }

  .mb-sec-news--more-news .swiper .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .morenews-slider .swiper-slide {
    width: 100%;
  }

}

@media (max-width: 575px) {
  .reels-slider .swiper-slide {
    width: 226px;
  }

  .reel-image {
    height: 422px;
  }

  .header-teams-slider .swiper:not(.swiper-initialized) .swiper-slide {
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
  }

  .footer-menu {
    flex-direction: column;
    gap: 10px;
  }

  .footer-menu li::before {
    display: none;
  }
}

@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1600px;
  }
}

/* Popular News Swiper Styles */
.popular-news-slider.swiper {
  overflow: hidden;
}

/* Mobile styles - when Swiper is active */
@media (max-width: 991px) {
  .sidebar {
    width: 100%;
    position: relative;
    top: auto;
  }

  .single-post.single-post.single-format-standard .article-header ~ section .category-container .sidebar {
    top: auto;
  }

  .category-col-wrapper {
    flex-direction: column;
  }

  .category-container .post-list {
    width: 100%;
  }

  .tag-list .tags {
    flex-wrap: wrap;
    gap: 0 12px;
  }

  .tag-list .tags a {
    color: var(--blue-6);
    background: transparent;
    padding: 0;
  }

  .popular-news-post .article-details {
    padding: 12px 16px;
  }

  .popular-news-post .article-details h3 {
    font-size: 18px;
  }

  .popular-news-slider .swiper-slide {
    flex-shrink: 0;
    padding: 0;
    width: 280px;
  }

  .popular-news-slider .swiper-slide:last-child {
    margin-right: 0;
  }

  .popular-news-slider .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
  }

  .popular-news-post .thumb-wrap .thumb {
    height: 360px;
  }

  .popular-news-post .thumb-wrap .thumb::before {
    display: none;
  }

  .popular-news-post .thumb-wrap .thumb img {
    height: 360px;
  }

  .programme-list .programme-row .channel-time {
    width: 65px;
  }
  
  .programme-list .programme-row .sport-teams {
    width: 100%;
    padding: 12px 8px;
  }

  .programme-list .programme-row .teams {
    font-size: 14px;
  }

  .programme-list .programme-row .channel-time .time {
    font-size: 14px;
  }

  .programme-list .programme-row .channel {
    position: absolute;
    font-size: 8px;
    height: auto;
    right: -6px;
    top: 4px;
  }

}

/* Desktop styles - when Swiper is destroyed */
@media (min-width: 992px) {
  .popular-news-slider .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: auto;
  }

  .popular-news-slider .swiper-slide {
    width: auto;
    flex: 0 0 33.333333%; /* Bootstrap col-lg-4 equivalent */
  }
}

.main-menu > li:last-child {
  display: none;
}
/* 1200px up to and including 1600px */
@media (min-width: 1200px) and (max-width: 1600px) {
  .main-menu > li:last-child {
    display: block;
  }
  .main-menu > li:nth-last-child(3),
  .main-menu > li:nth-last-child(4),
  .main-menu > li:nth-last-child(5) {
    display: none;
  }
}

@media (max-width: 782px) {
  .admin-bar header {
    top: 46px;
  }
}

@media (max-width: 600px) {
  .admin-bar header {
    top: 0;
  }
}
