.home-category-spotlight {
  width: min(1180px, calc(100% - 28px));
  margin: 22px auto 30px;
  padding: 26px 22px 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 162, 66, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fff8ef 100%);
  border: 1px solid rgba(245, 158, 11, 0.18);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.home-category-spotlight__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.home-category-spotlight__eyebrow {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2410c;
}

.home-category-spotlight__head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.12;
  color: #111827;
}

.home-category-spotlight__copy {
  margin: 0;
  max-width: 720px;
  color: #475569;
  line-height: 1.6;
}

.home-category-spotlight__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.home-category-spotlight__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.home-category-spotlight__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 10px 12px;
  border-radius: 22px;
  text-decoration: none;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-category-spotlight__card:hover,
.home-category-spotlight__card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
  border-color: rgba(249, 115, 22, 0.28);
}

.home-category-spotlight__media {
  display: inline-flex;
  width: min(120px, 22vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #fff3dc 0%, #ffe4bf 100%);
  box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.16);
}

.home-category-spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-category-spotlight__name {
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

.home-category-spotlight__meta {
  color: #64748b;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 1080px) {
  .home-category-spotlight__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-category-spotlight {
    width: min(100%, calc(100% - 18px));
    margin: 14px auto 22px;
    padding: 20px 14px 16px;
    border-radius: 22px;
  }

  .home-category-spotlight__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-category-spotlight__all {
    width: 100%;
  }

  .home-category-spotlight__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}
