:root {
  --yellow_color-bg: #8e55e9;
  --yellow_color-header: #7a41c4;
  --yellow_color-accent: #ffd447;
  --yellow_color-white: #ffffff;
  --yellow_color-text: #ffffff;
  --yellow_color-purple-light: #a186ec;
  --yellow_color-purple-dark: #6a34b3;

  --yellow_font-main: 'Arial', sans-serif;
  --yellow_container-width: 1200px;
}

* {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body {
  font-family: var(--yellow_font-main);
  background-color: var(--yellow_color-bg);
  color: var(--yellow_color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.ad-container {
  margin: 16px auto;
  text-align: center;
}

.ad-container[data-ad-index="0"] {
  margin-top: 0;
}

.ad-box {
    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;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

img {
  width: 100%;
  height: 100%;
  display: block;
}

.yellow_container {
  width: 100%;
  max-width: var(--yellow_container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.yellow_site-header {
  background: var(--yellow_color-header);
  padding: 15px 0 0;
  border-bottom: 5px solid var(--yellow_color-accent)
}

.yellow_header-content {
  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;
}

.yellow_nav-logo {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--yellow_color-white);
}

.yellow_nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
          align-items: flex-end;
  gap: 10px;
  padding: 4px 4px 0;
  position: relative;
}

.yellow_category-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 20px;
  min-width: 200px;
  padding: 10px;
  z-index: 1000;
  background-color: var(--yellow_color-purple-light);
}

.yellow_category-dropdown.show {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.yellow_category-dropdown .yellow_category-item .yellow_cat-icon {
  display: none;
}

.yellow_category-dropdown .yellow_category-item {
  padding: 5px 10px;
  cursor: pointer;
  border: none;
}

.yellow_category-dropdown .yellow_category-item:hover {
  background-color: var(--yellow_color-purple-light);
}

.yellow_nav-item {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  padding: 0 24px;
  height: 40px;
  border: none;
  border-radius: 3px 3px 0 0;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #d4d8ff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(212, 216, 255, .3)), color-stop(60.78%, rgba(212, 216, 255, 0)));
  background: -webkit-linear-gradient(top, rgba(212, 216, 255, .3), rgba(212, 216, 255, 0) 60.78%);
  background: linear-gradient(180deg, rgba(212, 216, 255, .3), rgba(212, 216, 255, 0) 60.78%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 0 0 rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.yellow_nav-item:hover {
  color: #ffe29b;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 227, 155, .3)), to(rgba(255, 227, 155, 0)));
  background: -webkit-linear-gradient(top, rgba(255, 227, 155, .3), rgba(255, 227, 155, 0));
  background: linear-gradient(180deg, rgba(255, 227, 155, .3), rgba(255, 227, 155, 0));
}

.yellow_header-actions {
  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;
  gap: 15px;
  position: relative;
}

.yellow_search-trigger {
  background-image: url(../../images/search.0240ee9.png);
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 40px;
  height: 40px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin-left: 15px;
}

.yellow_search-trigger:hover {
  background-color: var(--yellow_color-purple-light);
  border-radius: 50%;
}

.yellow_search-input-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 10px;
  position: absolute;
  top: 100%;
  right: 0;
  width: 250px;
  background-color: white;
  border: 2px solid var(--yellow_color-accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 100;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
}

.yellow_search-input-container.show-search {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.yellow_search-input {
  border: 1px solid #ccc;
  outline: none;
  padding: 8px 10px;
  font-size: 14px;
  width: 100%;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  border-radius: 4px;
}

.yellow_search-input::-webkit-input-placeholder {
  color: #999;
}

.yellow_search-input::-moz-placeholder {
  color: #999;
}

.yellow_search-input::placeholder {
  color: #999;
}

.yellow_submit-search-button {
  background-color: var(--yellow_color-accent);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  font-size: 14px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  width: 20%;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  background-image: url(../../images/search-icon.63fa406.png);
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
}

.yellow_submit-search-button:hover {
  background-color: #7b4acb;
}

.yellow_search-trigger {
  width: 36px;
  height: 36px;
  background: url(../../images/search.0240ee9.png) no-repeat center;
  background-size: 100%;
}

.yellow_section-header {
  text-align: center;
  margin: 30px auto 10px;
  position: relative;
}

.yellow_section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.yellow_section-title::after {
  content: '';
  display: block;
  width: 200px;
  height: 10px;
  background: url(../../images/decoration.cbeefdb.png) no-repeat center;
  background-size: 100%;
  margin: 5px auto 0;
}

.yellow_site-footer {
  position: relative;
  background: var(--yellow_color-header);
  padding: 40px 0 20px;
  margin-top: 50px;
  border-top: 2px solid var(--yellow_color-accent);
}

.yellow_footer-logo {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.yellow_more-videos-btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fcc67a), to(#fbdfa0));
  background: -webkit-linear-gradient(top, #fcc67a 0%, #fbdfa0 100%);
  background: linear-gradient(to bottom, #fcc67a 0%, #fbdfa0 100%);
  padding: 12px 40px;
  font-size: 18px;
  text-transform: uppercase;
  color: #000;
}

.yellow_footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  gap: 30px;
  padding: 20px;
  margin-bottom: 20px;
  border: 2px solid #fff;
  border-radius: 10px;
}

.yellow_footer-bottom {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}

.yellow_label {
  position: absolute;
  top: 10px;
  left: 0;
  display: inline-block;
  background: url(../../images/label.b81a872.png) no-repeat left center;
  background-size: 100%;
  color: var(--yellow_color-purple-dark);
  padding: 4px 25px 4px 15px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.yellow_duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #5055b8;
  color: white;
  padding: 2px 5px;
  font-size: 10px;
  border-radius: 2px;
}

.yellow_back-to-top {
  position: absolute;
  top: -22px;
  right: 20px;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 4px;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  z-index: 100;
  background: url(../../images/top.d4d59ec.png) no-repeat center;
  background-size: contain;
}

.yellow_card-small {
  cursor: pointer;
  background: white;
  padding: 5px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: grid;
}

.yellow_card-small:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.yellow_small-img-wrap {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.yellow_small-img-wrap img {
  width: 100%;
  height: 100%;
}

.yellow_play-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 45px;
  aspect-ratio: 1;
  background: url(../../images/play.888a4b6.png) no-repeat center;
  background-size: contain;
  opacity: 0.8;
}

.yellow_small-title {
  font-size: 11px;
  color: #333;
  padding: 5px 0;
  white-space: wrap;
  height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yellow_grid-2x6 {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .yellow_grid-2x6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .yellow_footer-links {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .yellow_nav-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .yellow_grid-2x6 {
    grid-template-columns: repeat(2, 1fr);
  }

}
.yellow_index-section {
  padding: 60px 0;
}

.yellow_top-videos {
  padding: 60px 0;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  gap: 30px;
  position: relative;
}

.yellow_hero-carousel-track {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
  max-width: 900px;
  overflow: hidden;
  position: relative;
  height: auto;
  min-height: 350px;
  border-radius: 20px;
}

.yellow_hero-inner-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.yellow_hero-card {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
     -moz-box-flex: 0;
          flex: 0 0 100%;
  background: #ffffff;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  color: #111;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 2px solid var(--yellow_color-accent);
}

.yellow_hero-card .yellow_label {
  padding: 0;
  height: 30px;
  line-height: 30px;
  text-indent: 2em;
  width: 25%;
}

.yellow_hero-info {
  width: 38%;
  padding: 40px;
  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-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
}

.yellow_hero-title {
  font-size: 26px;
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 15px;
  color: #111;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yellow_hero-author {
  font-size: 14px;
  color: #666;
  margin-top: auto;
  margin-bottom: 5px;
}

.yellow_hero-date {
  font-size: 14px;
  color: #999;
}

.yellow_hero-img-wrap {
  width: 62%;
  aspect-ratio: 16/10;
  position: relative;
}

.yellow_hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yellow_carousel-nav {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  z-index: 10;
}

.yellow_carousel-nav:hover {
  background: var(--yellow_color-accent);
}

.yellow_nav-icon {
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.yellow_nav-icon.left {
  background-image: url(../../images/left.2cc9562.png);
}

.yellow_nav-icon.right {
  background-image: url(../../images/right.583a2d4.png);
}

.yellow_video-grid {
  display: grid;
  gap: 20px;
}

.yellow_grid-2x4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yellow_weekly-hits {
  background: #b9a1ee;
  padding: 40px;
  width: 100%;
  max-width: 100%;
  border-top: 2px solid var(--yellow_color-accent);
  border-bottom: 2px solid var(--yellow_color-accent);
}

.yellow_weekly-hits .yellow_video-grid {
  max-width: var(--yellow_container-width);
  margin: 0 auto;
}

.yellow_recent-bottom {
  -webkit-box-align: start;
  -webkit-align-items: start;
     -moz-box-align: start;
          align-items: start;
  justify-items: start;
}

.yellow_card-medium {
  background: white;
  cursor: pointer;
  border: 2px solid var(--yellow_color-accent);
  overflow: hidden;
}

.yellow_medium-img-wrap {
  aspect-ratio: 1.5;
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}

.yellow_card-medium .yellow_label {
  position: absolute;
  top: 10px;
  left: 0;
}

.yellow_medium-title {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 0 10px 5px;
  max-height: 48px;
}

.yellow_recent-bottom-right {
  width: 100%;
  height: 50%;
}

.yellow_recent-bottom-right .yellow_card-small {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yellow_creative-fun {
  position: relative;
  overflow: visible;
  padding: 0;
}

.yellow_creative-fun-content {
  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;
  gap: 0;
  position: relative;
  height: 250px;
}

.yellow_stack-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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.yellow_stack-card {
  position: absolute;
  width: 380px;
  aspect-ratio: 16/9;
  border: 2px solid var(--yellow_color-accent);
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background: #000;
  cursor: pointer;
}

.yellow_stack-card[data-pos="-2"] {
  -webkit-transform: translateX(-340px) scale(0.65);
          transform: translateX(-340px) scale(0.65);
  z-index: 1;
  opacity: 0.6;
}

.yellow_stack-card[data-pos="-1"] {
  -webkit-transform: translateX(-180px) scale(0.85);
          transform: translateX(-180px) scale(0.85);
  z-index: 2;
  opacity: 0.9;
}

.yellow_stack-card[data-pos="0"] {
  -webkit-transform: translateX(0) scale(1.1);
          transform: translateX(0) scale(1.1);
  z-index: 3;
  opacity: 1;
}

.yellow_stack-card[data-pos="1"] {
  -webkit-transform: translateX(180px) scale(0.85);
          transform: translateX(180px) scale(0.85);
  z-index: 2;
  opacity: 0.9;
}

.yellow_stack-card[data-pos="2"] {
  -webkit-transform: translateX(340px) scale(0.65);
          transform: translateX(340px) scale(0.65);
  z-index: 1;
  opacity: 0.6;
}

.yellow_stack-card[data-pos] {
  display: block;
}

.yellow_stack-card:not([data-pos]) {
  display: none;
}

.yellow_stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yellow_stack-title {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.yellow_stack-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  aspect-ratio: 1;
  border-radius: 4px;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  z-index: 20;
  cursor: pointer;
}

.yellow_stack-nav.left {
  left: -webkit-calc(50% - 225px);
  left: calc(50% - 225px);
}

.yellow_stack-nav.right {
  right: -webkit-calc(50% - 225px);
  right: calc(50% - 225px);
}

.yellow_stack-nav .yellow_nav-icon {
  width: 100%;
  height: 100%;
}

.yellow_stack-nav .yellow_nav-icon.left {
  background-image: url(../../images/left_1.af101aa.png);
}

.yellow_stack-nav .yellow_nav-icon.right {
  background-image: url(../../images/right_1.242dc49.png);
}

.yellow_category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.yellow_category-item {
  background: var(--yellow_color-purple-light);
  padding: 20px 10px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--yellow_color-accent);

}

.yellow_category-item:hover {
  background: var(--yellow_color-accent);
  color: var(--yellow_color-purple-dark);
}

.yellow_cat-icon {
  width: 48px;
  aspect-ratio: 1;
  margin: 0 auto 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.yellow_cat-name {
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}

.yellow_recently-updated-layout {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 30px;
}

.yellow_recent-top,
.yellow_recent-bottom,
.yellow_recent-bottom-left {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.yellow_recent-top-left,
.yellow_card-large {
  height: 100%;
}

.yellow_recent-top {
  -webkit-box-align: end;
  -webkit-align-items: end;
     -moz-box-align: end;
          align-items: end
}

.yellow_card-large {
  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;
  background: white;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--yellow_color-accent);
}

.yellow_recent-top-right .yellow_card-large {
  height: -webkit-calc(100% - 100px);
  height: calc(100% - 100px);
}

.yellow_large-img-wrap {
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
  aspect-ratio: auto;
  position: relative;
}

.yellow_card-large .yellow_label {
  position: absolute;
  top: 10px;
  left: 0;
}

.yellow_large-info {
  padding: 20px;
  color: #333;
  height: 90px;
}

.yellow_recent-right-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

@media (max-width: 900px) {

  .yellow_grid-2x4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .yellow_category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .yellow_creative-fun-content {
    height: 200px;
  }

  .yellow_stack-card {
    width: 280px;
  }

  .yellow_stack-card[data-pos="-2"] {
    -webkit-transform: translateX(-250px) scale(0.6);
            transform: translateX(-250px) scale(0.6);
  }

  .yellow_stack-card[data-pos="-1"] {
    -webkit-transform: translateX(-140px) scale(0.8);
            transform: translateX(-140px) scale(0.8);
  }

  .yellow_stack-card[data-pos="0"] {
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }

  .yellow_stack-card[data-pos="1"] {
    -webkit-transform: translateX(140px) scale(0.8);
            transform: translateX(140px) scale(0.8);
  }

  .yellow_stack-card[data-pos="2"] {
    -webkit-transform: translateX(250px) scale(0.6);
            transform: translateX(250px) scale(0.6);
  }

  .yellow_stack-nav.left {
    left: -webkit-calc(50% - 170px);
    left: calc(50% - 170px);
  }

  .yellow_stack-nav.right {
    right: -webkit-calc(50% - 170px);
    right: calc(50% - 170px);
  }

  .yellow_index-section {
    padding: 10px;
  }




}

@media (max-width: 480px) {

  .yellow_recently-updated-layout {
    grid-template-columns: 1fr;
  }

  .yellow_hero-card {
    height: 425px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }

  .yellow_hero-info {
    width: 100%;
    padding: 40px 10px 10px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
  }

  .yellow_hero-card .yellow_label {
    width: 50%;
  }

  .yellow_hero-card .yellow_hero-title {
    height: 63px;
  }

  .yellow_hero-img-wrap {
    width: 100%;
  }

  .yellow_creative-fun-content {
    height: 150px;
  }

  .yellow_stack-card {
    width: 200px;
  }

  .yellow_stack-card[data-pos="-2"] {
    -webkit-transform: translateX(-180px) scale(0.5);
            transform: translateX(-180px) scale(0.5);
  }

  .yellow_stack-card[data-pos="-1"] {
    -webkit-transform: translateX(-90px) scale(0.7);
            transform: translateX(-90px) scale(0.7);
  }

  .yellow_stack-card[data-pos="0"] {
    -webkit-transform: translateX(0) scale(0.9);
            transform: translateX(0) scale(0.9);
  }

  .yellow_stack-card[data-pos="1"] {
    -webkit-transform: translateX(90px) scale(0.7);
            transform: translateX(90px) scale(0.7);
  }

  .yellow_stack-card[data-pos="2"] {
    -webkit-transform: translateX(180px) scale(0.5);
            transform: translateX(180px) scale(0.5);
  }

  .yellow_stack-nav.left {
    left: -webkit-calc(50% - 120px);
    left: calc(50% - 120px);
  }

  .yellow_stack-nav.right {
    right: -webkit-calc(50% - 120px);
    right: calc(50% - 120px);
  }

  .yellow_recent-top,
  .yellow_recent-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
       -moz-box-orient: vertical;
       -moz-box-direction: reverse;
            flex-direction: column-reverse;
  }

  .yellow_recent-top-right .yellow_card-large,
  .yellow_recent-top-left .yellow_card-large {
    width: 100%;
    height: 400px;
  }

  .yellow_recent-bottom-right .yellow_card-small,
  .yellow_card-medium {
    height: 205px;
  }

  .yellow_category-item {
    height: 125px;
  }

  .yellow_card-small {
    height: 260px;
  }

  .yellow_stack-title {
    white-space: nowrap;
    overflow: hidden;
  }
}
