/* ═══════════════════════════════════════
   SEC 7: AWARDS & REVIEWS
   ═══════════════════════════════════════ */

.awards-marquee {
  background: var(--bg-light);
  overflow: hidden;
}

.awards-inner {
  display: flex;
  height: 100%;
}

/* 좌측: 마키 */
.awards-left {
  width: 55%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.awards-marquee-wrap {
  overflow: hidden;
}

.marquee-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  padding: 8px 0;
}

.marquee-row + .marquee-row {
  margin-top: 8px;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 8px;
}

.marquee-item img {
  height: clamp(140px, 18vh, 200px);
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* 우측: 텍스트 */
.awards-right {
  width: 45%;
  padding: 8vh 5vw 8vh 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.awards-label {
  font-family: var(--font-en);
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.awards-title {
  font-family: var(--font-body);
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 32px;
}

/* 수상 리스트 */
.awards-list {
  margin-bottom: 32px;
}

.award-text-item {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: clamp(12px, 0.9vw, 14px);
}

.award-year {
  font-family: var(--font-number);
  font-weight: 600;
  color: var(--text-primary);
  min-width: 40px;
}

.award-detail {
  color: var(--text-body);
  line-height: 1.5;
}

/* 테스티모니얼 */
.testimonial {
  position: relative;
  min-height: 100px;
  border-top: 1px solid #ddd;
  padding-top: 24px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding-top: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-text {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.8;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-author {
  font-size: clamp(12px, 0.85vw, 13px);
  font-weight: 600;
  color: var(--text-primary);
}

/* ── 모바일 반응형 ── */
@media (max-width: 768px) {
  .awards-inner {
    flex-direction: column;
  }

  .awards-left {
    width: 100%;
    height: 35vh;
  }

  .awards-right {
    width: 100%;
    padding: 4vh 6vw;
  }

  .awards-title {
    font-size: clamp(20px, 6vw, 28px);
    margin-bottom: 20px;
  }

  .marquee-item img {
    height: clamp(100px, 14vh, 140px);
  }
}
