/* Forex Daily — Forex Award page template (template-forex-award.php).
   Full-width, no sidebar. Card component itself (.more-awards-card*)
   lives in the shared assets/css/award-card.css, enqueued alongside
   this file. Colors from --fxd-*, layout/spacing/radius from --fdt-*
   (see assets/css/variables.css). */

.award-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--fdt-space-3) var(--fdt-space-5);
}

/* ── Hero ───────────────────────────────────────────────────── */

.award-page__breadcrumbs {
  font-size: 14px;
  color: var(--fxd-text-muted);
  padding: var(--fdt-space-3) 0 0;
  margin-bottom: var(--fdt-space-2);
}
.award-page__breadcrumbs a { color: var(--fxd-text-muted); }
.award-page__breadcrumbs a:hover { color: var(--fxd-primary); }

/* ── Simple header (template-forex-award-year.php) ────────────
   Plain title block — no gradient, glows, stats row, or CTA.
   Small pill badge above the title + a divider line with a trophy
   mark centered on it below. Kept visually distinct from the big
   gradient .award-page__hero used on the main landing page. */
.award-page__simple-header {
  text-align: center;
  padding: var(--fdt-space-4) var(--fdt-space-3) var(--fdt-space-5);
  margin: 0 0 var(--fdt-space-5);
}
.award-page__simple-badge {
  display: inline-flex;
  align-items: center;
  background: var(--fxd-primary-subtle, #EEF0FF);
  color: var(--fxd-primary, #4B52FF);
  font-family: var(--fdt-font-mono, monospace);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: var(--fdt-space-3);
}
.award-page__simple-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--fxd-text, #1A1D29);
  margin: 0;
}
.award-page__simple-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--fdt-space-3);
  max-width: 460px;
  margin: var(--fdt-space-3) auto 0;
}
.award-page__simple-divider-line {
  flex: 1;
  height: 1px;
  background: var(--fxd-border, #E5E7F0);
}
.award-page__simple-divider-icon {
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
}
.award-page__simple-content {
  max-width: 620px;
  margin: var(--fdt-space-2) auto 0;
  color: var(--fxd-text-muted);
  font-size: 16px;
  line-height: 1.6;
}
.award-page__simple-content p:last-child { margin-bottom: 0; }

@media (max-width: 560px) {
  .award-page__simple-header { padding: var(--fdt-space-3) var(--fdt-space-2) var(--fdt-space-4); }
}

.award-page__hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  background: linear-gradient(135deg, var(--fxd-primary) 0%, var(--fxd-primary-light) 55%, #7C82FF 100%);
  border-radius: var(--fdt-radius-lg);
  padding: 64px var(--fdt-space-4) 52px;
  margin: 0 0 var(--fdt-space-5);
  box-shadow: 0 24px 60px -24px rgba(75, 82, 255, .5);
}

/* Soft blurred glows for depth — purely decorative. */
.award-page__hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.award-page__hero-glow--1 {
  width: 320px;
  height: 320px;
  top: -140px;
  left: -80px;
  background: rgba(255, 255, 255, .28);
}
.award-page__hero-glow--2 {
  width: 380px;
  height: 380px;
  bottom: -180px;
  right: -100px;
  background: rgba(255, 255, 255, .18);
}

/* Faint dot-grid texture over the gradient. */
.award-page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 24px 24px;
}

.award-page__hero-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.award-page__hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: var(--fdt-space-3);
}
.award-page__hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.award-page__hero-title {
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin: 0 0 var(--fdt-space-2);
  text-shadow: 0 2px 24px rgba(0, 0, 0, .12);
}
.award-page__hero-tagline {
  max-width: 600px;
  margin: 0 auto var(--fdt-space-2);
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.6;
}
.award-page__hero-content {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.6;
}
.award-page__hero-content p:last-child { margin-bottom: 0; }

.award-page__hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--fdt-space-4);
  margin-top: var(--fdt-space-4);
  padding-top: var(--fdt-space-4);
  border-top: 1px solid rgba(255, 255, 255, .2);
}
.award-page__hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.award-page__hero-stat-value {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.award-page__hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
  margin-top: 2px;
  white-space: nowrap;
}
.award-page__hero-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, .25);
}

.award-page__hero-cta {
  display: inline-block;
  margin-top: var(--fdt-space-4);
  background: #fff;
  color: var(--fxd-primary);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--fdt-radius-md);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, .25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.award-page__hero-cta:hover {
  background: #F4F4FF;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -6px rgba(0, 0, 0, .3);
  color: var(--fxd-primary-hover);
}

@media (max-width: 560px) {
  .award-page__hero { padding: 48px var(--fdt-space-3) 40px; }
  .award-page__hero-stats { gap: var(--fdt-space-3) var(--fdt-space-4); }
  .award-page__hero-stat-divider { display: none; }
}

/* ── Year sections ──────────────────────────────────────────── */

.award-page__section {
  margin-bottom: var(--fdt-space-5);
}
.award-page__section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--fxd-text);
  margin: 0 0 var(--fdt-space-3);
  position: relative;
  padding-bottom: var(--fdt-space-2);
}
.award-page__section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--fxd-primary);
}

/* ── Award grid ─────────────────────────────────────────────── */

.award-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--fdt-space-3);
}
@media (max-width: 1024px) {
  .award-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .award-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Closing CTA box ────────────────────────────────────────────
   Same dark-box treatment as .advertising-page__cta (assets/css/
   advertising-page.css) — kept as its own award-page__cta* rule set
   here (rather than sharing the class) since the two files are
   enqueued independently per page template. */

.award-page__cta {
  text-align: center;
  background: var(--fxd-dark);
  border-radius: var(--fdt-radius-lg);
  padding: var(--fdt-space-5) var(--fdt-space-4);
  margin-top: var(--fdt-space-2);
}
.award-page__cta-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 var(--fdt-space-2);
}
.award-page__cta-text {
  max-width: 480px;
  margin: 0 auto var(--fdt-space-3);
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.6;
}
.award-page__cta-button {
  display: inline-block;
  background: var(--fxd-primary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--fdt-radius-md);
  transition: background-color .15s ease, transform .15s ease;
}
.award-page__cta-button:hover {
  background: var(--fxd-primary-hover);
  color: #fff;
  transform: translateY(-2px);
}
