/* ==============================
   AWARD SHOWCASE
============================== */
.yt-award-card {
  position: relative;
  max-width: 900px;
  margin: 0.5rem auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 24px;
  /*background:
    radial-gradient(ellipse at 30% 50%, rgba(180,180,180,0.05) 0%, transparent 60%),
    rgba(255,255,255,0.015);
  border: 1px solid rgba(255, 255, 255, 0.589);
  margin-bottom: 2.5rem;
  overflow: hidden;
  transition: border-color 0.4s;*/
}

.yt-award-card:hover {
  border-color: rgb(210, 210, 210);
}

/* shimmer sweep */
/*.yt-award-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(255,255,255,0.04) 50%,
    transparent 70%);
  transform: skewX(-10deg);
  transition: left 1s ease;
  pointer-events: none;
} 
.yt-award-card:hover::before { left: 150%; } */

/* spotlight behind photo */
.yt-award-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.yt-award-photo-wrap::before {
  content: '';
  position: absolute;
  top: -60px; /* ขยับขึ้นนิดนึงให้แสงฟุ้งกริบ ๆ */
  left: 50%;
  transform: translateX(-50%);
  width: 250px; 
  height: 400px;
  /* ใช้สีขาวมุกตัดกับเงินสยัส! */
/* --- หัวใจของความสว่าง (The Supernova Gradient) --- */

  mix-blend-mode: screen;
  opacity: 0.9;
  filter: blur(15px); /* ให้แสงมันนวลเหมือนงาน Impressionism สยัส! */
  pointer-events: none;
  z-index: 0;
  animation: spotlight-glare 3s ease-in-out infinite alternate;
}

/* ── Photo — lit from above + rim light ── */
.yt-award-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(135deg, #222, #000);

  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yt-award-card:hover .yt-award-photo {
  transform: translateY(-10px) rotate(1deg) scale(1.02);
  border-color: rgb(255, 255, 255);
  box-shadow:
    0 -6px 28px rgba(255, 240, 160, 0.28),
    0 0 0 2px rgba(255, 255, 255, 0.18),
    0 40px 90px rgba(0, 0, 0, 0.80),
    0 0 90px rgba(255, 220, 100, 0.12);
}
/* --- Keyframes ให้แสงข้างหลังขยับเหมือนมีชีวิตสยัส! --- */
@keyframes spotlight-glare {
  0% { opacity: 0.7; transform: translateX(-50%) scale(1); filter: blur(15px); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.1); filter: blur(10px); }
}


/* right side info */
.yt-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.726);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.596);
  margin-bottom: 0.75rem;
}

.yt-award-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #d4d4d4;
  box-shadow: 0 0 6px #d4d4d4;
}

.yt-award-number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.2rem;
  background: linear-gradient(135deg, #e8e8e8 0%, #a0a0a0 40%, #d4d4d4 60%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
}

.yt-award-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
}

.yt-award-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.2rem;
}

/* metallic divider */
.yt-award-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,200,200,0.2), transparent);
  margin-bottom: 1.2rem;
}

.yt-award-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.yt-award-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.yt-award-meta-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(220,220,220,0.8);
}

.yt-award-meta-label {
  font-size: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.yt-award-quote {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  font-style: italic;
  line-height: 1.6;
  border-left: 2px solid rgba(200,200,200,0.15);
  padding-left: 0.75rem;
}

@media (max-width: 640px) {
  .yt-award-card {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 2rem;   /* ← เพิ่มบรรทัดนี้ */
    overflow: visible;     /* ← เพิ่มบรรทัดนี้ */
  }
  .yt-award-photo-wrap {
    justify-content: center;
  }
  .yt-award-photo {
    max-width: 160px;
  }
  .yt-award-meta {
    justify-content: center;
  }
  .yt-award-quote {
    text-align: left;
  }
}