/* ============================================
   NOMINATION GUIDELINES PAGE
============================================ */

/* ── Intro ── */
.ng-intro {
  background:
    radial-gradient(40% 60% at 75% 40%, rgba(201,150,42,0.08) 0%, rgba(201,150,42,0) 60%),
    radial-gradient(60% 80% at 25% 50%, rgba(180,60,0,0.16) 0%, rgba(180,60,0,0) 70%),
    #0E0600;
  padding: 80px 0 60px;
  border-bottom: 0.5px solid rgba(201,150,42,0.12);
}
.ng-intro-inner { max-width: 780px; }
.ng-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C9962A;
  margin-bottom: 16px;
}
.ng-tag-line {
  width: 26px; height: 1px;
  background: linear-gradient(90deg, #C9962A, #E7AD3F);
}
.ng-intro-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: #F0D5A0;
  margin-bottom: 20px;
}
.ng-intro-heading em {
  font-style: italic;
  background: linear-gradient(90deg, #FEEB94, #E7AD3F, #C9962A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ng-intro-body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 17px;
  line-height: 29px;
  color: rgba(239,227,206,0.6);
}

/* ── Shared eyebrow ── */
.ng-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #C9962A;
  margin-bottom: 14px;
}
.ng-eyebrow.center { display: flex; justify-content: center; }
.ng-eyebrow-line {
  display: block;
  width: 50px; height: 0.5px;
  background: rgba(201,150,42,0.4);
}
.ng-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 52px;
  color: #EFE3CE;
  text-align: center;
  margin-bottom: 56px;
}
.ng-section-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, #FEEB94, #E7AD3F, #C9962A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Eligible Nominees ── */
.ng-eligible {
  background: #0E0600;
  padding: 80px 0 90px;
  border-bottom: 0.5px solid rgba(201,150,42,0.12);
}
.ng-eligible-head { text-align: center; margin-bottom: 0; }

/* 2-col grid for the first two groups, then full width for industries */
.ng-groups-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Each group card */
.ng-group {
  background: rgba(255,255,255,0.02);
  border: 0.5px solid rgba(201,150,42,0.15);
  padding: 32px 28px 28px;
  position: relative;
  transition: border-color .3s, background .3s;
}
.ng-group:hover {
  border-color: rgba(201,150,42,0.35);
  background: rgba(201,150,42,0.03);
}
.ng-group::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6D2312, #E7AD3F, #FEEB94);
  opacity: 0;
  transition: opacity .3s;
}
.ng-group:hover::before { opacity: 1; }

/* Full-width groups */
.ng-group--full,
.ng-group--individuals { grid-column: 1 / -1; }

/* Group header */
.ng-group-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid rgba(201,150,42,0.12);
}
.ng-group-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
}
.ng-group-icon svg { width: 100%; height: 100%; }
.ng-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #EFE3CE;
}
.ng-group-title em {
  font-style: italic;
  background: linear-gradient(90deg, #FEEB94, #E7AD3F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* List items */
.ng-group-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ng-group-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: rgba(239,227,206,0.88);
}
.ng-group-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: rgba(201,150,42,0.5);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* Industries sub-grid inside full-width card */
.ng-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 36px;
}
.ng-industry-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9962A;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid rgba(201,150,42,0.2);
}

/* Individuals pills */
.ng-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ng-tag-pill {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  color: rgba(239,227,206,0.85);
  padding: 8px 16px;
  border: 0.5px solid rgba(201,150,42,0.22);
  background: rgba(201,150,42,0.04);
  transition: all .2s;
}
.ng-tag-pill:hover {
  border-color: rgba(201,150,42,0.5);
  color: #E7AD3F;
  background: rgba(201,150,42,0.08);
}

/* ── Regional Eligibility ── */
.ng-regional {
  background: #080300;
  padding: 70px 0;
  border-bottom: 0.5px solid rgba(201,150,42,0.12);
}
.ng-regional-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,0.02);
  border: 0.5px solid rgba(201,150,42,0.18);
  padding: 40px 44px;
  position: relative;
}
.ng-regional-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9962A 30%, #FEEB94 50%, #C9962A 70%, transparent);
}
.ng-regional-icon {
  width: 60px; height: 60px;
  flex-shrink: 0;
  opacity: 0.7;
}
.ng-regional-icon svg { width: 100%; height: 100%; }
.ng-regional-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: #EFE3CE;
  margin-bottom: 10px;
}
.ng-regional-body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14.5px;
  line-height: 25px;
  color: rgba(239,227,206,0.88);
}

/* ── Evaluation Criteria ── */
.ng-criteria {
  background: #0E0600;
  padding: 80px 0 100px;
}
.ng-criteria-head { text-align: center; margin-bottom: 0; }

/* 3×2 grid */
.ng-criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 0.5px solid rgba(201,150,42,0.15);
}
.ng-criterion {
  padding: 40px 32px 36px;
  border-right: 0.5px solid rgba(201,150,42,0.15);
  border-bottom: 0.5px solid rgba(201,150,42,0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: background .3s;
}
/* Remove borders on edges */
.ng-criterion:nth-child(3n) { border-right: none; }
.ng-criterion:nth-child(n+4) { border-bottom: none; }

.ng-criterion:hover { background: rgba(201,150,42,0.04); }
.ng-criterion::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6D2312, #E7AD3F, #FEEB94);
  opacity: 0;
  transition: opacity .3s;
}
.ng-criterion:hover::before { opacity: 1; }

.ng-criterion-num {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(201,150,42,0.45);
  margin-bottom: 14px;
}
.ng-criterion-icon {
  width: 44px; height: 44px;
  margin-bottom: 16px;
  transition: filter .3s, transform .3s;
}
.ng-criterion-icon svg { width: 100%; height: 100%; }
.ng-criterion:hover .ng-criterion-icon {
  filter: drop-shadow(0 0 8px rgba(201,150,42,0.5));
  transform: translateY(-2px);
}
.ng-criterion h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #EFE3CE;
  margin-bottom: 10px;
  transition: color .3s;
}
.ng-criterion:hover h3 { color: #E7AD3F; }
.ng-criterion p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  line-height: 22px;
  color: rgba(239,227,206,0.48);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .ng-industries-grid { grid-template-columns: repeat(2, 1fr); }
  .ng-criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .ng-criterion:nth-child(3n) { border-right: 0.5px solid rgba(201,150,42,0.15); }
  .ng-criterion:nth-child(n+4) { border-bottom: 0.5px solid rgba(201,150,42,0.15); }
  .ng-criterion:nth-child(2n) { border-right: none; }
  .ng-criterion:nth-child(n+5) { border-bottom: none; }
}
@media (max-width: 860px) {
  .ng-groups-grid { grid-template-columns: 1fr; }
  .ng-group--full, .ng-group--individuals { grid-column: auto; }
  .ng-industries-grid { grid-template-columns: repeat(2, 1fr); }
  .ng-intro-heading { font-size: 38px; line-height: 46px; }
  .ng-section-title { font-size: 36px; }
  .ng-regional-inner { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
}
@media (max-width: 600px) {
  .ng-criteria-grid { grid-template-columns: 1fr; }
  .ng-criterion { border-right: none !important; border-bottom: 0.5px solid rgba(201,150,42,0.15) !important; }
  .ng-criterion:last-child { border-bottom: none !important; }
  .ng-industries-grid { grid-template-columns: 1fr; }
  .ng-intro-heading { font-size: 30px; line-height: 38px; }
  .ng-section-title { font-size: 30px; line-height: 38px; }
  .ng-intro { padding: 60px 0 40px; }
}
