.top10-page {
  background:
    radial-gradient(circle at 92% 8%, rgba(201, 149, 60, 0.16), transparent 28%),
    #fffaf2;
}

.top10-hero {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: clamp(30px, 7vw, 72px) clamp(18px, 6vw, 72px);
  background: linear-gradient(110deg, #fff8eb 0%, #f3e0c0 100%);
}

.top10-kicker {
  margin-bottom: 8px;
  color: #ad741f;
  font-weight: 900;
}

.top10-hero h1 {
  color: #8f1712;
  font-size: clamp(44px, 9vw, 78px);
}

.top10-hero p {
  max-width: 650px;
  color: #35271c;
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 800;
}

.top10-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.top10-hero-grid img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.top10-hero-grid img:first-child {
  grid-row: span 2;
}

.top10-wrap,
.top10-ai {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.top10-wrap {
  padding: 32px 0;
}

.top10-title {
  margin-bottom: 18px;
  text-align: center;
}

.top10-title h2,
.top10-ai h2 {
  color: #2f1a10;
  font-size: clamp(28px, 5vw, 42px);
}

.top10-title p {
  color: #765732;
  font-weight: 800;
}

.top10-grid {
  display: grid;
  gap: 16px;
}

.top10-card {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(31, 26, 18, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(31, 26, 18, 0.08);
}

.top10-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fffdf8;
}

.top10-card > div {
  padding: 16px;
}

.rank {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  color: white;
  background: var(--red);
  border-radius: 999px;
  font-weight: 900;
}

.top10-card h3 {
  margin-bottom: 2px;
  font-size: 24px;
}

.english {
  margin-bottom: 10px;
  color: #9d681d;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.top10-card p:not(.english) {
  color: #41362d;
  font-weight: 700;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.tags span {
  padding: 5px 9px;
  color: var(--green);
  background: #edf3ea;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.top10-card small {
  display: block;
  color: #67584b;
  font-weight: 800;
}

.card-actions,
.top10-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.top10-card .btn {
  min-height: 42px;
  padding: 10px 13px;
  font-size: 14px;
  box-shadow: none;
}

.top10-ai {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
  padding: 22px;
  background: linear-gradient(100deg, #e7efe6, #fff6e8);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.top10-ai p {
  color: #3b372f;
  font-weight: 800;
}

@media (min-width: 720px) {
  .top10-hero {
    grid-template-columns: 1fr 0.9fr;
  }

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

  .top10-ai {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 1040px) {
  .top10-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .top10-hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .top10-card .btn,
  .top10-actions .btn {
    flex: 1 1 100%;
  }
}
