.ranking-hero {
  background: linear-gradient(135deg, #eef6ff, #dcecff);
  padding: 60px 0;
}

.ranking-hero h2 {
  font-size: 40px;
  color: #1d3557;
  margin-bottom: 10px;
}

.ranking-hero p {
  color: #4b5563;
  font-size: 17px;
}

.ranking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.ranking-tab {
  padding: 12px 22px;
  border: 1.5px solid #d6dce5;
  background-color: #ffffff;
  color: #333;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.ranking-tab:hover {
  border-color: #1e88e5;
  color: #1e88e5;
}

.ranking-tab.active {
  border-color: #1e88e5;
  color: #1e88e5;
  background-color: #eef6ff;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 70px 280px 1fr;
  gap: 20px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  align-items: stretch;
  transition: 0.3s;
}

.ranking-card:hover {
  transform: translateY(-4px);
}

.ranking-position {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #eef2f7;
  color: #1d3557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin: auto;
}

.gold {
  background-color: #ffd54f;
  color: #5d4300;
}

.silver {
  background-color: #dfe4ea;
  color: #4b5563;
}

.bronze {
  background-color: #d6a77a;
  color: #4e2e12;
}

.ranking-image {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #e9eef5;
}

.ranking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.ranking-main {
  flex: 1;
}

.ranking-main h3 {
  font-size: 24px;
  color: #1d3557;
  margin-bottom: 8px;
}

.ranking-description {
  color: #444;
  margin-top: 12px;
}

.ranking-side {
  min-width: 170px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.ranking-price {
  display: block;
  color: #1e88e5;
  font-size: 24px;
  margin: 12px 0;
}

.first-place {
  border: 2px solid #ffe08a;
}

.second-place {
  border: 2px solid #d8dee6;
}

.third-place {
  border: 2px solid #d9b08c;
}

@media (max-width: 1100px) {
  .ranking-card {
    grid-template-columns: 60px 230px 1fr;
  }
}

@media (max-width: 900px) {
  .ranking-card {
    grid-template-columns: 1fr;
  }

  .ranking-position {
    margin: 0;
  }

  .ranking-image {
    height: 240px;
  }

  .ranking-content {
    flex-direction: column;
  }

  .ranking-side {
    min-width: auto;
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .ranking-hero h2 {
    font-size: 30px;
  }

  .ranking-tab {
    width: 100%;
  }
}