@charset "UTF-8";
:root {
  --font-global: "Inter";
  --font-variant: "Oswald";
  --header-topbar-height: 40px;
  --header-main-height: 74px;
  --direct-container-height: 120px;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-family: var(--font-global), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
}

body {
  line-height: 1.5;
  margin: 0;
  height: auto !important;
}

body {
  display: flex;
  flex-direction: column;
}

hr {
  height: 0;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family: var(--font-global), ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  border: 0;
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 78rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 81.25rem) {
  .container {
    max-width: 80rem;
  }
}
.container--main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.container--search {
  min-height: 50vh;
}

.blank-container {
  width: 100%;
  pointer-events: none;
  height: 200px;
}

.main,
.aside {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .main {
    width: calc(100% - 400px - 42px);
  }
}

.aside {
  margin-top: 2rem;
}
@media screen and (min-width: 1024px) {
  .aside {
    margin-top: 0;
    width: 400px;
    position: sticky;
    top: 7.5rem;
  }
}

.items {
  --xs-col: 1;
  --md-col: 3;
  --lg-col: 3;
  --col: var(--xs-col, 1);
  --gap: 1.5rem;
  display: grid;
  grid-template-columns: repeat(var(--col), minmax(0, 1fr));
  align-items: start;
  gap: var(--gap);
}
@media screen and (min-width: 768px) {
  .items {
    --col: var(--md-col, 3);
  }
}
@media screen and (min-width: 1024px) {
  .items {
    --col: var(--lg-col, 3);
  }
}

.layout-section:not(:last-of-type) {
  margin-bottom: 3rem;
}
.layout-section .headline {
  margin-bottom: 4rem;
}
.layout-section__container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
.layout-section.section-custom-html:not(:first-of-type) {
  margin-top: 1.5rem !important;
}
.layout-section.section-custom-html .layout-section__container {
  display: block;
  text-align: center;
}
.layout-section.section-custom-html .layout-section__container img {
  margin: auto;
  max-width: 100%;
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .layout-section.section-type1 .layout-section__container {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .layout-section.section-type1 .layout-section__container .card:nth-child(n+1) {
    grid-column: 6 span/6 span;
  }
  .layout-section.section-type1 .layout-section__container .card:nth-child(n+3) {
    grid-column: 4 span/4 span;
  }
  .layout-section.section-type1 .layout-section__container .card:nth-child(n+3) .card__thumbnail {
    aspect-ratio: 16/16;
  }
  .layout-section.section-type1 .layout-section__container .card:nth-child(n+6) {
    grid-column: 3 span/3 span;
  }
  .layout-section.section-type1 .layout-section__container .card:nth-child(n+6) .card__thumbnail {
    aspect-ratio: 16/16;
  }
}
@media screen and (min-width: 640px) {
  .layout-section.section-type2 .layout-section__container, .layout-section.section-type5 .layout-section__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1024px) {
  .layout-section.section-type2 .layout-section__container, .layout-section.section-type5 .layout-section__container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.layout-section.style-type1 .headline {
  color: white;
}
.layout-section.style-type1 .headline__title span {
  background: var(--primary-color);
  background: linear-gradient(to right, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.layout-section.style-type1, .layout-section.style-type3 {
  background: var(--wrapper-color);
  padding: 2rem 0;
}
.layout-section.style-type1 .layout-section__container .basic-slider, .layout-section.style-type3 .layout-section__container .basic-slider {
  position: relative;
  padding: 0 3rem !important;
}
@media screen and (max-width: 767px) {
  .layout-section.style-type1 .layout-section__container .basic-slider, .layout-section.style-type3 .layout-section__container .basic-slider {
    padding-left: 1rem !important;
    padding-right: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .layout-section.section-type4 .layout-section__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1024px) {
  .layout-section.section-type6 .layout-section__container {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .layout-section.section-type6 .layout-section__container .card:nth-child(2),
  .layout-section.section-type6 .layout-section__container .card:nth-child(3),
  .layout-section.section-type6 .layout-section__container .card:nth-child(4),
  .layout-section.section-type6 .layout-section__container .card:nth-child(5),
  .layout-section.section-type6 .layout-section__container .card:nth-child(n+6) {
    grid-column: 2 span;
  }
  .layout-section.section-type6 .layout-section__container .card:nth-child(2) .card__thumbnail,
  .layout-section.section-type6 .layout-section__container .card:nth-child(3) .card__thumbnail,
  .layout-section.section-type6 .layout-section__container .card:nth-child(4) .card__thumbnail,
  .layout-section.section-type6 .layout-section__container .card:nth-child(5) .card__thumbnail,
  .layout-section.section-type6 .layout-section__container .card:nth-child(n+6) .card__thumbnail {
    aspect-ratio: 16/16;
  }
  .layout-section.section-type6 .layout-section__container .card:nth-child(2) .card__title,
  .layout-section.section-type6 .layout-section__container .card:nth-child(3) .card__title,
  .layout-section.section-type6 .layout-section__container .card:nth-child(4) .card__title,
  .layout-section.section-type6 .layout-section__container .card:nth-child(5) .card__title,
  .layout-section.section-type6 .layout-section__container .card:nth-child(n+6) .card__title {
    font-size: 18px;
  }
  .layout-section.section-type6 .layout-section__container .card:nth-child(1),
  .layout-section.section-type6 .layout-section__container .card:nth-child(6) {
    grid-column: 4 span;
  }
  .layout-section.section-type6 .layout-section__container .card:nth-child(1) .card__thumbnail,
  .layout-section.section-type6 .layout-section__container .card:nth-child(6) .card__thumbnail {
    aspect-ratio: 16/9;
  }
  .layout-section.section-type6 .layout-section__container .card:nth-child(1) .card__title,
  .layout-section.section-type6 .layout-section__container .card:nth-child(6) .card__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .layout-section.section-type7 .layout-section__container {
    grid-template-columns: 1fr;
  }
  .layout-section.section-type7 .layout-section__container .card__cat {
    color: var(--text-color);
    font-weight: 900;
    font-size: 1.125rem;
  }
  .layout-section.section-type7 .layout-section__container .card:nth-child(n+2) {
    display: flex;
    align-items: center;
  }
  .layout-section.section-type7 .layout-section__container .card:nth-child(n+2) .card__thumbnail {
    width: 110px;
    height: 110px;
  }
  .layout-section.section-type7 .layout-section__container .card:nth-child(n+2) .card__body {
    width: calc(100% - 110px);
  }
}
@media screen and (min-width: 768px) {
  .layout-section.section-type7 .layout-section__container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: repeat(auto-fit, minmax(0, 1fr));
  }
  .layout-section.section-type7 .layout-section__container .card__thumbnail {
    aspect-ratio: 16/9;
  }
  .layout-section.section-type7 .layout-section__container .card:nth-child(1) {
    align-self: flex-start;
    grid-column: 2 span;
    grid-row: 3 span;
    height: 100%;
  }
  .layout-section.section-type7 .layout-section__container .card:nth-child(n+2) {
    align-self: stretch;
    grid-column: 2 span;
    height: auto;
    display: flex;
    align-items: center;
  }
  .layout-section.section-type7 .layout-section__container .card:nth-child(n+2) .card__thumbnail {
    aspect-ratio: 16/16;
    width: 116px;
    height: 100%;
  }
  .layout-section.section-type7 .layout-section__container .card:nth-child(n+2) .card__body {
    width: calc(100% - 116px);
    padding-top: 0;
    padding-bottom: 0;
  }
}
.layout-section.style-type2 {
  background: var(--light-color-500);
  padding: 2rem 0;
}
.layout-section.style-type2 .headline {
  color: var(--text-color);
}
.layout-section.style-type2 .headline__title span {
  color: var(--secondary-color);
}
.layout-section.style-type2 .card__thumbnail {
  aspect-ratio: 16/14;
}
.layout-section.style-type2 .layout-section__container .basic-slider {
  position: relative;
  padding: 0 3rem !important;
}
@media screen and (max-width: 767px) {
  .layout-section.style-type2 .layout-section__container .basic-slider {
    padding-left: 1rem !important;
    padding-right: 0 !important;
  }
}
.layout-section.style-type2 .layout-section__container .basic-slider .swiper-button-group > div {
  background: var(--light-color-500);
  color: var(--text-color);
}
.layout-section.style-type3 .headline {
  margin-bottom: 1.5rem;
}
.layout-section.style-type3 .headline__title {
  font-size: 1.5rem;
  background-image: linear-gradient(120deg, #FF6A00 7.44%, #FF4235 61.21%, #FF2D55 93.69%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 1024px) {
  .layout-section.style-type3 .headline__title {
    font-size: 2.5rem;
  }
}
.layout-section.section-type10 {
  background: transparent;
}
@media screen and (max-width: 1023px) {
  .layout-section.section-type10 .layout-section__container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.layout-section.section-type10 .swiper {
  padding-top: 16px;
}
.layout-section.section-type10 .swiper-outer {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .layout-section.section-type10 .swiper-outer {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  .layout-section.section-type10 .swiper-outer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.layout-section.section-type10 .card {
  width: 100%;
  transition: all 0.4s;
  text-align: center;
  transform: center;
}
.layout-section.section-type10 .card .card__title {
  text-align: center;
}
.layout-section.section-type10 .card .card__thumbnail {
  aspect-ratio: 16/8;
  height: 350px;
}
.layout-section.section-type10 .card .card__body {
  opacity: 0;
  transition: all 0.3s;
}
.layout-section.section-type10 .swiper-slide-active {
  z-index: 5;
  transition-delay: 0.35s;
}
.layout-section.section-type10 .swiper-slide-active .card {
  transform: scale(1.082);
  transition-delay: 0.35s;
}
.layout-section.section-type10 .swiper-slide-active .card__body {
  opacity: 1;
  transition: all 0.3s;
  transition-delay: 0.35s;
}
.layout-section.section-type10 .swiper-slide {
  position: relative;
}
.layout-section.section-type10 .swiper-slide__placeholder {
  aspect-ratio: 16/8;
  height: 450px;
}
.layout-section.section-type10 .swiper-slide .card {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.hder {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 15;
  color: var(--header-text-color);
}
@media screen and (min-width: 1024px) {
  .hder {
    background: var(--header-wrapper-color);
  }
}
@media screen and (max-width: 1023px) {
  .hder {
    height: 0;
    z-index: 10000;
  }
  body:has(.hder-menu.is-visible) .hder {
    height: 100vh;
  }
  body:has(.app-newplayer.is-fullscreen) .hder {
    z-index: 9998;
  }
}
.hder-fixed {
  height: 14.3125rem;
  margin-bottom: 2rem;
}
body.search .hder-fixed {
  margin-bottom: 0;
}

.hder__second {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1023px) {
  .hder__second {
    height: 100%;
  }
}
.hder.is-sticky .direct-item {
  overflow: hidden;
  min-height: 0;
  height: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .hder.is-sticky .logo {
    transform: translateY(0);
  }
}
body:has(.hder-menu.is-visible) .direct-item {
  overflow: visible;
  min-height: var(--direct-container-height);
  height: var(--direct-container-height);
  padding-bottom: 1rem;
}

.hder__top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .hder__top {
    position: relative;
    background: var(--header-wrapper-color);
  }
}
.hder__top .logo,
.hder__top .hder__action {
  pointer-events: auto;
}
.hder__action {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hder__action button,
.hder__action a {
  background: transparent;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.hder__action button i,
.hder__action a i {
  pointer-events: none;
}
.hder__action button:hover,
.hder__action a:hover {
  color: var(--primary-color);
}
@media screen and (min-width: 1024px) {
  .hder__action button#trigger-menu,
  .hder__action a#trigger-menu {
    display: none;
  }
}

.hder-topbar {
  display: flex;
  align-items: center;
  height: var(--header-topbar-height);
  background: linear-gradient(120deg, var(--topbar-color-i) 7.44%, var(--topbar-color-m) 61.21%, var(--topbar-color-e) 93.69%);
  background-attachment: fixed;
}
@media screen and (min-width: 64rem) {
  .hder-topbar {
    background: linear-gradient(to right, var(--topbar-color-i) 43%, var(--topbar-color-e) 100%);
  }
}
.hder-topbar__left {
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 16px;
}
@media screen and (max-width: 1023px) {
  .hder-topbar__left {
    width: 100%;
  }
}
.hder-topbar-flex {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .hder-topbar-flex .topbar-program {
    display: none;
  }
}
.hder-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hder-topbar .topcat {
  font-size: 14px;
  font-weight: 500;
  user-select: none;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .hder-topbar .topcat {
    width: 37.5rem;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.hder-topbar .topcat__left, .hder-topbar .topcat__right {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 1;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.hder-topbar .topcat__left.swiper-button-disabled, .hder-topbar .topcat__right.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .hder-topbar .topcat__left, .hder-topbar .topcat__right {
    display: none;
  }
}
.hder-topbar .topcat__left {
  background: linear-gradient(to left, transparent, var(--topbar-color-i));
  left: 0;
  padding-right: 1rem;
  background-attachment: fixed;
}
.hder-topbar .topcat__right {
  background: linear-gradient(to left, transparent, var(--topbar-color-m));
  right: 0;
  padding-left: 1rem;
  background-attachment: fixed;
}
.hder-topbar .topcat .swiper-slide {
  width: auto;
}
.hder-topbar .topcat a {
  color: var(--topbar-text-color);
  padding: 0 8px;
  text-align: left;
}
.hder-topbar .topcat a:hover {
  text-decoration: underline;
}

.topbar-socials {
  display: flex;
  gap: 1rem;
}
.topbar-socials li a {
  background: white;
  color: var(--topbar-color-e);
  width: 24px;
  height: 24px;
  display: flex;
  font-size: 0.875rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.topbar-socials li a:hover {
  color: #333;
}
@media screen and (max-width: 1023px) {
  .topbar-socials {
    background: var(--header-wrapper-color);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 15;
    opacity: 0;
    transform: translateY(15%);
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }
  .topbar-socials li a {
    width: 36px;
    height: 36px;
    color: var(--text-color);
    font-size: 1rem;
  }
  body:has(.hder-menu.is-visible) .topbar-socials {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0.25s;
  }
}

.topbar-program {
  border: 1px solid white;
  color: #fff;
  font-size: 14px;
  padding: 0 8px;
  border-radius: 999px;
  font-weight: 500;
  line-height: 24px;
  opacity: 0.8;
  transition: all 0.16s ease-in-out;
}
.topbar-program:hover {
  background: white;
  color: #222;
  opacity: 1;
}

.logo {
  font-size: 1.5rem;
  font-family: var(--font-variant);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  text-transform: uppercase;
  transition: all 0.16s ease-in-out;
}
.logo__text {
  line-height: 1;
  display: flex;
}
.logo__text img {
  pointer-events: none;
}
.logo__image {
  height: 48px;
  transition: height 0.15s ease-in-out;
}
.logo__image img {
  width: auto;
  height: 48px;
  pointer-events: none;
  transition: height 0.15s ease-in-out;
  display: block;
}
body:has(.is-sticky) .logo__image img {
  height: 36px;
}

body:has(.is-sticky) .logo__image {
  height: 36px;
}

@media screen and (min-width: 1024px) {
  .logo {
    font-size: 2.25rem;
    transform: translateY(-4px);
  }
}

.hder-menu .topbar-program {
  display: none;
}
.hder-menu .lo-ultimo {
  background: #ff0001;
  color: #fff !important;
  padding-top: 4px;
  padding-bottom: 4px;
  gap: 8px;
}
.hder-menu .lo-ultimo i {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .hder-menu .lo-ultimo {
    padding-left: 12px;
    padding-right: 12px;
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 1023px) {
  .hder-menu {
    --menu-wrapper-color: #26242d;
    background: var(--menu-wrapper-color);
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    padding: 1.5rem;
    padding-bottom: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    transform: translateY(-15%);
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
  .hder-menu.is-visible {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }
  .hder-menu .topbar-program {
    display: inline-flex;
    height: 2.125rem;
    min-width: 15rem;
    margin-bottom: 1rem;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .hder-menu ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 16px;
    margin-bottom: 4.5rem;
  }
  .hder-menu ul li a {
    font-size: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
  }
  .hder-menu ul li a .has-child-ico {
    width: 24px;
    height: 24px;
    display: grid;
    place-content: center;
    font-weight: 400;
    transform: rotate(-90deg);
    font-size: 16px;
  }
  .hder-menu ul .sub-menu {
    position: absolute;
    left: 25%;
    top: 0;
    padding: 1.5rem;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: var(--menu-wrapper-color);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 5;
  }
  .hder-menu ul .sub-menu.is-visible {
    left: 0;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  .hder-menu ul .sub-menu li.menu-back {
    display: flex;
    align-items: center;
    cursor: pointer;
    touch-action: auto;
    gap: 1.25rem;
    font-size: 1.25rem;
    font-weight: 500;
  }
  .hder-menu ul .sub-menu li.menu-back i {
    transform: rotate(90deg);
    font-size: 16px;
  }
  .hder-menu ul .sub-menu li:not(.menu-back) {
    margin-left: 36px;
  }
  .hder-menu ul .sub-menu li:not(.menu-back) a {
    opacity: 0.5;
  }
}
@media screen and (min-width: 1024px) {
  .hder-menu {
    padding: 1rem 0;
    padding-bottom: 1.5rem;
    padding-left: 17.25rem;
    order: -1;
  }
  .hder-menu .topbar-socials {
    display: none;
  }
  .hder-menu .has-child-ico {
    display: none !important;
  }
  .hder-menu ul {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .hder-menu ul li {
    position: relative;
  }
  .hder-menu ul li.menu-back {
    display: none;
  }
  .hder-menu ul li a {
    font-weight: 500;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.875rem;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
  }
  .hder-menu ul li a:hover {
    color: var(--primary-color);
  }
  .hder-menu ul li:hover > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    user-select: auto;
    transform: translateY(0);
  }
  .hder-menu ul .sub-menu {
    background: var(--menu-wrapper-color);
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    flex-direction: column;
    min-width: 11.25rem;
    gap: 0;
    padding: 0.75rem 0;
    transform: translateY(32px);
    opacity: 0;
    pointer-events: none;
    user-select: none;
    transition: all 0.3s ease-in-out;
    z-index: 25;
  }
  .hder-menu ul .sub-menu:after {
    position: absolute;
    height: 24px;
    content: "";
    top: -24px;
    left: 0;
    width: 100%;
  }
  .hder-menu ul .sub-menu:before {
    border-style: solid;
    height: 0;
    width: 0;
    content: "";
    border-color: transparent transparent #56555c transparent;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    position: absolute;
    top: -0.5rem;
    left: 1.875rem;
    pointer-events: none;
  }
  .hder-menu ul .sub-menu li {
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
  .hder-menu ul .sub-menu li a {
    padding: 0.625rem 0.9375rem;
    color: #fff;
    font-size: 14px;
  }
  .hder-menu ul .sub-menu li:hover {
    background: var(--menu-wrapper-color-hover-state);
  }
}

.direct-item {
  display: flex;
  align-items: center;
  min-height: var(--direct-container-height);
  height: var(--direct-container-height);
  overflow: hidden;
  margin: auto;
}
.direct-item:not(.is-loading) {
  transition: all 0.16s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .direct-item {
    margin: unset;
  }
}
@media screen and (min-width: 1024px) {
  .direct-item {
    padding-left: 14.75rem;
  }
}
@media screen and (max-width: 767px) {
  .direct-item {
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  .direct-item {
    background: var(--header-wrapper-color);
  }
}
.direct-item.is-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.direct-item.is-loading:before {
  content: "";
  width: 28px;
  height: 28px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  position: absolute;
  animation: directoSpinner 1s infinite linear;
  left: 50%;
  top: 40%;
}
@keyframes directoSpinner {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0);
  }
}

.pdir {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .pdir {
    align-items: center;
  }
}
.pdir__poster {
  background: white;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  position: relative;
}
.pdir__poster img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.pdir__poster:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 0;
  animation: pulseZoomOut 2.5s infinite ease-in-out;
  animation-delay: 1.5s;
}
.pdir__poster:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 0;
  animation: pulseZoomOut 2.5s infinite ease-in-out;
}
.pdir__title {
  border-right: 3px solid white;
  padding-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .pdir__title {
    border-right: 0;
  }
}
.pdir__status {
  font-weight: 700;
  font-size: 0.875rem;
  gap: 0.25rem;
  text-transform: uppercase;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .pdir__status {
    margin-bottom: 0;
  }
}
.pdir__status span {
  width: 0.375rem;
  height: 0.375rem;
  background: #4DF299;
  border-radius: 50%;
  margin-top: 4px;
  animation: flash 3s infinite;
}
.pdir__name {
  font-family: var(--font-variant);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .pdir__name {
    font-size: 1.25rem;
  }
}
.pdir__content {
  width: calc(100% - 84px);
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .pdir__content {
    gap: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .pdir__content {
    flex-wrap: wrap;
  }
}
.pdir__snippet {
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pdir__snippet p {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  opacity: 0.75;
}
.pdir__snippet p:not(:first-child) > span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.pdir__snippet p:first-child {
  font-weight: 700;
  opacity: 1;
  line-clamp: unset;
}
@media screen and (max-width: 767px) {
  .pdir__snippet p:first-child {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
@keyframes pulseZoomOut {
  from {
    scale: 1;
    opacity: 1;
  }
  to {
    scale: 1.2;
    opacity: 0;
  }
}
@keyframes flash {
  0%, 69%, 80%, 89% {
    opacity: 1;
  }
  70%, 79%, 90%, to {
    opacity: 0.2;
  }
}

.card {
  position: relative;
}
.card__thumbnail, .card__thumbnail img {
  pointer-events: none;
}
.card__thumbnail {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
  position: relative;
}
.card__thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.card__thumbnail a {
  pointer-events: auto;
}
.card__featured-type {
  background: white;
  color: var(--text-color);
  position: absolute;
  right: 1rem;
  top: -1rem;
  min-width: 2.625rem;
  border-radius: 99px;
  line-height: 1.625rem;
  text-align: center;
  pointer-events: none;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
  z-index: 5;
}
.card__header {
  position: absolute;
  left: 0.75rem;
  bottom: 0;
  background: var(--card-wrapper-color);
  color: #fff;
  z-index: 1;
  padding: 1.125rem;
  width: calc(100% - 24px);
}
.card__cat {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875rem;
}
.card__body {
  width: 100%;
  position: relative;
  padding: 1.25rem 1rem;
}
.card__title {
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.card__title a {
  pointer-events: auto;
}
@media screen and (min-width: 1024px) {
  .card__title {
    font-size: 1.25rem;
  }
}
.card:hover .card__featured-type {
  color: vaR(--primary-color);
}
.card:hover .card__title {
  color: var(--primary-color);
}
.card:hover .card__thumbnail img {
  scale: 1.05;
}
.card--type2 .card__thumbnail {
  aspect-ratio: 16/20;
}
.card--type3 .card__thumbnail {
  aspect-ratio: 16/14;
}
.card--type3 .card__body {
  padding: 0;
}
.card--type3 .card__header {
  position: relative;
  margin-top: 0;
  left: 0;
  top: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.card--type3 .card__title {
  font-size: 1.125rem;
}
.card--outline {
  border: 1px solid var(--light-color);
}
.card--outline .card__thumbnail {
  aspect-ratio: 16/9;
}
.card--outline .card__header {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  margin-top: 0;
  padding: 0;
  background: transparent;
  color: var(--text-color);
}
.card--outline {
  border: 1px solid var(--light-color);
}
.card--outline .card__thumbnail {
  aspect-ratio: 16/9;
}
.card--outline .card__header {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  margin-top: 0;
  padding: 1rem;
  background: transparent;
  color: var(--text-color);
}
.card--outline .card__body {
  padding: 0;
}
.card--outline.type5 .card__thumbnail {
  aspect-ratio: 16/16;
}
.card--block {
  background: white;
  align-self: stretch;
  overflow: hidden;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
.card--block .card__header {
  background: transparent;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  margin-top: 0;
}
.card--block .card__body {
  padding: 0;
}
.card--block .card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.card--block > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.card--search {
  border: 1px solid var(--light-color);
}
.card--search .card__thumbnail {
  aspect-ratio: 16/12;
}
.card--search .card__header {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  margin-top: 0;
  padding: 1rem;
  background: transparent;
  color: var(--text-color);
}
.card--search .card__title {
  font-weight: 700;
}
.card--search .card__body {
  padding: 0;
  width: 100%;
}
.card--search .card__summary {
  width: 100%;
  padding: 1rem;
  padding-top: 0;
}
.card--search .card__summary p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.card--search.type5 .card__thumbnail {
  aspect-ratio: 16/16;
}
@media screen and (min-width: 768px) {
  .card--search {
    --thumb-size: 300px;
    display: flex;
    align-items: center;
  }
  .card--search .card__thumbnail {
    width: var(--thumb-size);
    aspect-ratio: 16/12;
  }
}
.card--search:not(:first-of-type) {
  --thumb-size: 160px;
}
.card--search:not(:first-of-type) .card__thumbnail {
  height: 10rem;
}

.section-type6 .card--block .card__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-programa {
  --thumbnail-width: 124px;
  background-image: url(../img/ondas.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: var(--card-p-wrapper-color);
  color: var(--card-p-text-color);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .card-programa {
    --thumbnail-width: 180px;
  }
}
.card-programa:not(:last-child) {
  margin-bottom: 0.75rem;
}
.card-programa__thumbnail {
  width: var(--thumbnail-width);
  height: var(--thumbnail-width);
  border-radius: 50%;
  overflow: hidden;
}
.card-programa__thumbnail img {
  width: var(--thumbnail-width);
  height: var(--thumbnail-width);
  object-fit: cover;
  display: block;
}
.card-programa__body {
  width: calc(100% - var(--thumbnail-width) - 32px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-programa__title {
  font-family: var(--font-variant);
  font-size: 1.25rem;
  font-weight: 900;
}
@media screen and (min-width: 1024px) {
  .card-programa__title {
    font-size: 2.25rem;
  }
}
.card-programa__subtitle {
  font-weight: 300;
  font-size: 0.875rem;
  margin-top: -4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (min-width: 1024px) {
  .card-programa__subtitle {
    font-size: 1.125rem;
  }
}
.card-programa__date {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0.75;
}
.card-programa__days {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.card-programa__days span:not(:last-child):after {
  content: "-";
}

.card-rounded {
  padding: 0.5rem;
}
.card-rounded__thumbnail a {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/16;
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease-in-out;
}
.card-rounded__thumbnail img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.card-rounded__body {
  margin-top: 0.5rem;
}
.card-rounded__title {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  pointer-events: none;
}
.card-rounded a {
  pointer-events: auto;
}
.card-rounded:hover .card-rounded__thumbnail a {
  scale: 1.05;
}

.card-widget {
  border: 1px solid var(--light-color);
}
.card-widget__thumbnail {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  display: block;
}
.card-widget__thumbnail a {
  display: block;
  height: 100%;
}
.card-widget__thumbnail img {
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-widget__cat {
  font-weight: 900;
  text-transform: uppercase;
}
.card-widget__index {
  background-image: linear-gradient(120deg, var(--topbar-color-i) 7.44%, var(--topbar-color-m) 61.21%, var(--topbar-color-e) 93.69%);
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
  width: 3rem;
  height: 3rem;
  font-size: 2.625rem;
  font-weight: 900;
  font-family: var(--font-variant);
  color: #fff;
}
.card-widget__index:before {
  position: absolute;
  left: 0.5rem;
  bottom: -0.75rem;
  content: attr(data-i);
}
.card-widget__title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.card-widget__header {
  padding: 1rem;
  position: relative;
}
.card-widget:hover .card-widget__title {
  color: var(--primary-color);
}
.card-widget__featured-type {
  background: white;
  color: var(--text-color);
  position: absolute;
  right: 1rem;
  top: -1rem;
  min-width: 2.625rem;
  border-radius: 99px;
  line-height: 1.625rem;
  text-align: center;
  pointer-events: none;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .card-widget:not(:first-of-type) {
    display: flex;
    align-items: center;
  }
  .card-widget:not(:first-of-type) .card-widget__thumbnail {
    width: 120px;
    height: 120px;
  }
  .card-widget:not(:first-of-type) .card-widget__thumbnail a {
    width: 100%;
    height: 100%;
  }
  .card-widget:not(:first-of-type) .card-widget__title {
    font-size: 1.25rem;
  }
  .card-widget:not(:first-of-type) .card-widget__body {
    width: calc(100% - 120px);
  }
  .card-widget:not(:first-of-type) .card-widget__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .card-widget:not(:first-of-type) .card-widget__index {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.5rem;
  }
  .card-widget:not(:first-of-type) .card-widget__index:before {
    position: absolute;
    left: 0.5rem;
    bottom: -0.3125rem;
    content: attr(data-i);
  }
}

.timeline {
  display: flex;
  flex-direction: column;
  margin-left: -16px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.timeline-btn-more {
  display: inline-block;
  margin: auto;
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}
.timeline-btn-more a {
  padding: 16px;
  line-height: 1;
  background: var(--primary-color);
  color: #fff !important;
  display: inline-block;
  margin: auto;
}
.timeline-btn-more a:hover {
  background: var(--secondary-color);
}

.timeline-item {
  --thumbnail-size: 220px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .timeline-item {
    display: block;
    padding-bottom: 16px;
  }
}
.timeline-item:before {
  position: absolute;
  content: "";
  background: var(--primary-color);
  width: 2px;
  height: 50%;
  top: calc(100% - 36px);
  left: 31px;
  transform: translateY(-50%);
  z-index: 2;
}
.timeline-item:not(:first-of-type):before {
  top: 0;
  height: 100%;
  transform: translateY(0);
}
.timeline-item:last-of-type {
  padding-bottom: 0;
}
.timeline-item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 3;
}
.timeline-item__date {
  background: var(--primary-color);
  color: #fff;
  width: 62px;
  padding: 0 8px;
  font-weight: 500;
  font-size: 18px;
  border-radius: 6px;
  z-index: 3;
  position: relative;
}
.timeline-item__date:before {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .timeline-item__date {
    position: absolute;
    left: 8px;
    top: initial;
    bottom: 24px;
    font-size: 14px;
    width: 52px;
    text-align: center;
  }
  .timeline-item__date:before {
    display: none;
  }
}
.timeline-item__body {
  background: #fff;
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 12px;
  border: 1px solid var(--light-color);
  overflow: hidden;
  border-radius: 4px;
  transition: all 0.4s;
}
@media screen and (max-width: 767px) {
  .timeline-item__body {
    z-index: 2;
  }
}
.timeline-item__title {
  width: calc(100% - var(--thumbnail-size));
  margin: 0 !important;
  padding: 0;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .timeline-item__title {
    font-size: 14px;
    width: calc(100% - 124px);
  }
}
.timeline-item__thumbnail {
  width: var(--thumbnail-size);
  height: 124px;
}
.timeline-item__thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  max-width: 100% !important;
  display: block;
  margin-left: 0 !important;
}
@media screen and (max-width: 767px) {
  .timeline-item__thumbnail {
    width: 124px;
    position: relative;
    z-index: 2;
  }
}
.timeline-item:hover .timeline-item__body {
  opacity: 0.5;
}

.headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.headline__title {
  font-size: 1rem;
  font-weight: 900;
  line-height: 42px;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .headline__title {
    font-size: 1.125rem;
  }
}
.headline__title span {
  position: absolute;
  left: 25%;
  top: 1.375rem;
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary-color);
  pointer-events: none;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .headline__title span {
    font-size: 2.5rem;
  }
}
.headline i {
  pointer-events: none;
}
.headline a {
  width: 32px;
  height: 32px;
  display: grid;
  place-content: center;
  font-size: 20px;
  color: var(--primary-color);
  transform: translateY(16px);
}

.container--category .headline,
body:has(.card-programa) .headline {
  margin-bottom: 2rem;
}
.container--category .headline__title,
body:has(.card-programa) .headline__title {
  font-size: 1.5rem;
  font-weight: 700;
}

body:has(.card-programa) .headline {
  margin-bottom: 4rem;
}

body.category .headline,
body.tag .headline {
  margin-bottom: 2rem;
}
body.category .headline__title,
body.tag .headline__title {
  font-size: 1.25rem;
  color: var(--text-color);
}
@media screen and (min-width: 1024px) {
  body.category .headline__title,
  body.tag .headline__title {
    font-size: 2rem;
  }
}

.search-box {
  background: var(--search-wrapper-color);
  padding: 2rem 0;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1023px) {
  .search-box {
    margin-top: -1rem;
  }
}
.search-box form {
  border-bottom: 1px solid white;
  display: flex;
  align-items: center;
  position: relative;
}
.search-box form .search-icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2.625rem;
  text-align: center;
  display: grid;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
}
.search-box form input {
  background: transparent;
  height: 3rem;
  padding-left: 3rem;
  border-radius: 0;
  border: 0;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  outline: 0;
  color: white;
}

.post {
  color: var(--text-color);
}
.post__header h1 {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.35;
  padding-bottom: 1.25rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .post__header h1 {
    font-size: 2.25rem;
  }
}
.post__header h1.no-precontent {
  margin-bottom: 32px;
}
.post__header h1:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 16%;
  height: 1px;
  background: var(--primary-color);
}
.post__header.lo-ultimo h1 i {
  color: var(--primary-color);
  margin-right: 8px;
}
.post__header.type-video .post__video {
  width: 100%;
  display: none;
}
@media screen and (max-width: 1023px) {
  .post__header.type-video .post__video {
    margin-left: -16px;
    width: calc(100% + 32px);
  }
}
.post__header.type-video .post__video.is-visible {
  display: block;
}
.post__header.type-video .post__video video,
.post__header.type-video .post__video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  outline: 0;
}
.post__header.type-video .post__video.is-vertical {
  background: var(--wrapper-color);
}
.post__header.type-video .post__video.is-vertical.is-visible {
  display: flex;
  justify-content: center;
  align-items: center;
}
.post__header.type-video .post__video.is-vertical iframe,
.post__header.type-video .post__video.is-vertical video {
  width: auto;
  aspect-ratio: 9/16;
  height: 476px;
}
.post__header.type-video .post__preview {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post__header.type-video .post__preview:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.75), transparent);
  z-index: 2;
}
.post__header.type-video .post__preview img {
  z-index: 1;
}
.post__header.type-video .post__preview.is-video-loaded {
  display: none;
}
@media screen and (max-width: 1023px) {
  .post__header.type-video .post__preview {
    margin-left: -16px;
    width: calc(100% + 32px);
  }
}
.post__header.type-video .post__preview .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 2.625rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: white;
  color: var(--text-color);
}
@media screen and (min-width: 1024px) {
  .post__header.type-video .post__preview .play {
    width: 5.8125rem;
    height: 5.8125rem;
  }
}
.post__header.type-video .post__preview .play i {
  transform: translateX(2.5px);
}
.post__header.type-video .post__preview:hover .play {
  color: var(--primary-color);
}
.post__header.type-video .post__preview-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-weight: 700;
  z-index: 2;
  padding: 1.5rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}
.post:has(.type-video) .post__content, .post:has(.type-gallery) .post__content {
  margin-top: 0;
}
.post:has(.type-page) .post__content {
  margin-top: 1rem;
}
.post__precontent {
  max-width: 100% !important;
  margin-left: 0 !important;
  font-size: 1.25rem;
  padding-top: 0;
}
.post__pretitle {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--primary-color);
}
.post__thumbnail {
  aspect-ratio: 16/9;
  position: relative;
}
.post__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 1023px) {
  .post__thumbnail img {
    margin-left: -16px;
    width: calc(100% + 32px);
  }
}
.post__thumbnail:before {
  content: "";
  position: absolute;
  right: 0;
  top: -16px;
  height: 16px;
  width: 95%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}
@media screen and (max-width: 767px) {
  .post__thumbnail:before {
    width: 100%;
  }
}
.post__thumbnail-meta {
  position: absolute;
  left: 16px;
  bottom: 3rem;
  width: calc(100% - 32px);
  background: var(--wrapper-color);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  .post__thumbnail-meta {
    bottom: 0;
  }
}
.post__thumbnail-meta:before {
  content: "";
  margin-right: 16px;
  border: 6px solid transparent;
  border-bottom: 6px solid white;
  opacity: 0.6;
}
.post__meta {
  background: white;
  padding: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--light-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.post__user {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  line-height: 1;
  gap: 0.25rem;
}
.post__user .user {
  font-size: 1rem;
  font-weight: 700;
}
.post__user .time {
  opacity: 0.85;
  font-size: 0.875rem;
}
.post__share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.post__share a {
  width: 32px;
  height: 32px;
  background: var(--wrapper-color);
  color: #fff !important;
  display: grid;
  font-size: 16px;
  place-content: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.post__share a:hover {
  background: var(--primary-color);
}
.post__content {
  font-size: 1rem;
  line-height: 1.75;
  width: 100%;
  margin-left: 1rem;
  max-width: calc(100% - 32px);
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .post__content {
    margin-top: 0;
  }
}
.post__content.post__precontent {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .post__content {
    font-size: 1.125rem;
  }
}
.post__content blockquote {
  margin-left: 0;
}
.post__content h1,
.post__content h2,
.post__content h3,
.post__content h4,
.post__content h5,
.post__content h6 {
  margin-bottom: 2rem;
  text-wrap: balance;
  font-weight: 600;
}
.post__content ul,
.post__content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.post__content ul li,
.post__content ol li {
  margin-top: 0rem;
  position: relative;
  list-style: disc;
}
.post__content p,
.post__content pre {
  text-wrap: pretty;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.post__content hr {
  display: block;
  border-width: 0;
  height: 4px;
  background: var(--light-color);
  opacity: 0.5;
}
.post__content a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
}
.post__content a:hover {
  color: var(--secondary-color);
}
.post__content img {
  width: auto;
  margin-left: -16px;
  max-width: calc(100% + 32px);
  display: block;
}
.post__content .instagram-media {
  margin: 0 auto !important;
}
.post__content iframe,
.post__content video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  margin-bottom: 1.5rem !important;
}
.post__content iframe[src*=facebook] {
  height: auto !important;
  margin: auto;
  display: block;
}
.post__content .wp-block-embed-youtube .wp-block-embed__wrapper {
  aspect-ratio: 16/9;
}
.post__content .wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.post__content .wp-block-embed-youtube .wp-block-embed__wrapper video {
  width: 100%;
  height: 100%;
}
.post__content .wp-block-embed-twitter .twitter-tweet.twitter-tweet-rendered {
  margin: auto;
}
.post__footer {
  border-top: 1px solid var(--light-color);
  border-bottom: 1px solid var(--light-color);
  padding: 1.5rem 0;
}
.post__footer .post__share {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.post__footer .post__share > span {
  text-transform: uppercase;
  font-weight: 400;
  margin-right: 1rem;
}
.post__footer:has(.post__tags) .post__share {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-color);
}
.post__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 0.75rem;
  row-gap: 0.25rem;
  padding: 0 1rem;
}
.post__tags a {
  border: 1px solid var(--light-color);
  border-radius: 999px;
  font-size: 1rem;
  padding: 0.25rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.post__tags a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.migas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.migas li.title {
  font-size: 0.875rem;
  font-weight: 700;
  opacity: 0.75;
}
.migas li a {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease-in-out;
}
.migas li a:hover {
  color: var(--primary-color);
}
.migas li a:after {
  content: "»";
  opacity: 0.5;
  margin-left: 0.75rem;
  color: var(--text-color);
}
.migas li:last-child a:after {
  display: none;
}
.migas-container {
  border-bottom: 1px solid var(--light-color);
  margin-bottom: 2rem;
  margin-top: -2.25rem;
}

.footer {
  background: var(--light-color-500);
  margin-top: 3rem;
  padding: 2rem 0;
  margin-bottom: 38px;
}
@media screen and (max-width: 991px) {
  .footer {
    margin-bottom: 84px;
  }
}
.footer .footer-menu-list {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.footer__link {
  display: flex;
  flex-direction: column;
}
.footer__link .title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer__link ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__link ul li a {
  font-size: 1rem;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}
.footer__link ul li a:hover {
  color: var(--primary-color);
}
.footer__media {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__social a {
  width: 32px;
  height: 32px;
  background: var(--wrapper-color);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease-in-out;
}
.footer__social a:hover {
  background: var(--primary-color);
}
.footer__logo {
  font-size: 2rem;
  font-weight: 900;
  margin-right: 1.5rem;
  line-height: 1;
  padding-right: 1.25rem;
  text-transform: uppercase;
  border-right: 3px solid var(--wrapper-color);
}
.footer__logo.logo-image {
  display: flex;
  pointer-events: none;
}
.footer__logo.logo-image img {
  width: auto;
  height: 36px;
}
.footer__description {
  font-size: 0.75rem;
  text-align: left;
}
.footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 30rem;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__brands img {
  width: auto;
  height: 28px;
  display: block;
}

.tabs-list {
  border-top: 2px solid var(--text-color);
  border-bottom: 2px solid var(--text-color);
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  gap: 12px;
}

.tabs-list button {
  position: relative;
  background: white;
  color: var(--text-color);
  padding: 0 16px;
  line-height: 45px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.tabs-list button:hover {
  color: var(--primary-color);
}

.tabs-content {
  position: relative;
}

.tabs-ads .ads,
.tabs-ads img {
  width: auto;
  max-width: 100%;
  display: block;
  height: auto;
  margin-bottom: 16px;
}

.tabs-item {
  display: none;
  gap: 16px;
}
.tabs-item.is-active {
  display: grid;
  animation: fadeIn 0.6s forwards;
}
@media screen and (min-width: 768px) {
  .tabs-item {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .tabs-item .card:nth-child(1) {
    grid-column: 7 span;
    align-self: flex-start;
  }
  .tabs-item .card:nth-child(2) {
    align-self: flex-start;
    grid-column: 5 span;
  }
  .tabs-item .card:nth-child(n+3) {
    grid-column: 3 span;
  }
  .tabs-item .card:nth-child(n+3) .card__thumbnail {
    aspect-ratio: 16/15;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.programa-title {
  font-weight: 300;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.programa-no-available {
  background: var(--light-color-500);
  padding: 1.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  border-radius: 4px;
  color: var(--programacion-text-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.programa-no-available i.fas {
  font-size: 1.5rem;
  opacity: 0.5;
}

.programa-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
}
.programa-list a {
  color: var(--programacion-text-color);
  flex-grow: 1;
  font-size: 1.125rem;
  padding: 1rem 0;
  padding-bottom: 1.25rem;
  padding-top: 0;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.programa-list a span {
  display: none;
}
.programa-list a span {
  pointer-events: none;
}
.programa-list a:hover {
  color: var(--text-color);
}
@media screen and (max-width: 1023px) {
  .programa-list a {
    font-size: 0;
  }
  .programa-list a span {
    font-size: 1rem;
    display: block;
  }
}
.programa-list a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 4px;
  background: var(--light-color-500);
}
.programa-list a.is-active:before {
  background: var(--primary-color);
}

.programa-items {
  margin-top: 1.25rem;
}

.channels {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.channels__wrapper {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .channels__wrapper {
    width: calc(100% - 320px - 24px);
  }
}
.channels__posts {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .channels__posts {
    width: 320px;
    position: sticky;
    top: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .channels__posts {
    margin-top: 1.5rem;
    position: relative;
    top: 0;
  }
}
.channels__posts .card:not(:last-of-type) {
  margin-bottom: 1rem;
}
.channels__posts .card__thumbnail {
  aspect-ratio: 16/10;
}
.channels__iframe, .channels__list {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  margin: auto;
}
.channels__list {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  overflow-x: auto;
  margin-bottom: 0.5rem;
}
.channels__list button {
  padding: 0 1.5rem;
  line-height: 42px;
  cursor: pointer;
  font-weight: 700;
  background: var(--wrapper-color);
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
}
.channels__list button:hover {
  color: var(--primary-color);
}
.channels__iframe {
  background: var(--wrapper-color);
  margin-top: 2rem;
  width: 100%;
  aspect-ratio: 16/9;
}
.channels__iframe:before {
  content: "";
  position: absolute;
  right: -8px;
  top: -16px;
  height: 16px;
  width: 95%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}
@media screen and (max-width: 767px) {
  .channels__iframe:before {
    width: 100%;
    right: 0;
  }
}
.channels__iframe:after {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  width: 8px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .channels__iframe:after {
    right: 0;
    display: none;
  }
}

.sticky-channel {
  position: relative;
  z-index: 5;
  opacity: 0;
  height: 0;
  pointer-events: none;
  overflow: hidden;
}
.sticky-channel:empty {
  display: none !important;
}
.sticky-channel button {
  display: none;
}
.sticky-channel.is-visible .sticky-channel__close {
  background: var(--wrapper-color);
  color: #fff;
  position: absolute;
  top: -16px;
  right: 16px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-channel.is-visible .sticky-channel__close i {
  pointer-events: none;
}
.sticky-channel.is-visible {
  overflow: visible;
  height: auto;
  opacity: 1;
  pointer-events: auto;
  position: fixed !important;
  right: 1rem !important;
  left: initial !important;
  top: initial !important;
  bottom: 96px !important;
  z-index: 999;
  width: 320px !important;
}
.sticky-channel iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.sticky-channel.disable-player {
  display: none;
}

.aside .widget-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .aside .widget-title {
    font-size: 1.75rem;
  }
}

.mejs-audio .mejs-controls,
.mejs-video .mejs-controls {
  background: var(--player-color) !important;
}
.mejs-audio .mejs-time-current,
.mejs-video .mejs-time-current {
  background: var(--secondary-color) !important;
}

.mejs-video {
  background: var(--wrapper-color) !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
  user-select: none;
}
.mejs-video .mejs-overlay {
  width: 100% !important;
  height: 100% !important;
}
.mejs-video .mejs-overlay-button {
  border-radius: 50%;
  background-color: #fff;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSIjMTExIiBzdHJva2U9IiMxMTEiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1wbGF5Ij48cG9seWdvbiBwb2ludHM9IjYgMyAyMCAxMiA2IDIxIDYgMyIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: center center !important;
  width: 54px;
  height: 54px;
  transition: all 0.3s ease-in-out;
}
.mejs-video:hover .mejs-overlay-button {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSIjZmY2YTAwIiBzdHJva2U9IiNmZjZhMDAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1wbGF5Ij48cG9seWdvbiBwb2ludHM9IjYgMyAyMCAxMiA2IDIxIDYgMyIvPjwvc3ZnPg==") !important;
}
.mejs-video video,
.mejs-video .mejs-poster {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16/9 !important;
}

.mejs-audio {
  user-select: none;
  width: 100% !important;
}

.related {
  width: 100%;
  padding: 16px;
  padding-top: 0;
  margin-top: 32px;
}
.related__header {
  margin-bottom: 24px;
}
.related__header h3 {
  font-size: 24px;
  font-weight: 300;
}
.related__body {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .related__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.related-item {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  border: 1px solid var(--light-color);
  transition: all 0.3s;
}
.related-item:hover {
  opacity: 0.5;
}
.related-item__thumbnail {
  width: 162px;
  height: 124px;
  display: block;
  pointer-events: none;
}
.related-item__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-item__header {
  width: calc(100% - 162px);
  padding: 16px;
  pointer-events: none;
}

.featured {
  --featured-color-wrapper: var(--primary-color);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 42px;
}
@media screen and (max-width: 1023px) {
  .featured {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.featured__header {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 16px;
  font-size: 16px;
  line-height: 1;
  background: var(--featured-color-wrapper);
  color: #fff;
}
.featured__header h2 {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.featured__header h2 i {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .featured__header {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    display: block;
    text-align: center;
  }
}
.featured__grid {
  background: var(--featured-color-wrapper);
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .featured__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.featured__grid .featured-item-list {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-item {
  background: var(--featured-color-wrapper);
  --image-size: 50%;
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.featured-item__image {
  width: var(--image-size);
  height: var(--image-size);
  aspect-ratio: 16/10;
  position: relative;
}
.featured-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-item__image:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 25%;
  background: linear-gradient(to right, transparent, var(--featured-color-wrapper));
  pointer-events: none;
}
.featured-item__body {
  width: calc(100% - var(--image-size));
  padding: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.featured-item__title {
  font-size: 20px;
}
.featured-item__title a {
  display: block;
}
@media screen and (min-width: 1024px) {
  .featured-item__title {
    font-size: 32px;
  }
}
.featured-item__summary {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .featured-item {
    display: flex;
    flex-direction: column;
  }
  .featured-item__image, .featured-item__body {
    width: 100%;
  }
  .featured-item__image:before {
    top: initial;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, transparent, var(--featured-color-wrapper));
  }
}

.featured-item-list {
  --image-size: 124px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background-color 0.3s;
  position: relative;
}
.featured-item-list a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.featured-item-list a span {
  font-size: 0;
}
.featured-item-list:hover {
  background: rgba(255, 255, 255, 0.1);
}
.featured-item-list__image {
  width: var(--image-size);
  height: 100%;
  aspect-ratio: 16/12;
}
.featured-item-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-item-list__body {
  width: calc(100% - var(--image-size));
  color: #fff;
}
.featured-item-list__meta {
  color: #fff !important;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}
.featured-item-list__title {
  font-size: 16px;
}

.basic-slider .swiper-slide {
  box-sizing: border-box;
}
.basic-slider .swiper-button-group {
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  font-size: 1.5rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .basic-slider .swiper-button-group {
    display: none;
  }
}
.basic-slider .swiper-button-group > div {
  background: var(--wrapper-color);
  cursor: pointer;
  width: 48px;
  height: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.basic-slider .swiper-button-group > div i {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.basic-slider .swiper-button-group > div.swiper-button-disabled i {
  opacity: 0;
  pointer-events: none;
}

.gallery-slider {
  position: relative;
  background-image: linear-gradient(120deg, var(--topbar-color-i) 7.44%, var(--topbar-color-m) 61.21%, var(--topbar-color-e) 93.69%);
}
.gallery-slider .post__thumbnail {
  width: 100% !important;
  height: 100% !important;
}
.gallery-slider:fullscreen {
  height: 100% !important;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.gallery-slider:fullscreen .gallery-slider-main {
  width: 100%;
}
.gallery-slider > button {
  background: var(--wrapper-color);
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 3;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.gallery-slider > button:hover {
  background: var(--primary-color);
  color: #fff;
}
.gallery-slider:before {
  content: "";
  position: absolute;
  right: 0;
  top: -16px;
  height: 16px;
  width: 95%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}
@media screen and (max-width: 767px) {
  .gallery-slider:before {
    width: 100%;
  }
}
.gallery-slider .gallery-slider-main {
  position: relative;
  flex-grow: 1;
}
.gallery-slider .gallery-slider-main .swiper-button-group {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.gallery-slider .gallery-slider-main .swiper-button-group .swiper-button-prev,
.gallery-slider .gallery-slider-main .swiper-button-group .swiper-button-next {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-content: center;
  pointer-events: auto;
  background: var(--wrapper-color);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.gallery-slider .gallery-slider-main .swiper-button-group .swiper-button-prev:hover,
.gallery-slider .gallery-slider-main .swiper-button-group .swiper-button-next:hover {
  background: var(--primary-color);
  color: #fff;
}
.gallery-slider .gallery-slider-thumb {
  padding: 1.5rem;
}
.gallery-slider .gallery-slider-thumb .post__thumbnail:before {
  display: none;
}
.gallery-slider .gallery-slider-thumb .post__thumbnail img {
  margin-left: 0;
  width: 100%;
}
.gallery-slider .gallery-slider-thumb .swiper-slide {
  width: 100px !important;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.gallery-slider .gallery-slider-thumb .swiper-slide.swiper-slide-thumb-active {
  box-shadow: 0 0 1px 4px white;
}

.swiper-outer .swiper-button-group {
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  font-size: 1.5rem;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .swiper-outer .swiper-button-group {
    display: none;
  }
}
.swiper-outer .swiper-button-group > div {
  color: var(--text-color);
  cursor: pointer;
  width: 48px;
  height: 100%;
  display: grid;
  color: var(--text-color);
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.swiper-outer .swiper-button-group > div i {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.swiper-outer .swiper-button-group > div.swiper-button-disabled i {
  opacity: 0;
  pointer-events: none;
}

/**
 * Swiper 11.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 30, 2024
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.post-pagination ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.post-pagination ul a,
.post-pagination ul span {
  color: var(--text-color);
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--light-color-500);
  transition: all 0.3s ease-in-out;
}
.post-pagination ul a:hover,
.post-pagination ul span:hover {
  background: var(--primary-color);
  color: #fff;
}
.post-pagination ul a.current,
.post-pagination ul span.current {
  background: transparent;
  color: var(--text-color);
}

body.loading:before {
  content: "";
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 24px;
  height: 24px;
  border: 4px solid var(--wrapper-color);
  z-index: 30;
  border-top-color: var(--primary-color);
  animation: loading-animation 1s infinite ease-in-out;
  border-radius: 50%;
  margin-bottom: 70px;
}
@media screen and (max-width: 1023px) {
  body.loading:before {
    margin-bottom: 140px;
  }
}
@keyframes loading-animation {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0);
  }
}

.post .wp-block-video,
.post .wp-block-audio {
  margin-bottom: 32px;
}

/*# sourceMappingURL=index.min.css.map */
.eufm-ad-block{position:relative;width:100%;margin:26px 0;text-align:center;border:0;border-top:1px solid #d9d9d9;border-radius:0;padding:10px 0 0;background:transparent;box-sizing:border-box}.eufm-ad-block__label{position:absolute;top:-7px;left:50%;transform:translateX(-50%);display:inline-flex;align-items:center;justify-content:center;padding:0 8px;background:#fff;color:rgba(0,0,0,.4);font-size:.65rem;font-weight:300;line-height:1.2;text-transform:lowercase;letter-spacing:0;white-space:nowrap}.eufm-ad-block__content{display:block;margin:0 auto;max-width:100%;overflow:hidden}.eufm-ad-block__content>*{max-width:100%}.section-advertising{margin:24px 0}.section-advertising .layout-section__container{display:block}
.sticky-channel{visibility:hidden;opacity:0;transition:opacity .28s ease,transform .28s ease,top .32s ease,left .32s ease,width .32s ease;transform:translateY(8px)}.sticky-channel.is-positioned{height:auto;pointer-events:auto;overflow:visible}.sticky-channel.is-visible:not(.is-positioned),.sticky-channel.is-positioned:not(.is-player-ready){visibility:hidden!important;opacity:0!important;pointer-events:none!important}.sticky-channel.is-positioned.is-player-ready{visibility:visible!important;opacity:1!important;transform:translateY(0)}.sticky-channel.is-mobile-home-player{visibility:visible!important;opacity:1!important;transform:none!important;transition:none!important;pointer-events:auto!important}
