/* css/awards.css */
.header-section {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 12px 5% 34px;
  text-align: center;
  position: relative;
}

.header-section::before {
  content: "";
  position: absolute;
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  width: min(84vw, 760px);
  height: min(84vw, 760px);
  background: radial-gradient(circle, rgba(111, 106, 255, 0.16) 0%, transparent 68%);
  z-index: -1;
}

.badge {
  background: rgba(210, 107, 255, 0.12);
  color: var(--primary-light);
  padding: 7px 14px;
  border: 1px solid rgba(210, 107, 255, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 100%;
}

.header-section h1 {
  font-size: clamp(2.4rem, 11vw, 4.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  color: #fff;
  font-weight: 800;
  line-height: 1.05;
}

.header-section p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.awards-overview {
  max-width: 1100px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.overview-card {
  padding: 18px;
  border-radius: 22px;
  text-align: left;
  background: rgba(20, 22, 31, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.overview-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.9rem;
  line-height: 1;
  color: #fff;
}

.overview-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-light);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.overview-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

.awards-page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 5% 20px;
}

.featured-section,
.collection-section {
  margin-bottom: 54px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 740px;
  margin-bottom: 20px;
}

.section-heading span {
  color: var(--primary-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  line-height: 1.12;
  color: #fff;
  font-weight: 800;
}

.section-heading p {
  color: var(--muted);
  font-size: 1rem;
}

.featured-card {
  display: grid;
  gap: 20px;
  align-items: stretch;
  padding: 20px;
  background: linear-gradient(180deg, rgba(20, 22, 31, 0.92) 0%, rgba(10, 11, 17, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.award-card {
  background: linear-gradient(180deg, rgba(20, 22, 31, 0.92) 0%, rgba(12, 13, 20, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s var(--ease-standard),
    border-color 0.35s var(--ease-standard),
    box-shadow 0.35s var(--ease-standard),
    background 0.35s var(--ease-standard);
  height: 100%;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.award-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(28, 31, 43, 0.95) 0%, rgba(16, 18, 26, 0.98) 100%);
  box-shadow: var(--shadow-strong);
  border-color: rgba(210, 107, 255, 0.22);
}

.image-frame {
  width: 100%;
  background: #040405;
  border-radius: 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.landscape-frame { height: 230px; }
.portrait-frame { height: 280px; }
.compact-landscape { height: 220px; }

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
  transition: transform 0.4s var(--ease-standard);
}

.award-card:hover .image-frame img,
.featured-card:hover .image-frame img {
  transform: scale(1.03);
}

.zoom-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(4px);
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s var(--ease-standard);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.award-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.award-tag {
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  background: rgba(210, 107, 255, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 100%;
  align-self: flex-start;
  border: 1px solid rgba(210, 107, 255, 0.18);
}

.award-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
  font-weight: 700;
}

.award-desc,
.featured-desc {
  color: var(--muted);
  font-size: 1rem;
}

.featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h3 {
  font-size: clamp(1.6rem, 8vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
}

.featured-desc {
  margin-bottom: 20px;
}

.feature-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.metric-item {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-item strong {
  color: #fff;
  line-height: 1.4;
  font-size: 0.98rem;
}

.representative-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .header-section,
  .awards-page {
    padding-left: 8%;
    padding-right: 8%;
  }

  .header-section {
    padding-top: 18px;
    padding-bottom: 42px;
  }

  .header-section p {
    font-size: 1.1rem;
  }

  .awards-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .featured-section,
  .collection-section {
    margin-bottom: 72px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .featured-card {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 28px;
    padding: 28px;
  }

  .landscape-frame {
    height: 350px;
  }

  .portrait-frame {
    height: 360px;
  }

  .compact-landscape {
    height: 250px;
  }

  .feature-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .representative-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .award-card {
    padding: 24px;
  }
}
