:root {
  --vp-color-bg: #ffffff;
  --vp-color-header: #eee9e0;
  --vp-color-footer: #e6ded3;
  --vp-color-text-main: #333333;
  --vp-color-text-sub: #777777;
  --vp-radius-base: 2px;
  --vp-font-stack: 'Segoe UI', system-ui, sans-serif;
  --vp-anim-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

.ad-container {
  margin: 16px auto;
}

.ad-container[data-ad-index="0"] {
  margin-top: 0;
}

.gptslot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  min-height: 250px;
  max-width: 300px;
  margin: 0 auto;
}

.ad-label {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: start;
     -moz-box-align: start;
          align-items: start;
  position: relative;
  padding: 5px 0px 2px 0px;
  font-size: 14px;
  color: rgb(73, 73, 73);
}

body {
  font-family: var(--vp-font-stack);
  background: var(--vp-color-bg);
  color: var(--vp-color-text-main);
}

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

.vp-top-masthead {
  background: var(--vp-color-header);
}

.vp-masthead-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  padding: 15px 5%;
}

.vp-trigger-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  aspect-ratio: 1;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

#vpMenuToggle {
  background-image: url(../../images/menu.4c58984.png);
}

#vpSearchToggle {
  background-image: url(../../images/search.de20c87.png);
}

.vp-search-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 20px;
  padding: 2px 5px;
}

.vp-search-container.is-active {
  background: rgba(0, 0, 0, 0.05);
}

.vp-search-input {
  width: 0;
  opacity: 0;
  border: none;
  outline: none;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.vp-search-container.is-active .vp-search-input {
  width: 150px;
  opacity: 1;
  padding: 5px 10px;
}

.vp-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: #fdfaf5;
  z-index: 1001;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
}

.vp-sidebar.is-visible {
  -webkit-transform: translateX(300px);
          transform: translateX(300px);
}

.vp-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.vp-sidebar-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.vp-sidebar-header {
  padding: 25px;
  border-bottom: 1px solid #eee;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  font-weight: bold;
  letter-spacing: 1px;
}

#vpSidebarClose {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #999;
}

.vp-sidebar-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding: 15px 0;
}

.vp-sidebar-item {
  padding: 15px 25px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  font-size: 0.95rem;
  color: #444;
}

.vp-sidebar-item:hover {
  background: #f0ede7;
  color: #000;
}

.vp-nav-div {
  cursor: pointer;
  padding: 5px 10px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  white-space: nowrap;
}

.vp-nav-div:hover {
  color: #8b7355;
}

.vp-brand-mark {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
}

.vp-masthead-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  gap: 35px;
  padding: 15px 0;
  font-size: 13px;
  border-bottom: 1px solid #ccb79c;
  border-top: 1px solid #ccb79c;
  letter-spacing: 1px;
}

.vp-nav-anchor:hover {
  text-decoration: underline;
}

.vp-main-flow {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
}

.vp-mt-20 {
  margin-top: 20px;
}

.vp-bottom-base {
  background: var(--vp-color-footer);
  text-align: center;
  padding-bottom: 40px;
}

.vp-footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  gap: 30px;
  padding: 30px 0;
  margin-bottom: 25px;
  font-size: 13px;
  color: #555;
  border-top: 1px solid #ccb79c;
  border-bottom: 1px solid #ccb79c;
}

.vp-footer-brand {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 3px;
}

.vp-zone-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.vp-hero-primary {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.vp-hero-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.vp-zone-hero-base {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.vp-zone-split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.vp-split-pane {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
}

.vp-pane-heading {
  font-size: 15px;
  font-weight: normal;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.vp-pane-heading.center {
  text-align: center;
}

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

.vp-grid-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.vp-grid-double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vp-card-overlay {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.vp-card-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: -webkit-transform var(--vp-anim-speed);
  transition: -webkit-transform var(--vp-anim-speed);
  transition: transform var(--vp-anim-speed);
  transition: transform var(--vp-anim-speed), -webkit-transform var(--vp-anim-speed);
  opacity: 0.85;
}

.vp-card-overlay:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 1;
}

.vp-overlay-gradient {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), color-stop(60%, transparent));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  pointer-events: none;
}

.vp-overlay-meta {
  position: absolute;
  bottom: 10px;
  left: 15px;
  right: 15px;
  color: #fff;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
}

.vp-overlay-author {
  font-size: 11px;
  -webkit-align-self: flex-end;
          align-self: flex-end;
  margin-bottom: 5px;
  opacity: 0.9;
}

.vp-overlay-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
}

.vp-play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  color: #fff;
  font-size: 16px;
  z-index: 2;
  padding-left: 3px;
  background: rgba(0, 0, 0, 0.3);
}

.vp-carousel-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.vp-carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
}

.vp-carousel-slide .vp-overlay-title {
  font-size: 18px;
  bottom: 20px;
}

.vp-carousel-dots {
  position: absolute;
  bottom: 15px;
  right: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 6px;
  z-index: 3;
}

.vp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
}

.vp-dot.active {
  background: #fff;
}

.vp-card-stack {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  text-align: center;
}

.vp-card-stack .vp-card-cat {
  width: 100%;
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 1px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.vp-card-stack .vp-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 8px;
  overflow: hidden;
}

.vp-card-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-card-stack .vp-card-duration {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 10px;
  padding: 2px 4px;
}

.vp-card-stack .vp-card-title {
  width: 100%;
  font-size: 12px;
  color: #555;
  text-transform: uppercase;
  max-height: 30px;
  overflow: hidden;
}

.vp-zone-slider {
  position: relative;
  margin-bottom: 40px;
}

.vp-slider-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px 10px;
}

.vp-slide-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.vp-slide-nav.left {
  left: 0;
}

.vp-slide-nav.right {
  right: 0;
}

.vp-card-side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}

.vp-card-side .vp-card-thumb {
  position: relative;
  width: 45%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.vp-card-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-card-side .vp-play-circle {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.vp-card-side .vp-card-duration {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 10px;
  padding: 2px 4px;
}

.vp-card-side .vp-card-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
}

.vp-card-side .vp-card-title {
  font-size: 13px;
  color: #333;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vp-card-side .vp-card-cat-badge {
  font-size: 9px;
  color: #888;
  border: 1px solid #ccc;
  padding: 2px 6px;
  text-transform: uppercase;
  border-radius: 2px;
}

.vp-category-pills {
  background: var(--vp-color-header);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 15px;
  margin-bottom: 30px;
  border-radius: var(--vp-radius-base);
}

.vp-cat-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.vp-cat-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 5px;
  cursor: pointer;
}

.vp-cat-icon i {
  font-style: normal;
  font-size: 24px;
}

.vp-cat-icon span {
  font-size: 11px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.vp-line {
  display: inline-block;
  -webkit-align-self: stretch;
          align-self: stretch;
  width: 1px;
  background-color: #ccb79c;
}

@media (max-width: 900px) {
  .vp-masthead-flex {
    padding: 15px 20px;
  }

  .vp-masthead-links {
    gap: 20px;
    padding: 10px 15px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
            justify-content: flex-start;
    overflow-x: auto;
  }

  .vp-zone-hero {
    grid-template-columns: 1fr;
  }

  .vp-hero-secondary {
    grid-template-columns: 1fr 1fr;
  }

  .vp-zone-hero-base,
  .vp-grid-quad {
    grid-template-columns: repeat(2, 1fr);
  }

  .vp-slider-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .vp-zone-split {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }

  .vp-grid-triple {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .vp-masthead-flex {
    padding: 10px;
  }

  .vp-brand-mark {
    font-size: 20px;
  }

  .vp-main-flow {
    padding: 10px;
  }

  .vp-hero-secondary,
  .vp-zone-hero-base,
  .vp-grid-quad,
  .vp-grid-double,
  .vp-grid-triple {
    grid-template-columns: 1fr;
  }

  .vp-slider-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .vp-card-stack .vp-card-thumb {
    aspect-ratio: auto;
    height: 180px;
  }

  .vp-card-overlay {
    height: 240px;
  }

  .vp-carousel-slide {
    height: 280px;
  }

  .vp-category-pills {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
  }

  .vp-card-side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    text-align: center;
  }

  .vp-card-side .vp-card-thumb {
    width: 100%;
    height: 200px;
  }

  .vp-card-side .vp-card-content {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    padding-top: 10px;
  }

  .vp-footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    gap: 15px;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
  }

  .vp-card-stack .vp-card-title,
  .vp-card-side .vp-card-title {
    height: 30px;
    line-height: 1;
  }

  .vp-sidebar {
    /* width: 95%; */
    max-width: none;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
  }

  .vp-carousel-dots {
    bottom: 57px;
  }
}
.vp-row-slider .vp-slider-track {
    gap: 0;
}

.vp-row-slider .vp-slider-track .vp-card-stack {
    padding: 10px;
    border-bottom: 1px solid #ccb79c;
}

.vp-multi-row-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    margin-bottom: 50px;
    position: relative;
    padding: 0 40px;
}

.vp-row-slider {
    position: relative;
    width: 100%;
}

.vp-slider-mask {
    overflow: hidden;
    margin: 0 -40px;
}

.vp-row-slider .vp-slider-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    padding: 10px 0 0;
}

.vp-row-slider .vp-card-stack {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc((100% - (5 * 10px)) / 6);
       -moz-box-flex: 0;
            flex: 0 0 calc((100% - (5 * 10px)) / 6);
    max-width: -webkit-calc((100% - (5 * 10px)) / 6);
    max-width: calc((100% - (5 * 10px)) / 6);
}

.vp-row-slider .vp-slide-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 5;
    background: #fff;
    border: 1px solid #ddd;
    width: 34px;
    height: 34px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
}

.vp-row-slider .vp-slide-nav:hover {
    opacity: 1;
}

.vp-row-slider .vp-slide-nav.left {
    left: -40px;
    color: #999;
}

.vp-row-slider .vp-slide-nav.right {
    right: -40px;
    color: #999;
}

.vp-zone-split:nth-child(n+4),
.vp-zone-weekly {
    padding-bottom: 40px;
    border-bottom: 1px solid #ccb79c;
}

.vp-zone-weekly {
    margin-bottom: 40px;
}

.vp-zone-weekly:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .vp-multi-row-container {
        padding: 0 30px;
    }

    .vp-slider-mask {
        margin: 0 -30px;
    }

    .vp-row-slider .vp-card-stack {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 -webkit-calc((100% - (2 * 10px)) / 3);
           -moz-box-flex: 0;
                flex: 0 0 calc((100% - (2 * 10px)) / 3);
        max-width: -webkit-calc((100% - (2 * 10px)) / 3);
        max-width: calc((100% - (2 * 10px)) / 3);
    }

    .vp-row-slider .vp-slide-nav.left {
        left: -30px;
    }

    .vp-row-slider .vp-slide-nav.right {
        right: -30px;
    }
}

@media (max-width: 480px) {
    .vp-multi-row-container {
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .vp-slider-mask {
        margin: 0 -10px;
        overflow-x: auto;
    }

    .vp-row-slider .vp-card-stack {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 -webkit-calc((100% - 10px) / 2);
           -moz-box-flex: 0;
                flex: 0 0 calc((100% - 10px) / 2);
        max-width: -webkit-calc((100% - 10px) / 2);
        max-width: calc((100% - 10px) / 2);
    }

    .vp-row-slider .vp-card-stack .vp-card-thumb {
        aspect-ratio: auto;
        height: 150px;
    }

    .vp-row-slider .vp-slide-nav {
        display: none;
    }

    .st-mosaic-small-grid .st-video-card:nth-child(n+2),
    .st-carousel-slide .st-video-card:nth-child(n+5),
    #highlightsGrid .st-video-card:nth-child(n+5) {
        display: none;
    }
}
