/* W2W reusable components: cards, hero, sidebars, single content */

.post-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: flex-start;
  gap: 24px;
  border-radius: var(--w2w-radius-md);
  height: 100%;
}

.post-card .post-thumb img {
  width: 100%;
  aspect-ratio: 267 / 175;
  border-radius: var(--w2w-radius-sm);
  object-fit: cover;
}

.post-card .post-excerpt {
  font-size: 14px;
  line-height: 20px;
  font-family: var(--w2w-font-body);
  color: var(--w2w-color-body);
}

.post-card .post-info {
  flex: 1;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
}

.post-card .title {
  font-family: var(--w2w-font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0;
  color: var(--w2w-color-text);
  margin: 0;
  padding: 4px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 56px;
}

.post-card .title a,
.w2w-list-post-sidebar .w2w-list-title-post a,
.w2w-hero-container .title a {
  color: inherit;
  text-decoration: none;
}

.post-card .title a:hover,
.w2w-list-post-sidebar .w2w-list-title-post a:hover,
.w2w-hero-container .title a:hover {
  color: var(--w2w-color-link);
  text-decoration: none;
}

.post-card .phim {
  margin-right: 8px;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.post-card .phim:hover {
  text-decoration: underline;
}

.post-card .post-meta,
.post-card .post-author {
  display: flex;
  align-items: center;
}

.post-card .post-meta {
  justify-content: flex-start;
  gap: 12px;
  font-size: 12px;
  font-family: var(--w2w-font-body);
  line-height: 16px;
  color: var(--w2w-color-muted);
  margin-top: auto;
}

.post-card .post-author {
  gap: 8px;
  color: var(--w2w-color-muted);
}

.post-card .post-author img {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
}

.w2w-post-main-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.w2w-post-meta-wrapper,
.w2w-post-content-wrapper {
  border-bottom: 1px solid var(--w2w-color-border);
  padding-bottom: 16px;
}

.w2w-post-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.w2w-post-meta .post-thumbnail {
  width: 100%;
  max-width: 808px;
}

.w2w-post-meta .post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: var(--w2w-radius-md);
}

.w2w-post-meta .post-meta-content,
.w2w-post-meta .post-meta-heading {
  display: flex;
  flex-direction: column;
}

.w2w-post-meta .post-meta-content,
.w2w-post-meta .post-meta-heading {
  gap: 8px;
}

.w2w-post-meta .post-taxonomy {
  font-size: 18px;
  font-family: var(--w2w-font-body);
  font-weight: 600;
  line-height: 28px;
}

.w2w-post-meta .post-taxonomy a,
.w2w-post-meta .post-breadcrumb a {
  color: var(--w2w-color-link);
  text-decoration: none;
}

.w2w-post-meta .post-taxonomy a:hover,
.w2w-post-meta .post-breadcrumb a:hover {
  text-decoration: underline;
}

.w2w-post-meta .post-title {
  font-family: var(--w2w-font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0;
  color: var(--w2w-color-text);
  margin: 0;
}

.w2w-post-meta .post-meta-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.w2w-post-meta .author-info,
.w2w-post-meta .author-avatar-name {
  display: flex;
  align-items: center;
}

.w2w-post-meta .author-info {
  gap: 12px;
}

.w2w-post-meta .author-avatar-name {
  gap: 8px;
}

.w2w-post-meta .author-avatar {
  width: 40px;
  height: 40px;
  background: #D9D9D9;
  border-radius: 9999px;
}

.w2w-post-meta .author-name,
.w2w-post-meta .meta-date,
.w2w-post-meta .post-breadcrumb {
  font-size: 16px;
  font-family: var(--w2w-font-body);
  font-weight: 400;
  line-height: 24px;
}

.w2w-post-meta .author-name,
.w2w-post-meta .meta-date {
  color: var(--w2w-color-muted);
}

.w2w-post-meta .meta-separator,
.w2w-post-meta .post-breadcrumb {
  color: var(--w2w-color-subtle);
}

.w2w-post-meta .post-breadcrumb span {
  margin: 0 4px;
}

.w2w-post-content,
.w2w-post-content .post-excerpt {
  display: flex;
  flex-direction: column;
}

.w2w-post-content {
  font-family: var(--w2w-font-body);
  color: var(--w2w-color-text);
}

.w2w-post-content .post-excerpt p,
.w2w-post-content .post-body p {
  font-family: var(--w2w-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: var(--w2w-color-text);
  margin: 0 0 24px;
}

.w2w-post-content .post-excerpt p {
  color: var(--w2w-color-subtle);
  margin-bottom: 16px;
}

.w2w-post-content .post-body h2,
.w2w-post-content .post-body h3,
.w2w-post-content .post-body h4,
.w2w-post-content .post-body h5,
.w2w-post-content .post-body h6 {
  font-family: var(--w2w-font-heading);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--w2w-color-text);
  margin: 36px 0 12px;
}

.w2w-post-content .post-body h2 {
  font-size: 28px;
  line-height: 38px;
}

.w2w-post-content .post-body h3 {
  font-size: 22px;
  line-height: 32px;
}

.w2w-post-content .post-body h4,
.w2w-post-content .post-body h5,
.w2w-post-content .post-body h6 {
  font-size: 18px;
  line-height: 28px;
}

.w2w-post-content .post-body ul,
.w2w-post-content .post-body ol {
  font-family: var(--w2w-font-body);
  font-size: 18px;
  line-height: 32px;
  margin: 0 0 24px 24px;
  padding: 0;
}

.w2w-post-content .post-body li {
  margin: 0 0 8px;
}

.w2w-post-content .post-body blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 20px;
  border-left: 4px solid var(--w2w-color-brand);
}

.w2w-post-content .post-body blockquote p {
  color: var(--w2w-color-body);
  font-style: italic;
  margin-bottom: 0;
}

.w2w-post-content .post-body figure {
  margin: 28px 0;
}

.w2w-post-content .post-body img {
  border-radius: var(--w2w-radius-md);
  width: 100%;
  height: auto;
  margin: 4px 0;
  display: block;
}

.w2w-post-content .post-body figcaption {
  color: var(--w2w-color-subtle);
  font-family: var(--w2w-font-body);
  font-size: 14px;
  line-height: 20px;
  margin-top: 8px;
  text-align: center;
}

.w2w-post-content .section-heading {
  color: var(--w2w-color-brand);
  font-size: 24px;
  font-family: var(--w2w-font-brand);
  font-weight: 700;
  line-height: 36px;
  margin: 0 0 16px;
}

.w2w-list-post-sidebar .block-title {
  margin-top: 0;
}

.w2w-list-post-sidebar .w2w-list-box {
  width: 100%;
  padding: 24px;
  background: var(--w2w-color-surface);
  border-radius: var(--w2w-radius-md);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.w2w-list-post-sidebar .w2w-list-item {
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.w2w-list-post-sidebar .w2w-list-content {
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.w2w-list-post-sidebar .w2w-list-title-post {
  font-family: var(--w2w-font-heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0;
  color: var(--w2w-color-text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.w2w-list-post-sidebar .w2w-list-author {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.w2w-list-post-sidebar .w2w-list-author-name {
  color: var(--w2w-color-muted);
  font-size: 12px;
  font-family: var(--w2w-font-body);
  font-weight: 400;
  line-height: 16px;
}

.w2w-list-post-sidebar .w2w-list-thumb {
  display: block;
  min-width: 0;
}

.w2w-list-post-sidebar .w2w-list-thumb img {
  width: 100%;
  border-radius: var(--w2w-radius-sm);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.w2w-list-post-sidebar .w2w-list-thumb img:hover {
  transform: scale(1.02);
}

.w2w-hero-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
}

.w2w-hero-container .w2w-hero-phim a {
  color: var(--w2w-color-link);
  text-decoration: none;
}

.w2w-hero-container .w2w-hero-phim a:hover {
  text-decoration: underline;
}

.w2w-hero-container .w2w-hero-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.w2w-hero-container .w2w-hero-sidebar,
.w2w-hero-container .hero-large,
.w2w-hero-container .hero-small,
.w2w-hero-container .hero-large-content,
.w2w-hero-container .hero-small-content,
.w2w-hero-container .phim-title,
.w2w-hero-container .sidebar-post .info {
  display: flex;
  flex-direction: column;
}

.w2w-hero-container .w2w-hero-sidebar {
  background: var(--w2w-color-surface);
  padding: 24px;
  border-radius: var(--w2w-radius-md);
  gap: 20px;
}

.w2w-hero-container .hero-large {
  gap: 16px;
}

.w2w-hero-container .hero-large-content {
  gap: 6px;
}

.w2w-hero-container .hero-small,
.w2w-hero-container .hero-small-content,
.w2w-hero-container .sidebar-post .info,
.w2w-hero-container .sidebar-post .phim-title {
  gap: 4px;
}

.w2w-hero-container .hero-small {
  gap: 10px;
}

.w2w-hero-container .hero-large img,
.w2w-hero-container .hero-small img,
.w2w-hero-container .sidebar-post img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.w2w-hero-container .hero-large img {
  border-radius: var(--w2w-radius-md);
  aspect-ratio: 808 / 433;
}

.w2w-hero-container .hero-small img {
  border-radius: 16px;
  aspect-ratio: 288 / 162;
}

.w2w-hero-container .sidebar-post img {
  border-radius: var(--w2w-radius-md);
  aspect-ratio: 165 / 92;
}

.w2w-hero-container .hero-large a:hover img,
.w2w-hero-container .hero-small a:hover img,
.w2w-hero-container .sidebar-post a:hover img {
  transform: scale(1.02);
}

.w2w-hero-container .hero-large .w2w-hero-phim,
.w2w-hero-container .sidebar-post .w2w-hero-phim,
.w2w-hero-container .hero-small .w2w-hero-phim {
  font-weight: 600;
  color: var(--w2w-color-link);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.w2w-hero-container .hero-large .w2w-hero-phim {
  font-size: 18px;
  line-height: 28px;
}

.w2w-hero-container .sidebar-post .w2w-hero-phim,
.w2w-hero-container .hero-small .w2w-hero-phim {
  font-size: 12px;
  line-height: 16px;
}

.w2w-hero-container .hero-small .w2w-hero-phim {
  padding-bottom: 4px;
}

.w2w-hero-container .hero-large .title,
.w2w-hero-container .sidebar-post .title,
.w2w-hero-container .hero-small .title {
  font-family: var(--w2w-font-heading);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--w2w-color-text);
  margin: 0;
}

.w2w-hero-container .hero-large .title {
  font-size: 24px;
  line-height: 34px;
}

.w2w-hero-container .sidebar-post .title,
.w2w-hero-container .hero-small .title {
  font-size: 18px;
  line-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.w2w-hero-container .title a {
  display: block;
  transition: color 0.3s;
}

.w2w-hero-container .sidebar-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: flex-start;
}

.w2w-hero-container .sidebar-post .info {
  justify-content: center;
  flex: 1;
  overflow: hidden;
}

.w2w-hero-container .sidebar-post .author,
.w2w-hero-container .hero-small .meta,
.w2w-hero-container .hero-small .meta .author,
.w2w-hero-container .hero-large .meta,
.w2w-hero-container .hero-large .meta .author {
  display: flex;
  align-items: center;
}

.w2w-hero-container .sidebar-post .author {
  gap: 6px;
  font-size: 12px;
  line-height: 16px;
  color: var(--w2w-color-muted);
}

.w2w-hero-container .sidebar-post .author-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.w2w-hero-container .hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.w2w-hero-container .hero-row > * {
  min-width: 0;
}

.w2w-hero-container .hero-small .meta {
  gap: 12px;
  font-size: 12px;
  color: var(--w2w-color-muted);
}

.w2w-hero-container .hero-small .meta .author {
  gap: 6px;
  font-weight: 600;
  color: var(--w2w-color-muted);
}

.w2w-hero-container .hero-small .meta .author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  object-fit: cover;
}

.w2w-hero-container .hero-large .meta {
  gap: 12px;
  font-size: 16px;
  color: var(--w2w-color-muted);
}

.w2w-hero-container .hero-large .meta .author {
  gap: 8px;
  font-weight: 700;
  color: var(--w2w-color-muted);
}

.w2w-hero-container .hero-large .meta .avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
}

.PhimListWrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.w2w-phim-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.w2w-poster-link {
  display: block;
  width: 100%;
}

.w2w-poster-wrapper {
  aspect-ratio: 210 / 274;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.w2w-poster-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.w2w-poster-link:hover .w2w-poster-wrapper img {
  transform: scale(1.02);
}

.w2w-phim-card__body {
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
  flex-direction: column;
}

.w2w-phim-card__vote {
  display: flex;
  align-items: center;
  gap: 8px;
}

.w2w-phim-card__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.w2w-phim-card__percent {
  font-size: 16px;
  font-family: var(--w2w-font-body);
  font-weight: 700;
}

.w2w-phim-card__percent.is-weird {
  color: #F19020;
}

.w2w-phim-card__percent.is-mehhh {
  color: #39BDF9;
}

.w2w-phim-card__percent.is-none {
  color: #999999;
}

.w2w-phim-card__total {
  color: #222222;
  font-size: 14px;
  font-family: var(--w2w-font-body);
  font-weight: 400;
}

.w2w-phim-card__release {
  font-size: 14px;
  color: var(--w2w-color-text);
  font-family: var(--w2w-font-body);
  font-weight: 500;
}

.w2w-phim-card__revenue {
  font-weight: 700;
  color: #44b53a;
  font-size: 14px;
  margin-bottom: 4px;
}

.w2w-ten-phim-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.w2w-ten-phim-link:hover {
  color: var(--w2w-color-link);
  text-decoration: underline;
}

.w2w-single-phim-banner {
  width: 100%;
  max-height: 450px;
  overflow: hidden;
  position: relative;
  margin-bottom: -64px;
}

.w2w-single-phim-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.w2w-single-phim-banner__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 1) 90%);
}

.w2w-single-phim-container {
  position: relative;
  margin-bottom: 16px;
}

.w2w-vote-container {
  position: relative;
  z-index: 2;
}

.w2w-top-phim-thang {
  max-width: 420px;
}

.w2w-top-phim-thang__container {
  background: var(--w2w-color-surface);
  padding: 24px;
  border-radius: var(--w2w-radius-md);
  display: flex;
  flex-direction: column;
}

.w2w-top-phim-thang__item {
  display: flex;
  gap: 18px;
  align-items: center;
}

.w2w-top-phim-thang__item.with-border {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.w2w-top-phim-thang__rank {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 2px 2px 0 #000000;
  border-radius: 4px;
  outline: 1px solid var(--w2w-color-text);
  outline-offset: -1px;
  font-family: var(--w2w-font-brand);
  flex-shrink: 0;
}

.w2w-top-phim-thang__rank.top3 {
  background: var(--w2w-color-brand);
}

.w2w-top-phim-thang__title {
  flex: 1;
  overflow: hidden;
}

.w2w-top-phim-thang__title a,
.w2w-top-phim-thang__title .empty {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.w2w-top-phim-thang__title a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.w2w-top-phim-thang__title a:hover {
  color: var(--w2w-color-link);
  text-decoration: underline;
}

.w2w-top-phim-thang__title .empty {
  font-size: 16px;
  font-weight: 600;
  color: #cccccc;
}

.w2w-phim-swiper {
  position: relative;
  padding: 10px 0;
}

.w2w-phim-swiper .swiper-slide {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 16px;
  width: auto;
}

.w2w-phim-swiper .swiper-slide > div {
  width: 100%;
}

.w2w-phim-swiper .swiper-pagination {
  text-align: center;
  position: relative;
}

@media (max-width: 1024px) {
  .post-card {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .post-card .post-excerpt {
    display: none;
  }

  .w2w-movie-app .vc_col-sm-8,
  .w2w-movie-component .vc_col-sm-8 {
    width: 100%;
  }

  .w2w-hero-container .w2w-hero-top {
    grid-template-columns: 1fr;
  }

  .w2w-hero-container .hero-row {
    grid-template-columns: 1fr 1fr;
  }

  .w2w-hero-container .sidebar-post {
    grid-template-columns: 2fr 1fr;
  }

  .w2w-hero-container .sidebar-post .title {
    font-size: 20px;
    line-height: 28px;
  }

  .w2w-hero-container .sidebar-post .w2w-hero-phim {
    font-size: 16px;
    line-height: 24px;
  }

  .w2w-hero-container .sidebar-post .author-avatar {
    width: 30px;
    height: 30px;
  }

  .w2w-hero-container .sidebar-post .author {
    font-size: 14px;
  }

  .w2w-hero-container .hero-small .meta .meta-time,
  .w2w-hero-container .hero-small .meta .meta-separator {
    display: none;
  }
}

@media (max-width: 1224px) {
  .PhimListWrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1024px) {
  .PhimListWrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 850px) {
  .PhimListWrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .post-card {
    grid-template-columns: 1fr 1.5fr;
    gap: 12px;
  }

  .post-card .post-info {
    gap: 0;
  }

  .post-card .post-thumb img {
    aspect-ratio: 165 / 115;
  }

  .post-card .title {
    font-size: 16px;
    line-height: 24px;
    padding: 0;
    max-height: 48px;
  }

  .post-card .phim,
  .post-card .post-author {
    font-size: 12px;
    line-height: 16px;
  }

  .post-card .post-excerpt {
    display: none;
  }

  .w2w-post-meta {
    gap: 12px;
  }

  .w2w-post-meta .post-title {
    font-size: 26px;
    line-height: 36px;
  }

  .w2w-post-meta .post-taxonomy,
  .w2w-post-meta .post-breadcrumb {
    font-size: 14px;
    line-height: 22px;
  }

  .w2w-post-meta .author-avatar {
    width: 32px;
    height: 32px;
  }

  .w2w-post-meta .author-name,
  .w2w-post-meta .meta-date {
    font-size: 14px;
  }

  .w2w-post-content .post-excerpt p,
  .w2w-post-content .post-body p,
  .w2w-post-content .post-body ul,
  .w2w-post-content .post-body ol {
    font-size: 16px;
    line-height: 28px;
  }

  .w2w-post-content .post-body h2 {
    font-size: 24px;
    line-height: 34px;
    margin-top: 32px;
  }

  .w2w-post-content .post-body h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .w2w-post-content .section-heading {
    font-size: 20px;
    line-height: 30px;
  }

  .w2w-list-post-sidebar .w2w-list-box {
    padding: 20px;
    gap: 24px;
  }

  .w2w-list-post-sidebar .w2w-list-title-post,
  .w2w-hero-container .sidebar-post .title,
  .w2w-hero-container .hero-small .title {
    font-size: 16px;
    line-height: 24px;
  }

  .w2w-hero-container .hero-large .w2w-hero-phim {
    font-size: 16px;
    line-height: 24px;
  }

  .w2w-hero-container .hero-large .title {
    font-size: 22px;
    line-height: 32px;
  }

  .w2w-hero-container .hero-large .meta .avatar,
  .w2w-hero-container .sidebar-post .author-avatar,
  .w2w-hero-container .hero-small .meta .author-avatar {
    width: 20px;
    height: 20px;
  }

  .w2w-hero-container .hero-large .meta {
    font-size: 14px;
    line-height: 20px;
  }

  .w2w-hero-container .sidebar-post {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .w2w-hero-container .sidebar-post img {
    aspect-ratio: 165 / 100;
  }

  .w2w-hero-container .sidebar-post .w2w-hero-phim {
    font-size: 12px;
    line-height: 16px;
  }

  .w2w-hero-container .sidebar-post .author {
    font-size: 12px;
    line-height: 16px;
  }

  .w2w-hero-container .hero-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .w2w-hero-container .hero-small {
    gap: 4px;
  }

  .w2w-hero-container .hero-small img {
    aspect-ratio: 184 / 103;
  }

  .w2w-hero-container .hero-small .meta .meta-time,
  .w2w-hero-container .hero-small .meta .meta-separator {
    display: none;
  }

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