.new-trending-page {
  background: #fffdf8;
  color: #333;
}

.new-trending-hero {
  padding: 56px 20px 36px;
  background: linear-gradient(180deg, #eef7fb 0%, #fffdf8 100%);
  text-align: center;
}

.new-trending-hero__inner {
  max-width: 960px;
  margin: 0 auto;
}

.new-trending-hero__title {
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #2f6f89;
  margin: 0 0 18px;
}

.new-trending-hero__lead {
  font-size: 16px;
  line-height: 2;
  margin: 0;
}

.new-trending-section {
  padding: 40px 20px;
}

.new-trending-section--drama {
  padding-bottom: 72px;
}

.new-trending-section__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.new-trending-section__head {
  text-align: center;
  margin-bottom: 26px;
}

.new-trending-section__title {
  font-size: 26px;
  line-height: 1.5;
  color: #2f6f89;
  margin: 0 0 10px;
}

.new-trending-section__text {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin: 0;
}

.new-review-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.new-review-card {
  background: #fff;
  border: 1px solid #dcecf2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(47, 111, 137, 0.08);
  transition: 0.2s ease;
}

.new-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(47, 111, 137, 0.14);
}

.new-review-card__link {
  display: grid;
  grid-template-columns: 96px 1fr;
  min-height: 136px;
  color: inherit;
  text-decoration: none;
}

.new-review-card__image {
  background: #eef7fb;
  overflow: hidden;
}

.new-review-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-review-card__noimage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #8aa9b5;
  font-size: 12px;
}

.new-review-card__body {
  padding: 16px 18px;
}

.new-review-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.new-review-card__new {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f28c6b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.new-review-card__drama {
  margin: 0;
  color: #b25c4a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.new-review-card__title {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 10px;
  color: #333;
}

.new-review-card__author {
  margin: 0;
  color: #777;
  font-size: 12px;
  font-weight: 700;
}

.new-drama-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.new-drama-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(47, 111, 137, 0.08);
  transition: 0.2s ease;
}

.new-drama-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(47, 111, 137, 0.14);
}

.new-drama-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.new-drama-card__image {
  aspect-ratio: 3 / 4;
  background: #eef7fb;
  overflow: hidden;
}

.new-drama-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-drama-card__noimage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #8aa9b5;
  font-size: 14px;
}

.new-drama-card__body {
  padding: 14px 14px 16px;
}

.new-drama-card__title {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 6px;
  color: #333;
}

.new-drama-card__year {
  font-size: 13px;
  margin: 0 0 8px;
  color: #777;
}

.new-drama-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.new-drama-card__tags span {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef7fb;
  color: #2f6f89;
  font-size: 12px;
  line-height: 1.4;
}

.new-trending-empty {
  background: #fff;
  border-radius: 18px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(47, 111, 137, 0.08);
}

.new-trending-empty p {
  margin: 0;
  line-height: 1.8;
}

@media screen and (max-width: 1024px) {
  .new-drama-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .new-trending-hero {
    padding: 44px 18px 28px;
  }

  .new-trending-hero__title {
    font-size: 26px;
  }

  .new-trending-hero__lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .new-trending-section {
    padding: 32px 18px;
  }

  .new-trending-section--drama {
    padding-bottom: 56px;
  }

  .new-trending-section__title {
    font-size: 22px;
  }

  .new-review-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .new-review-card__body {
    padding: 14px 14px;
  }

  .new-review-card__link {
    grid-template-columns: 88px 1fr;
    min-height: 124px;
  }
  .new-review-card__title {
    font-size: 14px;
  }

  .new-drama-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .new-drama-card__body {
    padding: 12px;
  }

  .new-drama-card__title {
    font-size: 14px;
  }
}

@media screen and (max-width: 374px) {
  .new-drama-list {
    gap: 12px;
  }
}
