/* ========================================
   Awards Page — 会員ダンサー受賞歴
   ======================================== */
.awards-intro {
  padding: 80px 0 40px;
  text-align: center;
}

.awards-intro p {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 2;
  max-width: 700px;
  margin: 0 auto;
}

/* Year Navigation */
.year-nav {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}

.year-nav .container {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.year-nav-item {
  font-family: var(--font-en);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid var(--blue);
  transition: background 0.3s, color 0.3s;
}

.year-nav-item:hover {
  background: var(--blue-accent);
  color: var(--white);
}

/* Main */
.awards-main {
  padding: 60px 0 100px;
}

/* Year Section */
.year-section {
  margin-bottom: 60px;
}

.year-label {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.year-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--green), transparent);
}

.year-label span {
  position: relative;
  display: inline-block;
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue-accent);
  letter-spacing: 0.1em;
  background: var(--white);
  padding: 0 32px;
}

/* Competition Block */
.comp-block {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s;
}

.comp-block:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.comp-name {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--beige);
}

.comp-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: -12px;
  margin-bottom: 14px;
}

.comp-division {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 18px 0 8px;
  padding-left: 12px;
  border-left: 3px solid var(--blue);
}

.comp-category {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: 12px 0 6px;
  padding-left: 4px;
}

/* Result List */
.result-list {
  list-style: none;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--text-light);
  transition: background 0.2s;
}

.result-item:hover {
  background: var(--beige-light);
}

.place {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--beige-light);
  padding: 3px 10px;
  border-radius: 12px;
  flex-shrink: 0;
}

.place-1 {
  background: linear-gradient(135deg, #f7e7a0, #f0d060);
  color: #7a6000;
}

.place-2 {
  background: linear-gradient(135deg, #e0e8f0, #c8d4e0);
  color: #4a5a6a;
}

.place-final {
  background: var(--green-light);
  color: var(--green-accent);
  font-size: 0.72rem;
}

.name {
  font-weight: 400;
}

/* Overall Award */
.overall-award {
  margin-top: 16px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #fdf8e8, #f7e7a0, #fdf8e8);
  border-radius: 12px;
  border-left: 5px solid #c8a415;
  font-size: 0.95rem;
  font-weight: 700;
  color: #6b5200;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 16px rgba(200, 164, 21, 0.18);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .awards-intro {
    padding: 60px 0 30px;
  }

  .awards-main {
    padding: 40px 0 80px;
  }

  .year-label span {
    font-size: 2rem;
  }

  .comp-block {
    padding: 20px 18px;
  }

  .comp-name {
    font-size: 0.95rem;
  }

  .year-nav {
    top: 0;
  }

  .year-nav-item {
    font-size: 0.85rem;
    padding: 5px 14px;
  }
}

@media (max-width: 480px) {
  .year-label span {
    font-size: 1.7rem;
    padding: 0 20px;
  }

  .result-item {
    font-size: 0.82rem;
    gap: 8px;
  }

  .place {
    min-width: 36px;
    font-size: 0.75rem;
  }
}
