.premium-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  color: #ffd740;
  font-weight: 900;
  margin: 0 0 14px;
  letter-spacing: 0.1em;
}

.premium-section-title::before {
  content: '';
  width: 4px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, #ffd740, #ff9100);
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.premium-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 64, 0.22);
  background: #120a1e;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.premium-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 64, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 215, 64, 0.12);
}

.premium-tile img {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.premium-tile .info {
  flex-shrink: 0;
  padding: 10px 10px 11px;
  background: rgba(8, 4, 14, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.premium-tile .name {
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.premium-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ffd740;
  color: #1a0a00;
  font-size: 9px;
  padding: 3px 7px;
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0.04em;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.premium-want {
  grid-column: 1 / -1;
  aspect-ratio: unset;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 68px;
  padding: 14px 16px;
  border: 1px dashed rgba(255, 215, 64, 0.35);
  background: rgba(255, 215, 64, 0.04);
  color: #f5e6b8;
}

.premium-want:hover {
  border-color: rgba(255, 215, 64, 0.55);
  background: rgba(255, 215, 64, 0.08);
  box-shadow: none;
  transform: none;
}

.premium-want__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 64, 0.12);
  border: 1px solid rgba(255, 215, 64, 0.28);
  color: #ffd740;
  font-size: 18px;
  flex-shrink: 0;
}

.premium-want__body strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.premium-want__body span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #bda878;
}

@media (max-width: 720px) {
  .premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .premium-want {
    flex-direction: row;
    align-items: center;
  }
}
