﻿:root {
  --deep: #083b46;
  --deep2: #124d56;
  --gold: #b1843b;
  --gold2: #8a6527;
  --sand: #f4efe5;
  --paper: #fffdfa;
  --ink: #102f36;
  --muted: #657476;
  --border: #e3d6bf;
  --purple: #3d2543;
  --danger: #b7372f;
  --shadow: 0 18px 42px rgba(20, 33, 37, .09)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Dubai", "Segoe UI", Tahoma, Arial, sans-serif;
  direction: ltr;
  text-align: left;
  background: #fbfaf7;
  color: var(--ink);
  line-height: 1.85
}

a {
  text-decoration: none;
  color: inherit
}

.container {
  width: min(1280px, calc(100% - 44px));
  margin: auto
}

.access {
  background: #492546;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: #fff
}

.access .container,
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px
}

.access .links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-inline-start: auto;
  padding: 8px 0
}

.access .links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  transition: background .18s ease, border-color .18s ease, color .18s ease
}

.access .links a:hover,
.access .links a:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--deep);
  outline: none
}

.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #eee;
  box-shadow: 0 3px 18px rgba(0, 0, 0, .04)
}

.brand {
  padding: 14px 0
}

.brand img {
  height: 78px;
  max-width: 560px;
  object-fit: contain
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 800;
  color: #253d43;
  flex-wrap: wrap
}

.nav a {
  padding: 24px 0;
  border-bottom: 4px solid transparent
}

.nav a:hover,
.nav a.active {
  color: var(--gold2);
  border-color: var(--gold)
}

.mobile-nav-extra {
  display: none
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 23px;
  font-weight: 900;
  border: 1px solid transparent;
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 25px rgba(177, 132, 59, .22)
}

.btn:hover {
  background: var(--gold2)
}

.btn.secondary {
  background: #fff;
  color: var(--gold2);
  border-color: var(--gold);
  box-shadow: none
}

.btn.dark {
  background: var(--deep);
  box-shadow: 0 10px 24px rgba(8, 59, 70, .18)
}

.btn.small {
  padding: 9px 15px;
  font-size: 14px
}

.breadcrumb {
  padding: 22px 0;
  color: #748083
}

.breadcrumb b {
  color: var(--gold2)
}

.header-award-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  min-width: 112px
}

.header-award-logo img {
  display: block;
  height: 150px;
  max-width: 150px;
  object-fit: contain
}

.floating-contact {
  position: fixed;
  inset-inline-start: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(8, 59, 70, .26);
  border: 1px solid rgba(255, 255, 255, .28)
}

.floating-contact:hover {
  background: var(--gold2);
  transform: translateY(-2px)
}

.floating-contact svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.hero {
  background: linear-gradient(135deg, var(--deep), #174d55 55%, var(--gold2));
  border-radius: 0 34px 0 34px;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow);
  margin-top: 30px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
  padding: 58px
}

.award-chip {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 18px;
  font-weight: 900;
  margin-bottom: 18px
}

.hero-logo {
  background: rgba(255, 255, 255, .96);
  border-radius: 28px;
  padding: 22px 32px;
  display: inline-flex;
  margin-bottom: 22px;
  min-width: 360px;
  justify-content: center
}

.hero-logo img {
  height: 136px;
  object-fit: contain
}

h1 {
  font-size: 58px;
  line-height: 1.12;
  margin: 0 0 18px;
  font-weight: 900
}

.hero-title-line {
  display: block
}

.hero p {
  font-size: 20px;
  color: #f4fbfc;
  margin: 0 0 28px;
  max-width: 820px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.patron-card {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 30px;
  padding: 28px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: center
}

.patron-card img {
  width: 190px;
  border-radius: 20px;
  background: #fff;
  padding: 8px
}

.patron-card h2 {
  font-size: 30px;
  margin: 0 0 10px;
  color: #fff !important
}

.patron-card p {
  color: #fff !important;
  font-size: 19px;
  margin: 0
}

.deadline {
  margin-top: 20px;
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap
}

.deadline strong {
  font-size: 30px;
  color: var(--danger)
}

.section {
  padding: 72px 0
}

.section-title {
  margin-bottom: 34px
}

.eyebrow {
  font-weight: 900;
  color: var(--gold2);
  margin-bottom: 8px
}

h2 {
  font-size: 40px;
  line-height: 1.3;
  margin: 0;
  color: var(--deep)
}

.section-title p {
  font-size: 20px;
  color: var(--muted);
  margin: 10px 0 0;
  max-width: 980px
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px
}

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .04)
}

.panel p {
  font-size: 18px;
  color: #415156
}

.objectives {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}

.objective {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px
}

.objective .icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--purple);
  display: grid;
  place-items: center
}

.objective svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2
}

.objective b {
  display: block;
  color: #273b40
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.time {
  background: #fff;
  border: 1px dashed var(--gold);
  border-radius: 22px;
  padding: 24px;
  min-height: 150px
}

.time>span {
  display: inline-flex;
  background: var(--sand);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 13px;
  color: var(--gold2);
  font-weight: 900
}

.time [data-content-key] {
  display: inline !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  font: inherit !important
}

.time b {
  display: block;
  font-size: 25px;
  color: var(--deep);
  margin: 8px 0
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.axis {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .04);
  padding: 24px;
  position: relative;
  overflow: hidden;
  min-height: 500px
}

.axis:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--deep))
}

.axis .num {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--sand);
  display: grid;
  place-items: center;
  color: var(--gold2);
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 16px
}

.axis h3 {
  margin: 0 0 10px;
  font-size: 25px;
  color: var(--deep)
}

.axis p {
  color: var(--muted);
  margin: 0 0 16px
}

.sub-links {
  display: grid;
  gap: 10px
}

.sub-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 62px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 900;
  color: #173941;
  line-height: 1.55
}

.sub-links a:hover {
  border-color: var(--gold);
  background: #fff8ea
}

.track-title {
  background: var(--sand);
  border-radius: 14px;
  padding: 8px 12px;
  font-weight: 900;
  color: var(--gold2);
  margin: 12px 0 8px;
  text-align: center
}

.apply-box {
  background: linear-gradient(135deg, #fff, var(--sand));
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px
}

.step:before {
  counter-increment: step;
  content: counter(step);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900
}

.detail-list {
  display: grid;
  gap: 24px
}

.detail {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 34px 0;
  scroll-margin-top: 110px
}

.detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 30px;
  align-items: stretch
}

.detail h3 {
  font-size: 30px;
  color: var(--deep);
  margin: 0 0 16px
}

.defbox,
.criteria {
  height: 100%;
  min-height: 230px
}

.defbox {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .04)
}

.defbox p {
  font-size: 17px
}

.download-mini {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  border: 1px solid var(--gold);
  color: var(--gold2);
  font-weight: 900;
  border-radius: 999px;
  padding: 8px 14px;
  background: #fff
}

.download-ico {
  font-size: 18px
}

.criteria {
  background: #fbf9f4;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px
}

.criteria h4 {
  font-size: 24px;
  color: var(--gold2);
  margin: 0 0 12px
}

.criteria ul {
  margin: 0;
  padding-left: 24px
}

.criteria li {
  margin: 8px 0
}

.criteria strong {
  font-weight: 900;
  color: #0a3842
}

.criterion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px
}

.criterion-card {
  border: 1px dashed var(--gold);
  background: #fff;
  border-radius: 20px;
  padding: 18px
}

.criterion-card h5 {
  font-size: 19px;
  margin: 0 0 10px;
  color: var(--deep)
}

.scheme {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 26px;
  margin-top: 24px
}

.scheme h4 {
  font-size: 26px;
  color: var(--gold2);
  margin: 0 0 18px
}

.scheme-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.scheme-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px
}

.scheme-card b {
  display: block;
  color: var(--deep);
  font-size: 18px;
  margin-bottom: 8px
}

.downloads {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px
}

.dl {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.dl .file-icon {
  font-size: 34px;
  color: var(--gold2)
}

.dl h3 {
  margin: 8px 0;
  color: var(--deep);
  font-size: 20px
}

.dl p {
  margin: 0 0 12px;
  color: var(--muted)
}

.faq-tools {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px
}

.search {
  flex: 1;
  min-width: 270px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 16px
}

.faq-group {
  margin-bottom: 28px
}

.faq-group h3 {
  color: var(--gold2);
  font-size: 25px;
  margin: 0 0 12px
}

details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  margin: 10px 0;
  padding: 0 18px
}

summary {
  padding: 16px 0;
  cursor: pointer;
  font-weight: 900;
  color: var(--deep)
}

details p {
  margin: 0 0 18px;
  color: #4d5b60
}

.contact {
  background: linear-gradient(135deg, var(--deep), #1a6570);
  color: #fff;
  border-radius: 30px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.footer {
  background: #0b3038;
  color: #d9e6e8;
  padding: 34px 0;
  margin-top: 50px
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

@media(max-width:1100px) {

  .hero-inner,
  .detail-head,
  .about-grid,
  .apply-box {
    grid-template-columns: 1fr
  }

  .category-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr)
  }

  .downloads {
    grid-template-columns: repeat(2, 1fr)
  }

  .criterion-grid,
  .scheme-table {
    grid-template-columns: 1fr
  }

  .patron-card {
    grid-template-columns: 160px 1fr
  }

  h1 {
    font-size: 42px
  }
}

@media(max-width:720px) {
  .container {
    width: min(100% - 24px, 1280px)
  }

  .access .links {
    width: 100%;
    justify-content: center
  }

  .access .links a {
    flex: 1 1 120px
  }

  .nav {
    display: none
  }

  .brand img {
    max-width: 240px
  }

  .hero-inner {
    padding: 28px
  }

  .hero-logo {
    min-width: 0;
    width: 100%
  }

  .hero-logo img {
    height: 100px
  }

  .patron-card {
    grid-template-columns: 1fr
  }

  .patron-card img {
    width: 160px
  }

  .category-grid,
  .timeline,
  .objectives,
  .downloads {
    grid-template-columns: 1fr
  }

  h1 {
    font-size: 34px
  }

  h2 {
    font-size: 30px
  }

  .contact {
    display: block
  }
}

.hero-line {
  display: block
}

.hero-logo {
  min-width: 360px;
  padding: 24px 34px
}

.hero-logo img {
  height: 138px !important
}

.patron-card h2,
.patron-card p {
  color: #fff !important
}

.award-about {
  background: #f4efe5;
  border: 1px solid #d9ceb9;
  border-radius: 0;
  padding: 58px 0 54px;
}

.award-about-grid {
  display: grid;
  grid-template-columns: 1.7fr .8fr;
  gap: 56px;
  align-items: start;
}

.about-copy {
  text-align: center;
  padding: 0 28px;
}

.about-copy .patron-text {
  font-size: 21px;
  line-height: 2.05;
  color: #2f3f42;
  font-weight: 800;
  margin: 0 auto 22px;
  max-width: 900px;
}

.about-copy h3 {
  color: #a57a35;
  font-size: 25px;
  margin: 18px 0 12px;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.about-copy .about-text {
  font-size: 20px;
  line-height: 2.05;
  color: #2f3f42;
  margin: 0 auto;
  max-width: 960px;
  font-weight: 650;
}

.about-patron-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .14);
  max-width: 360px;
  justify-self: center;
}

.about-patron-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.about-goals-title {
  color: #a57a35;
  font-size: 32px;
  font-weight: 900;
  margin: 30px 0 26px;
  text-align: left;
}

.about-goals {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.about-goal {
  text-align: center;
}

.about-goal .goal-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: #3b2540;
  display: grid;
  place-items: center;
}

.about-goal .goal-icon svg {
  width: 31px;
  height: 31px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.about-goal p {
  font-size: 16px;
  color: #27383c;
  line-height: 1.8;
  margin: 0;
  font-weight: 700;
}

@media(max-width:1100px) {
  .award-about-grid {
    grid-template-columns: 1fr
  }

  .about-goals {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:720px) {
  .about-goals {
    grid-template-columns: 1fr
  }

  .about-copy {
    padding: 0
  }

  .about-copy .patron-text,
  .about-copy .about-text {
    font-size: 17px
  }

  .hero-logo {
    min-width: 0;
    width: 100%
  }

  .hero-logo img {
    height: 95px !important
  }
}


.details-accordion-section {
  background: #fff;
  padding-top: 64px
}

.details-container {
  max-width: 1180px
}

.details-title {
  text-align: left;
  margin-bottom: 24px
}

.details-title h2 {
  font-size: 42px;
  color: var(--deep);
  margin-top: 4px
}

.category-axis-accordion {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  margin: 22px 0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
}

.axis-header {
  background: var(--deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
}

.axis-header h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 900;
}

.axis-badge {
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 900;
  white-space: nowrap;
}

.axis-items {
  background: #fff
}

.category-accordion-item {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.category-accordion-item:last-child {
  border-bottom: none
}

.category-accordion-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  font-weight: 900;
  color: var(--deep);
  line-height: 1.65;
}

.category-accordion-item summary::-webkit-details-marker {
  display: none
}

.category-accordion-item summary:before {
  content: "+";
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sand);
  color: var(--gold2);
  font-weight: 900;
}

.category-accordion-item[open] summary:before {
  content: "–"
}

.accordion-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  padding: 10px 24px 28px;
  align-items: stretch;
}

.category-description-card,
.category-criteria-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fffdfa;
  padding: 24px;
  min-height: 180px;
}

.category-description-card h4,
.category-criteria-card h4 {
  margin: 0 0 14px;
  color: var(--gold2);
  font-size: 20px;
}

.category-description-card p {
  color: #273b40;
  font-size: 16px;
  line-height: 2;
  margin: 0;
}

.category-criteria-card ul {
  margin: 0;
  padding-left: 22px;
}

.category-criteria-card li {
  margin: 7px 0;
  line-height: 1.85;
}

.category-criteria-card strong {
  font-weight: 900;
  color: var(--deep);
}

.detail-note {
  margin-top: 18px;
  background: #e9f6f4;
  color: #0b3c43;
  border: 1px solid #c6e2dd;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 800;
}

.detail-criteria-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.detail-criteria-card {
  border: 1px dashed var(--gold);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
}

.detail-criteria-card h5 {
  margin: 0 0 8px;
  color: var(--deep);
  font-size: 17px;
}

.detail-criteria-card ul {
  padding-left: 18px;
}

.download-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  border: 1px solid var(--gold);
  color: var(--gold2);
  font-weight: 900;
  border-radius: 999px;
  padding: 8px 14px;
  background: #fff;
}

@media(max-width:900px) {
  .accordion-body {
    grid-template-columns: 1fr
  }
}

.content-skeleton {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: auto;
  background: #fbfaf7;
  color: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.content-loading .content-skeleton {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.content-loading> :not(.content-skeleton) {
  visibility: hidden;
}

.skeleton-container {
  width: min(1280px, calc(100% - 44px));
  margin: auto;
}

.skeleton-top {
  background: #492546;
}

.skeleton-access {
  min-height: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.skeleton-access span {
  width: 116px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
}

.skeleton-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 3px 18px rgba(0, 0, 0, .04);
}

.skeleton-header-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.skeleton-logo {
  width: min(420px, 36vw);
  height: 64px;
  border-radius: 8px;
}

.skeleton-award {
  width: 120px;
  height: 72px;
  border-radius: 8px;
}

.skeleton-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.skeleton-nav span {
  width: 92px;
  height: 18px;
  border-radius: 999px;
}

.skeleton-page {
  padding: 34px 0 70px;
}

.skeleton-hero {
  min-height: 460px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: stretch;
  padding: 36px;
  border-radius: 0 0 34px 34px;
  background: #0d414b;
}

.skeleton-side,
.skeleton-main {
  border-radius: 8px;
}

.skeleton-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.skeleton-line {
  display: block;
  border-radius: 999px;
}

.skeleton-title {
  width: min(620px, 86%);
  height: 52px;
}

.skeleton-title-short {
  width: min(420px, 62%);
  height: 42px;
}

.skeleton-text {
  width: min(680px, 96%);
  height: 18px;
}

.skeleton-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.skeleton-actions span {
  width: 150px;
  height: 48px;
  border-radius: 999px;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.skeleton-grid span {
  min-height: 130px;
  border-radius: 8px;
}

.skeleton-section {
  display: grid;
  gap: 16px;
}

.skeleton-heading {
  width: 260px;
  height: 34px;
}

.skeleton-card {
  height: 96px;
  border-radius: 8px;
}

.skeleton-shimmer {
  background: linear-gradient(100deg, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, .52) 38%, rgba(255, 255, 255, .18) 76%);
  background-color: rgba(227, 214, 191, .68);
  background-size: 220% 100%;
  animation: skeletonShimmer 1.25s ease-in-out infinite;
}

@keyframes skeletonShimmer {
  from {
    background-position: -120% 0;
  }

  to {
    background-position: 120% 0;
  }
}

@media(max-width:900px) {

  .skeleton-header-inner,
  .skeleton-hero {
    grid-template-columns: 1fr;
  }

  .skeleton-header-inner {
    min-height: 86px;
  }

  .skeleton-nav,
  .skeleton-award {
    display: none;
  }

  .skeleton-logo {
    width: min(320px, 72vw);
    height: 54px;
  }

  .skeleton-hero {
    min-height: 520px;
    padding: 22px;
  }

  .skeleton-side {
    min-height: 170px;
  }

  .skeleton-grid {
    grid-template-columns: 1fr;
  }
}


/* v9 hero refinements */
.hero-inner {
  grid-template-columns: 1.08fr .92fr !important;
  gap: 54px !important;
  padding: 64px 72px !important;
}

.hero .award-visual {
  background: rgba(255, 255, 255, .96);
  border-radius: 28px;
  padding: 22px 32px;
  width: 285px;
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 26px auto;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.hero .award-visual img {
  height: 118px !important;
  width: auto;
  max-width: 235px;
  object-fit: contain;
}

.hero .award-chip {
  margin: 0 0 24px auto;
  width: max-content;
}

.hero h1 {
  font-size: 58px !important;
  line-height: 1.18 !important;
  white-space: nowrap;
  margin-bottom: 20px !important;
}

.hero-title-line,
.hero-line {
  display: inline !important
}

.patron-card {
  grid-template-columns: 230px 1fr !important;
  gap: 30px !important;
  padding: 30px !important;
}

.patron-card img {
  width: 230px !important;
}

.patron-card h2 {
  font-size: 31px !important;
  line-height: 1.7 !important;
}

.nowrap {
  white-space: nowrap
}

.deadline {
  margin-top: 28px !important;
  padding: 26px !important;
}

@media(max-width:1200px) {
  .hero h1 {
    white-space: normal;
    font-size: 46px !important
  }

  .hero-inner {
    grid-template-columns: 1fr !important
  }

  .hero .award-visual {
    margin-right: 0;
    margin-left: auto
  }
}

@media(max-width:720px) {
  .hero-inner {
    padding: 28px !important
  }

  .hero .award-visual {
    width: 100%;
    min-height: 120px
  }

  .hero .award-visual img {
    height: 94px !important
  }

  .patron-card {
    grid-template-columns: 1fr !important
  }

  .patron-card img {
    width: 180px !important
  }

  .nowrap {
    white-space: normal
  }
}


/* v9 download icons */
.dl .file-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fffdfa;
  display: grid;
  place-items: center;
  color: var(--gold2);
  margin-bottom: 10px;
}

.dl .file-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* v10 fixes */
.hero {
  overflow: visible !important;
}

.hero-inner {
  grid-template-columns: 1.15fr 0.95fr !important;
  gap: 48px !important;
  padding: 58px 60px !important;
  align-items: center !important;
}

.hero .award-visual {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  width: auto !important;
  min-height: auto !important;
  margin: 0 0 18px auto !important;
}

.hero .award-visual img {
  height: 170px !important;
  max-width: 340px !important;
  width: auto !important;
  display: block;
  object-fit: contain;
}

.hero .award-chip {
  margin: 0 0 18px auto !important;
}

.hero h1 {
  font-size: 56px !important;
  line-height: 1.18 !important;
  white-space: nowrap;
  margin: 0 0 18px !important;
}

.hero p {
  max-width: 720px !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
}

.patron-card {
  overflow: visible !important;
  grid-template-columns: 210px minmax(0, 1fr) !important;
  gap: 22px !important;
  padding: 28px 26px !important;
}

.patron-card img {
  width: 210px !important;
  padding: 6px !important;
}

.patron-card h2 {
  font-size: 24px !important;
  line-height: 1.6 !important;
  margin: 0 0 8px !important;
}

.patron-card p {
  font-size: 16px !important;
  line-height: 1.8 !important;
}

.deadline {
  display: grid !important;
  grid-template-columns: 1fr 1fr auto !important;
  gap: 18px !important;
  align-items: center !important;
  justify-content: normal !important;
  padding: 20px 24px !important;
}

.deadline>div {
  min-width: 0;
}

.deadline span {
  font-size: 15px !important;
}

.deadline strong {
  display: inline-block;
  font-size: 26px !important;
  line-height: 1.25 !important;
}

.deadline .btn {
  white-space: nowrap;
}

@media(max-width:1200px) {
  .hero-inner {
    grid-template-columns: 1fr !important
  }

  .hero h1 {
    white-space: normal !important;
    font-size: 46px !important
  }

  .deadline {
    grid-template-columns: 1fr 1fr !important
  }

  .deadline .btn {
    grid-column: 1/-1;
    justify-self: start
  }
}

@media(max-width:720px) {
  .hero-inner {
    padding: 26px !important
  }

  .hero .award-visual img {
    height: 120px !important;
    max-width: 260px !important
  }

  .patron-card {
    grid-template-columns: 1fr !important
  }

  .patron-card img {
    width: 180px !important
  }

  .deadline {
    grid-template-columns: 1fr !important
  }
}


/* v11 hero after removing award logo */
.hero-inner {
  grid-template-columns: 1.08fr .92fr !important;
  gap: 48px !important;
  padding: 64px 72px !important;
  align-items: center !important;
}

.hero .award-chip {
  margin: 0 0 22px auto !important;
}

.hero h1 {
  margin-top: 0 !important;
  font-size: 60px !important;
  line-height: 1.18 !important;
  white-space: nowrap;
}

.hero p {
  max-width: 760px !important;
  font-size: 19px !important;
  line-height: 1.9 !important;
}

@media(max-width:1200px) {
  .hero h1 {
    white-space: normal !important;
    font-size: 48px !important
  }
}

@media(max-width:720px) {
  .hero-inner {
    padding: 28px !important
  }

  .hero h1 {
    font-size: 36px !important
  }
}


/* v12 refinements */
.hero-inner {
  grid-template-columns: 1.05fr .95fr !important;
  gap: 54px !important;
  align-items: start !important;
}

.hero h1 {
  font-size: 60px !important;
  line-height: 1.16 !important;
  white-space: nowrap;
  margin: 0 0 14px !important;
}

.hero-chip-under-title {
  margin: 0 0 18px auto !important;
}

.hero p {
  max-width: 760px !important;
  font-size: 18px !important;
  line-height: 1.95 !important;
  margin-bottom: 18px !important;
}

.hero-actions {
  margin-bottom: 22px !important;
}

.hero .deadline {
  background: #fff !important;
  color: var(--ink) !important;
  border-radius: 28px !important;
  padding: 22px 28px !important;
  display: grid !important;
  grid-template-columns: auto 1fr 1fr !important;
  gap: 22px !important;
  align-items: center !important;
  width: 100% !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .08) !important;
}

.hero .deadline>div {
  min-width: 0;
}

.hero .deadline span {
  font-size: 15px !important;
  line-height: 1.5 !important;
}

.hero .deadline strong {
  display: block !important;
  font-size: 24px !important;
  color: #c0392b !important;
  line-height: 1.25 !important;
  margin: 4px 0 !important;
}

.hero .deadline .btn {
  order: -1;
  justify-self: start;
  white-space: nowrap;
  padding: 14px 24px !important;
}

.patron-card {
  grid-template-columns: 220px minmax(0, 1fr) !important;
  gap: 24px !important;
  padding: 28px !important;
  align-items: center !important;
}

.patron-card img {
  width: 220px !important;
}

.patron-card h2 {
  font-size: 24px !important;
  line-height: 1.65 !important;
  margin: 0 0 10px !important;
}

.patron-card p {
  font-size: 16px !important;
  line-height: 1.95 !important;
  margin: 0 !important;
}

.patron-card div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media(max-width:1200px) {
  .hero h1 {
    white-space: normal !important;
    font-size: 48px !important
  }

  .hero .deadline {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero .deadline .btn {
    grid-column: 1/-1;
    order: 0;
    justify-self: start;
  }
}

@media(max-width:720px) {
  .hero-inner {
    padding: 28px !important
  }

  .hero h1 {
    font-size: 36px !important
  }

  .hero .deadline {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .patron-card {
    grid-template-columns: 1fr !important;
  }
}


/* v13 hero and about refinements */
.hero {
  overflow: visible !important
}

.hero-inner {
  display: grid !important;
  grid-template-columns: 42% 58% !important;
  gap: 42px !important;
  padding: 52px 60px !important;
  direction: ltr;
  align-items: start !important;
}

.hero-side,
.hero-main {
  direction: ltr
}

.hero-side {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start
}

.hero-main {
  padding-top: 10px
}

.patron-card {
  width: 100%;
  background: rgba(255, 255, 255, .10) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 30px !important;
  padding: 28px !important;
  display: grid !important;
  grid-template-columns: 220px 1fr !important;
  gap: 24px !important;
  align-items: center !important;
}

.patron-card img {
  width: 220px !important;
  border: 6px solid rgba(255, 255, 255, .9);
  border-radius: 24px !important;
  display: block;
}

.patron-copy h2 {
  font-size: 25px !important;
  line-height: 1.65 !important;
  margin: 0 0 10px !important;
  color: #fff !important;
}

.patron-copy p {
  margin: 0 !important;
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1.95 !important;
}

.hero h1 {
  font-size: 58px !important;
  line-height: 1.16 !important;
  margin: 0 0 10px !important;
  color: #fff !important;
  white-space: nowrap;
}

.hero-chip-under-title {
  display: inline-flex !important;
  margin: 0 0 20px auto !important;
}

.hero p {
  margin: 0 0 20px !important;
  max-width: 720px !important;
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1.95 !important;
}

.hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-bottom: 22px !important;
}

.hero .deadline-wide {
  width: 100% !important;
  background: #fff !important;
  border-radius: 28px !important;
  padding: 20px 26px !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .08) !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr auto !important;
  gap: 22px !important;
  align-items: center !important;
}

.hero .deadline-item span {
  display: block;
  font-size: 15px !important;
  line-height: 1.5 !important;
  color: #244 !important;
}

.hero .deadline-item strong {
  display: block;
  margin: 4px 0;
  font-size: 24px !important;
  line-height: 1.3 !important;
  color: #c0392b !important;
}

.about-revamp {
  background: #f6f3ec;
}

.about-revamp-title h2 {
  font-size: 52px;
  line-height: 1.25;
  color: var(--deep);
}

.about-revamp-grid {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 28px;
  align-items: stretch;
}

.about-goals-panel,
.about-text-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
}

.about-goals-panel h3 {
  margin: 0 0 20px;
  color: var(--deep);
  font-size: 24px;
}

.goals-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.goal-mini-card {
  background: #f5f0e5;
  border: 1px solid #ddd0b8;
  border-radius: 22px;
  padding: 18px 18px 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 108px;
}

.goal-mini-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #4a2f52;
  color: #fff;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.goal-mini-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.goal-mini-card p {
  margin: 0;
  color: var(--deep);
  font-weight: 800;
  line-height: 1.85;
  font-size: 15px;
}

.about-text-panel p {
  margin: 0 0 20px;
  color: #2d4044;
  line-height: 2.1;
  font-size: 19px;
}

.about-text-panel p:last-child {
  margin-bottom: 0
}

@media(max-width:1200px) {
  .hero-inner {
    grid-template-columns: 1fr !important
  }

  .hero h1 {
    white-space: normal !important;
    font-size: 46px !important
  }

  .hero .deadline-wide {
    grid-template-columns: 1fr 1fr !important
  }

  .hero .deadline-wide .btn {
    grid-column: 1/-1;
    justify-self: start
  }

  .about-revamp-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:720px) {
  .hero-inner {
    padding: 26px !important
  }

  .patron-card {
    grid-template-columns: 1fr !important
  }

  .patron-card img {
    width: 180px !important
  }

  .hero .deadline-wide {
    grid-template-columns: 1fr !important
  }

  .about-revamp-title h2 {
    font-size: 34px
  }

  .goals-mini-grid {
    grid-template-columns: 1fr
  }

  .about-text-panel p {
    font-size: 17px
  }
}


/* v14 hero deadline & patron refinements */
.hero {
  overflow: visible !important
}

.hero-inner {
  display: grid !important;
  grid-template-columns: 42% 58% !important;
  grid-template-areas:
    "side main"
    "deadline deadline" !important;
  gap: 34px 42px !important;
  padding: 46px 50px 42px !important;
  direction: ltr;
  align-items: start !important;
}

.hero-side {
  grid-area: side;
  direction: ltr;
}

.hero-main {
  grid-area: main;
  direction: ltr;
  padding-top: 8px;
}

.deadline-banner {
  grid-area: deadline;
}

.patron-card {
  width: 100%;
  background: rgba(255, 255, 255, .10) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 30px !important;
  padding: 22px 24px !important;
  display: grid !important;
  grid-template-columns: 1fr 250px !important;
  gap: 22px !important;
  align-items: center !important;
  overflow: hidden !important;
}

.patron-card img {
  grid-column: 2;
  width: 250px !important;
  max-width: 100%;
  border: 6px solid rgba(255, 255, 255, .92);
  border-radius: 24px !important;
  display: block;
  justify-self: end;
}

.patron-copy {
  grid-column: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.patron-copy h2 {
  margin: 0 0 8px !important;
  color: #fff !important;
  font-size: 25px !important;
  line-height: 1.55 !important;
}

.patron-name {
  color: #fff !important;
  font-size: 26px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  margin: 0 0 10px !important;
}

.patron-copy p {
  margin: 0 !important;
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1.9 !important;
}

.nowrap {
  white-space: nowrap !important
}

.hero h1 {
  font-size: 58px !important;
  line-height: 1.16 !important;
  margin: 0 0 12px !important;
  color: #fff !important;
  white-space: nowrap;
}

.hero-chip-under-title {
  display: inline-flex !important;
  margin: 0 0 18px auto !important;
}

.hero p {
  margin: 0 0 20px !important;
  max-width: 760px !important;
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1.95 !important;
}

.hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-bottom: 0 !important;
}

.deadline-banner {
  width: 100% !important;
  background: #fff !important;
  border-radius: 30px !important;
  padding: 24px 28px !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .08) !important;
  display: grid !important;
  grid-template-columns: 1.2fr .95fr !important;
  gap: 20px 28px !important;
  align-items: center !important;
}

.deadline-meta {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.deadline-item span {
  display: block;
  font-size: 15px !important;
  line-height: 1.5 !important;
  color: #294248 !important;
}

.deadline-item strong {
  display: block;
  margin: 4px 0;
  font-size: 24px !important;
  line-height: 1.3 !important;
  color: #c0392b !important;
}

.countdown-wrap {
  border-inline-start: 1px solid #e6ddcf;
  padding-inline-start: 22px;
}

.countdown-title {
  color: var(--deep);
  font-weight: 900;
  margin-bottom: 12px;
  font-size: 18px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.count-box {
  background: #5f8089;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  padding: 16px 10px;
  text-align: center;
  color: #fff;
}

.count-box strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}

.count-box span {
  font-size: 16px;
  font-weight: 700;
  color: #f5efe4;
}

@media(max-width:1280px) {
  .hero h1 {
    white-space: normal !important;
    font-size: 48px !important
  }

  .patron-name {
    white-space: normal !important
  }
}

@media(max-width:1100px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "side"
      "main"
      "deadline" !important;
  }

  .deadline-banner {
    grid-template-columns: 1fr !important;
  }

  .countdown-wrap {
    border-inline-start: none;
    border-top: 1px solid #e6ddcf;
    padding-inline-start: 0;
    padding-top: 18px;
  }
}

@media(max-width:720px) {
  .hero-inner {
    padding: 24px !important
  }

  .patron-card {
    grid-template-columns: 1fr !important;
  }

  .patron-card img {
    grid-column: auto;
    width: 180px !important;
    justify-self: center;
  }

  .patron-copy {
    grid-column: auto;
    text-align: center
  }

  .patron-name {
    font-size: 22px !important;
    white-space: normal !important
  }

  .deadline-meta {
    grid-template-columns: 1fr !important;
  }

  .deadline-meta .btn {
    justify-self: start
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* v15 final visual polish */
.hero {
  border-radius: 0 34px 0 34px !important;
  overflow: hidden !important;
  position: relative;
  isolation: isolate;
}

.hero:before {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(177, 132, 59, .30), rgba(177, 132, 59, 0) 66%);
  z-index: -1;
}

.hero-inner {
  display: grid !important;
  grid-template-columns: 41% 59% !important;
  grid-template-areas:
    "side main"
    "deadline deadline" !important;
  gap: 32px 44px !important;
  padding: 48px 58px 44px !important;
  direction: ltr;
  align-items: stretch !important;
}

.hero-side,
.hero-main {
  direction: ltr
}

.hero-side {
  grid-area: side;
  display: flex;
  align-items: stretch;
}

.hero-main {
  grid-area: main;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0 0 !important;
}

.patron-card {
  width: 100%;
  min-height: 306px;
  background: rgba(255, 255, 255, .105) !important;
  border: 1px solid rgba(255, 255, 255, .24) !important;
  border-radius: 30px !important;
  padding: 24px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 220px !important;
  gap: 22px !important;
  align-items: center !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
}

.patron-card img {
  width: 220px !important;
  height: 250px !important;
  object-fit: cover !important;
  border: 6px solid rgba(255, 255, 255, .94) !important;
  border-radius: 24px !important;
  background: #fff;
  justify-self: end;
}

.patron-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.patron-copy h2 {
  color: #fff !important;
  font-size: 24px !important;
  line-height: 1.45 !important;
  margin: 0 0 8px !important;
  font-weight: 900 !important;
}

.patron-name {
  color: #fff !important;
  font-size: 25px !important;
  line-height: 1.35 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  margin: 0 0 12px !important;
}

.patron-copy p {
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
  margin: 0 !important;
}

.hero h1 {
  color: #fff !important;
  font-size: 58px !important;
  line-height: 1.15 !important;
  margin: 0 0 12px !important;
  white-space: nowrap;
  letter-spacing: -.5px;
}

.hero-chip-under-title {
  display: inline-flex !important;
  width: max-content;
  margin: 0 0 20px auto !important;
  background: rgba(255, 255, 255, .13) !important;
  border: 1px solid rgba(255, 255, 255, .26) !important;
}

.hero p {
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1.95 !important;
  max-width: 780px !important;
  margin: 0 0 24px !important;
}

.hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  margin: 0 !important;
}

.hero-actions .btn {
  min-width: 150px;
}

.deadline-banner {
  grid-area: deadline;
  width: 100% !important;
  background: #fff !important;
  border-radius: 30px !important;
  padding: 22px 26px !important;
  display: grid !important;
  grid-template-columns: 1.05fr 1fr !important;
  gap: 24px !important;
  align-items: center !important;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .10) !important;
  margin-top: 2px !important;
}

.deadline-meta {
  display: grid !important;
  grid-template-columns: auto 1fr 1fr !important;
  gap: 24px !important;
  align-items: center !important;
}

.deadline-meta .btn {
  white-space: nowrap;
  padding: 15px 28px !important;
}

.deadline-item {
  position: relative;
  padding-inline-start: 4px;
}

.deadline-item span {
  display: block;
  color: #32484d !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.deadline-item strong {
  color: #c0392b !important;
  display: block;
  font-size: 25px !important;
  line-height: 1.25 !important;
  margin: 4px 0 !important;
}

.countdown-wrap {
  border-inline-start: 1px solid #e8dfd0 !important;
  padding-inline-start: 24px !important;
}

.countdown-title {
  color: var(--deep) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  margin: 0 0 12px !important;
}

.countdown {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
}

.count-box {
  background: linear-gradient(145deg, #5f8089, #4f727b) !important;
  border: 1px solid rgba(255, 255, 255, .28) !important;
  border-radius: 20px !important;
  color: #fff !important;
  text-align: center;
  padding: 16px 10px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.count-box strong {
  color: #fff !important;
  display: block;
  font-size: 31px !important;
  line-height: 1 !important;
  margin: 0 0 10px !important;
}

.count-box span {
  color: #f7efe4 !important;
  font-weight: 800 !important;
  font-size: 15px !important;
}

@media(max-width:1280px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "side"
      "main"
      "deadline" !important;
  }

  .hero h1 {
    white-space: normal !important;
    font-size: 48px !important
  }

  .patron-card {
    max-width: 720px
  }
}

@media(max-width:980px) {
  .deadline-banner {
    grid-template-columns: 1fr !important
  }

  .countdown-wrap {
    border-inline-start: 0 !important;
    border-top: 1px solid #e8dfd0 !important;
    padding-inline-start: 0 !important;
    padding-top: 18px !important;
  }
}

@media(max-width:720px) {
  .hero-inner {
    padding: 26px !important
  }

  .patron-card {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .patron-card img {
    width: 180px !important;
    height: 210px !important;
    justify-self: center;
  }

  .patron-copy {
    align-items: center;
    text-align: center;
  }

  .patron-name {
    white-space: normal !important;
    font-size: 22px !important
  }

  .hero h1 {
    font-size: 36px !important
  }

  .deadline-meta {
    grid-template-columns: 1fr !important
  }

  .deadline-meta .btn {
    justify-self: start
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr) !important
  }
}


/* v16 clean hero */
.hero {
  position: relative;
  overflow: hidden !important;
  border-radius: 0 0 34px 34px !important;
}

.hero:before {
  content: "";
  position: absolute;
  inset: auto -8% -30% auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(186, 139, 57, .28), rgba(186, 139, 57, 0) 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid !important;
  grid-template-columns: 42% 58% !important;
  grid-template-areas:
    "side main"
    "deadline deadline" !important;
  gap: 34px 44px !important;
  padding: 48px 56px 40px !important;
  direction: ltr;
  align-items: center !important;
}

.hero-side {
  grid-area: side;
  direction: ltr;
}

.hero-main {
  grid-area: main;
  direction: ltr;
}

.deadline-banner-simple {
  grid-area: deadline;
}

.patron-card {
  background: rgba(255, 255, 255, .10) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 30px !important;
  padding: 26px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 220px !important;
  gap: 22px !important;
  align-items: center !important;
  min-height: 300px;
}

.patron-card img {
  width: 220px !important;
  height: 250px !important;
  object-fit: cover !important;
  border: 6px solid rgba(255, 255, 255, .95) !important;
  border-radius: 24px !important;
  background: #fff;
  justify-self: end;
  order: 2;
}

.patron-copy {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.patron-kicker {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 8px;
}

.patron-name {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap !important;
  margin-bottom: 14px;
}

.patron-copy p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  max-width: 290px;
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: 58px !important;
  line-height: 1.15 !important;
  white-space: nowrap;
}

.hero-chip-under-title {
  width: max-content;
  margin: 0 0 18px auto !important;
}

.hero p {
  margin: 0 0 24px !important;
  color: #fff !important;
  font-size: 19px !important;
  line-height: 1.95 !important;
  max-width: 760px !important;
}

.hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
}

.hero-actions .btn {
  min-width: 150px;
}

.deadline-banner-simple {
  width: 100% !important;
  background: #fff !important;
  border-radius: 28px !important;
  padding: 24px 28px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr auto !important;
  gap: 24px !important;
  align-items: center !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .10) !important;
}

.deadline-item {
  text-align: center;
}

.deadline-item span {
  display: block;
  color: #384d52 !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.deadline-item strong {
  display: block;
  color: #c03a2b !important;
  font-size: 28px !important;
  line-height: 1.25 !important;
  margin: 6px 0 !important;
}

.deadline-cta {
  display: flex;
  justify-content: flex-end;
}

.deadline-cta .btn {
  white-space: nowrap;
  padding: 15px 30px !important;
}

@media(max-width:1280px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "side"
      "main"
      "deadline" !important;
  }

  .hero h1 {
    white-space: normal !important;
    font-size: 48px !important;
  }
}

@media(max-width:900px) {
  .deadline-banner-simple {
    grid-template-columns: 1fr !important;
  }

  .deadline-cta {
    justify-content: flex-start;
  }
}

@media(max-width:720px) {
  .hero-inner {
    padding: 24px !important;
  }

  .patron-card {
    grid-template-columns: 1fr !important;
    min-height: auto;
    text-align: center;
  }

  .patron-card img {
    order: 1;
    justify-self: center;
    width: 180px !important;
    height: 210px !important;
  }

  .patron-copy {
    order: 2;
    align-items: center;
    text-align: center;
  }

  .patron-name {
    white-space: normal !important;
    font-size: 23px !important;
  }

  .hero h1 {
    font-size: 36px !important;
  }
}


/* v17 corrected hero for 100% zoom */
.hero {
  position: relative;
  overflow: hidden !important;
  border-radius: 0 0 34px 34px !important;
}

.hero:before {
  content: "";
  position: absolute;
  inset: auto -10% -34% auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(185, 141, 60, .28), rgba(185, 141, 60, 0) 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid !important;
  grid-template-columns: 520px minmax(0, 1fr) !important;
  grid-template-areas:
    "side main"
    "deadline deadline" !important;
  gap: 34px 54px !important;
  padding: 46px 48px 38px !important;
  direction: ltr;
  align-items: center !important;
}

.hero-side {
  grid-area: side;
  direction: ltr;
}

.hero-main {
  grid-area: main;
  direction: ltr;
  min-width: 0;
}

.deadline-banner-full {
  grid-area: deadline;
}

.patron-card {
  background: rgba(255, 255, 255, .11) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 30px !important;
  padding: 22px 22px 22px 24px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 230px !important;
  gap: 22px !important;
  align-items: center !important;
  min-height: 300px;
}

.patron-card img {
  width: 230px !important;
  height: 260px !important;
  object-fit: cover !important;
  border: 6px solid rgba(255, 255, 255, .96) !important;
  border-radius: 24px !important;
  background: #fff;
  justify-self: end;
}

.patron-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-inline-start: 6px;
}

.patron-kicker {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  margin: 0 0 8px;
}

.patron-name {
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.38;
  margin: 0 0 14px;
  white-space: nowrap;
}

.patron-copy p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  max-width: 240px;
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: 56px !important;
  line-height: 1.14 !important;
  letter-spacing: -.3px;
}

.hero-chip-under-title {
  display: inline-flex !important;
  width: max-content;
  margin: 0 0 18px auto !important;
}

.hero p {
  margin: 0 0 24px !important;
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1.95 !important;
  max-width: 760px !important;
}

.hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  align-items: center !important;
}

.hero-actions .btn {
  min-width: 150px;
}

.deadline-banner-full {
  width: 100% !important;
  background: #fff !important;
  border-radius: 28px !important;
  padding: 24px 30px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr auto !important;
  gap: 24px !important;
  align-items: center !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .10) !important;
}

.deadline-item {
  text-align: center;
}

.deadline-item span {
  display: block;
  color: #374e53 !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.deadline-item strong {
  display: block;
  color: #c03a2b !important;
  font-size: 28px !important;
  line-height: 1.22 !important;
  margin: 6px 0 !important;
}

.deadline-cta {
  display: flex;
  justify-content: flex-end;
}

.deadline-cta .btn {
  white-space: nowrap;
  padding: 15px 30px !important;
}

@media(max-width:1280px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "side"
      "main"
      "deadline" !important;
    gap: 28px !important;
  }

  .patron-card {
    max-width: 720px;
  }

  .hero h1 {
    font-size: 48px !important;
  }
}

@media(max-width:900px) {
  .deadline-banner-full {
    grid-template-columns: 1fr !important;
  }

  .deadline-cta {
    justify-content: flex-start;
  }
}

@media(max-width:720px) {
  .hero-inner {
    padding: 24px !important;
  }

  .patron-card {
    grid-template-columns: 1fr !important;
    min-height: auto;
    text-align: center;
  }

  .patron-card img {
    width: 180px !important;
    height: 210px !important;
    justify-self: center;
    order: 1;
  }

  .patron-copy {
    order: 2;
    align-items: center;
    text-align: center;
    padding-inline-start: 0;
  }

  .patron-name {
    white-space: normal;
    font-size: 22px;
  }

  .patron-copy p {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 36px !important;
  }
}


/* v18 adjust scale for 100% zoom and improve date rendering */
.hero {
  border-radius: 0 0 30px 30px !important;
}

.hero-inner {
  grid-template-columns: 470px minmax(0, 1fr) !important;
  gap: 28px 42px !important;
  padding: 34px 36px 30px !important;
  align-items: center !important;
}

.patron-card {
  min-height: 270px !important;
  padding: 18px 18px 18px 20px !important;
  grid-template-columns: minmax(0, 1fr) 200px !important;
  gap: 18px !important;
  border-radius: 26px !important;
}

.patron-card img {
  width: 200px !important;
  height: 228px !important;
  border-radius: 22px !important;
}

.patron-kicker {
  font-size: 19px !important;
  margin-bottom: 6px !important;
}

.patron-name {
  font-size: 22px !important;
  line-height: 1.32 !important;
  margin-bottom: 10px !important;
}

.patron-copy p {
  font-size: 14px !important;
  line-height: 1.8 !important;
  max-width: 220px !important;
}

.hero h1 {
  font-size: 50px !important;
  line-height: 1.12 !important;
  margin: 0 0 8px !important;
}

.hero-chip-under-title {
  margin: 0 0 14px auto !important;
  padding: 10px 20px !important;
  font-size: 15px !important;
}

.hero p {
  font-size: 16px !important;
  line-height: 1.9 !important;
  margin: 0 0 20px !important;
  max-width: 700px !important;
}

.hero-actions {
  gap: 12px !important;
}

.hero-actions .btn {
  min-width: 142px !important;
  padding: 14px 24px !important;
  font-size: 15px !important;
}

.deadline-banner-full {
  padding: 18px 24px !important;
  gap: 18px !important;
  border-radius: 24px !important;
  grid-template-columns: 1fr 1fr auto !important;
}

.deadline-item span {
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.deadline-item strong {
  font-size: 22px !important;
  margin: 5px 0 !important;
}

.deadline-cta .btn {
  padding: 14px 26px !important;
  font-size: 15px !important;
}

/* Ensure the date reads as day month year visually */
.date-structured {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  white-space: nowrap !important;
}

.date-structured span {
  display: inline-block !important;
}

@media (max-width:1400px) {
  .hero-inner {
    grid-template-columns: 440px minmax(0, 1fr) !important;
    padding: 32px 28px 28px !important;
  }

  .hero h1 {
    font-size: 46px !important;
  }
}

@media(max-width:1280px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
  }

  .patron-card {
    max-width: 660px !important;
  }
}

@media(max-width:900px) {
  .deadline-banner-full {
    grid-template-columns: 1fr !important;
  }
}

.section-sand {
  background: var(--sand)
}

.section-white {
  background: #fff
}

.contact-title {
  color: #fff;
  margin-bottom: 8px
}

/* responsive layout polish */
img,
svg {
  max-width: 100%
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--deep);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle-text {
  display: none;
}

.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.menu-toggle-icon span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

@media(max-width:1180px) {
  .header .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .menu-toggle {
    display: flex
  }

  .nav {
    display: none;
    position: absolute;
    inset-inline: 22px;
    top: calc(100% + 1px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
    z-index: 60;
  }

  .nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .nav a {
    padding: 12px 14px;
    border: 0;
    border-radius: 12px;
    background: #fbfaf7;
  }

  .nav a:hover,
  .nav a.active {
    background: #fff6e6;
    border: 0;
  }

  .nav .mobile-nav-extra {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep);
    color: #fff;
    font-weight: 900;
  }

  .nav .mobile-nav-extra:hover,
  .nav .mobile-nav-extra:focus-visible {
    background: var(--gold);
    color: #fff;
  }

  .hero-inner {
    grid-template-columns: 1fr !important;
    grid-template-areas: "main" "side" "deadline" !important;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .downloads {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media(max-width:900px) {
  .access {
    display: none
  }

  .section {
    padding: 52px 0
  }

  .timeline,
  .category-grid,
  .downloads,
  .apply-box,
  .about-revamp-grid {
    grid-template-columns: 1fr !important;
  }

  .axis {
    min-height: 0;
  }

  .axis-header {
    display: grid;
    justify-items: start;
  }

  .accordion-body {
    grid-template-columns: 1fr !important;
    padding: 8px 16px 22px;
    gap: 16px;
  }

  .category-accordion-item summary {
    padding: 14px 16px;
  }

  .category-description-card,
  .category-criteria-card {
    padding: 18px;
  }

  .contact {
    display: grid;
    align-items: start;
  }
}

@media(max-width:720px) {
  body {
    line-height: 1.75;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 28px, 1280px);
  }

  .header .container {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand award"
      "menu menu";
    align-items: center;
    gap: 6px 12px;
  }

  .brand {
    grid-area: brand;
  }

  .menu-toggle {
    grid-area: menu;
    justify-self: stretch;
    width: 100%;
    height: 40px;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 14px;
    border-radius: 10px;
  }

  .menu-toggle-text {
    display: inline;
    font-weight: 900;
    line-height: 1;
  }

  .header-award-logo {
    grid-area: award;
    justify-self: end;
  }

  .header-award-logo {
    min-width: 82px;
  }

  .header-award-logo img {
    height: 48px;
    max-width: 96px;
  }

  .brand {
    padding: 10px 0;
  }

  .brand img {
    height: auto;
    max-height: 58px;
    max-width: min(245px, 68vw);
  }

  .header-contact {
    grid-column: 1/-1;
    width: 100%;
    padding: 10px 16px !important;
  }

  .nav {
    inset-inline: 14px;
    top: calc(100% + 8px);
  }

  .nav.is-open {
    grid-template-columns: 1fr;
  }

  .breadcrumb {
    padding: 14px 0;
    font-size: 14px;
  }

  .hero {
    border-radius: 0 0 22px 22px !important;
  }

  .hero-inner {
    padding: 22px 18px !important;
    gap: 20px !important;
  }

  .hero-main {
    align-items: stretch;
  }

  .hero h1 {
    font-size: 32px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    letter-spacing: 0 !important;
  }

  .hero p {
    font-size: 15px !important;
    line-height: 1.85 !important;
  }

  .hero-chip-under-title {
    width: auto !important;
    align-self: flex-start;
    margin-inline: auto 0 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero-actions .btn,
  .deadline-cta .btn,
  .btn {
    width: 100%;
    min-width: 0 !important;
  }

  .floating-contact {
    inset-inline: 14px;
    bottom: 14px;
    min-height: 50px;
    width: auto;
    padding: 12px 18px;
  }

  .patron-card {
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .patron-card img {
    width: 150px !important;
    height: 176px !important;
  }

  .patron-kicker {
    font-size: 17px !important;
  }

  .patron-name {
    font-size: 20px !important;
  }

  .patron-copy p {
    font-size: 14px !important;
    max-width: 100% !important;
  }

  .deadline-banner-full {
    grid-template-columns: 1fr !important;
    padding: 18px !important;
    gap: 14px !important;
  }

  .deadline-item {
    text-align: left;
  }

  .deadline-item strong {
    justify-content: flex-start !important;
    font-size: 21px !important;
  }

  h2,
  .details-title h2 {
    font-size: 28px !important;
    line-height: 1.35;
  }

  .section-title {
    margin-bottom: 22px;
  }

  .section-title p {
    font-size: 16px;
  }

  .about-goals-panel,
  .about-text-panel,
  .apply-box,
  .contact {
    padding: 22px;
    border-radius: 20px;
  }

  .goal-mini-card {
    min-height: 0;
    border-radius: 16px;
  }

  .time,
  .axis,
  .dl {
    border-radius: 18px;
    padding: 18px;
  }

  .sub-links a {
    min-height: 52px;
  }

  .faq-tools {
    display: grid;
    grid-template-columns: 1fr;
  }

  .search {
    min-width: 0;
    width: 100%;
  }

  .footer .container {
    display: grid;
    gap: 8px;
    text-align: center;
  }
}

@media(max-width:420px) {
  .container {
    width: min(100% - 20px, 1280px);
  }

  .brand img {
    max-width: 66vw;
  }

  .hero h1 {
    font-size: 28px !important;
  }

  .date-structured {
    white-space: normal !important;
    flex-wrap: wrap;
    gap: 4px !important;
  }

  .category-accordion-item summary {
    font-size: 15px;
  }
}

/* v19 premium hero refresh */
.container>.hero {
  isolation: isolate;
  background:
    radial-gradient(120% 105% at 0% 100%, #fffaf0 0%, rgba(255, 250, 240, .74) 16%, rgba(255, 250, 240, 0) 38%),
    radial-gradient(105% 120% at 0% 0%, #c7a650 0%, rgba(184, 143, 61, .82) 32%, rgba(184, 143, 61, 0) 58%),
    linear-gradient(115deg, #bda17c 0%, #806044 42%, #55314c 74%, #3a173f 100%) !important;
  border-radius: 0 0 36px 36px !important;
  box-shadow: 0 28px 60px rgba(16, 47, 54, .20) !important;
}

.container>.hero:before {
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .06) 1px, transparent 1px) !important;
  background-size: 88px 88px !important;
  opacity: .26;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 18%, black 78%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 18%, black 78%, transparent);
  z-index: -1;
}

.container>.hero .hero-inner {
  grid-template-columns: minmax(360px, 470px) minmax(0, 1fr) !important;
  gap: 0px 56px !important;
  padding: 42px 52px 40px !important;
}

.container>.hero .hero-main {
  align-self: center;
}

.container>.hero .hero-main:before {
  content: "";
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f3d18b, #fff);
  margin-bottom: 18px;
}

.container>.hero h1 {
  max-width: 820px;
  font-size: 56px !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 12px 26px rgba(0, 0, 0, .16);
}

.container>.hero .hero-chip-under-title {
  color: #fff;
  background: rgba(255, 255, 255, .14) !important;
  border-color: rgba(255, 255, 255, .34) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .20);
}

.container>.hero .hero-main>p {
  max-width: 780px !important;
}

.container>.hero .hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.container>.hero .hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .20);
  font-size: 14px;
  font-weight: 800;
}

.container>.hero .hero-highlights b {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 7px;
  border-radius: 999px;
  background: #fff;
  color: #8a6527;
  line-height: 1;
}

.container>.hero .hero-actions {
  gap: 12px !important;
}

.container>.hero .hero-actions .btn {
  min-height: 52px;
  padding: 13px 25px !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.container>.hero .hero-actions .btn:hover {
  transform: translateY(-2px);
}

.container>.hero .hero-actions .btn.secondary {
  background: rgba(255, 255, 255, .96) !important;
  border-color: rgba(255, 255, 255, .74) !important;
}

.container>.hero .patron-card {
  min-height: 286px !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08)) !important;
  border: 1px solid rgba(255, 255, 255, .26) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 20px 46px rgba(0, 0, 0, .14);
  backdrop-filter: blur(8px);
}

.container>.hero .patron-card img {
  box-shadow: 0 16px 34px rgba(0, 0, 0, .20);
}

.container>.hero .patron-kicker {
  color: #f7e5bd !important;
}

.container>.hero .patron-name {
  font-size: 24px !important;
}

.container>.hero .deadline-banner-full {
  margin-top: 4px !important;
  background: rgba(255, 255, 255, .5) !important;
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: 0 22px 45px rgba(8, 59, 70, .18) !important;
}

.container>.hero .deadline-item {
  position: relative;
}

.container>.hero .deadline-item+.deadline-item:before {
  content: "";
  position: absolute;
  inset: 14% auto 14% -12px;
  width: 1px;
  background: #eadcc5;
}

.container>.hero .deadline-item span:first-child {
  color: #000 !important;
  font-weight: 800;
}

.container>.hero .deadline-item strong {
  color: #000 !important;
}

.container>.hero .deadline-cta .btn {
  box-shadow: 0 18px 34px rgba(177, 132, 59, .28) !important;
}

@media(max-width:1180px) {
  .container>.hero .hero-inner {
    grid-template-areas: "main" "side" "deadline" !important;
    grid-template-columns: 1fr !important;
    padding: 36px 34px !important;
  }

  .container>.hero .patron-card {
    max-width: 720px !important;
  }

  .container>.hero h1 {
    font-size: 46px !important;
  }
}

@media(max-width:720px) {
  .container>.hero {
    border-radius: 0 0 24px 24px !important;
  }

  .container>.hero .hero-inner {
    padding: 24px 18px !important;
  }

  .container>.hero .hero-main:before {
    margin-bottom: 14px;
  }

  .container>.hero h1 {
    font-size: 32px !important;
  }

  .container>.hero .hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .container>.hero .hero-highlights span {
    justify-content: flex-start;
    border-radius: 16px;
  }

  .container>.hero .deadline-item+.deadline-item:before {
    display: none;
  }
}

@media(max-width:900px) {

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body>*,
  main,
  section,
  .container,
  .hero,
  .hero-inner,
  .patron-card,
  .deadline-banner-full,
  .category-axis-accordion,
  .axis-header,
  .accordion-body,
  .downloads,
  .contact,
  .footer {
    max-width: 100%;
    min-width: 0;
  }

  .container>.hero .hero-inner,
  .detail-layout,
  .detail-body,
  .criterion-grid,
  .criteria-grid,
  .scheme-grid,
  .deadline-banner-full {
    grid-template-columns: 1fr !important;
  }

  .container>.hero h1,
  .container>.hero .hero-highlights span,
  .axis-header h3,
  .category-accordion-item summary,
  .deadline-item strong,
  .btn {
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}

/* Standalone English layout */
body {
  direction: ltr;
  text-align: left;
}

.nav,
.hero,
.hero-inner,
.hero-side,
.hero-main,
.patron-card,
.patron-copy,
.about-lede,
.about-copy,
.about-impact,
.about-goal,
.details-title,
.detail-copy,
.detail-content,
.detail-criteria-card,
.criteria,
.category-description-card,
.category-criteria-card,
.apply,
.downloads,
.faq,
.contact,
.footer {
  direction: ltr !important;
  text-align: left;
}

.hero-inner {
  grid-template-areas:
    "main side"
    "deadline deadline" !important;
}

.hero-main {
  grid-area: main;
  align-items: flex-start;
}

.hero-side {
  grid-area: side;
  justify-content: flex-start;
}

.patron-card img {
  justify-self: end;
}

.patron-copy {
  align-items: flex-start;
  padding-inline-start: 0;
  padding-inline-end: 6px;
}

ul,
ol,
.criteria ul,
.category-criteria-card ul,
.detail-criteria-card ul {
  padding-right: 0 !important;
  padding-left: 24px !important;
}

.detail-criteria-card ul {
  padding-left: 18px !important;
}

.date-structured {
  direction: ltr !important;
}

.deadline-item {
  text-align: center;
}

.floating-contact {
  inset-inline-start: auto;
  inset-inline-end: 24px;
  right: 24px;
  left: auto;
}

@media(max-width:900px) {

  .hero-inner,
  .container>.hero .hero-inner {
    grid-template-areas: "main" "side" "deadline" !important;
  }

  .container>.hero .hero-highlights span,
  .axis-header h3,
  .category-accordion-item summary {
    text-align: left;
  }

  .floating-contact {
    inset-inline: 14px;
    right: 14px;
    left: 14px;
  }
}

/* English hero polish */
.container>.hero .hero-inner {
  grid-template-columns: 2fr minmax(460px, 1fr) !important;
  gap: 0px 56px !important;
  padding: 50px 50px 24px !important;
  align-items: center !important;
}

.container>.hero .hero-main {
  align-self: center !important;
}

.container>.hero .hero-side {
  align-items: center !important;
  justify-content: center !important;
  min-width: 0;
}

.container>.hero .hero-side>img {
  display: block;
  width: min(100%, 440px) !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain;
}

.container>.hero h1 {
  max-width: 940px !important;
  font-size: 50px !important;
  line-height: 1.14 !important;
  margin-bottom: 12px !important;
  text-wrap: balance;
}

.container>.hero .hero-chip-under-title {
  margin: 0 0 22px !important;
  align-self: flex-start !important;
}

.container>.hero .hero-main>p {
  max-width: 700px !important;
  font-size: 16px !important;
  line-height: 1.9 !important;
  margin-bottom: 22px !important;
}

.container>.hero .hero-highlights {
  max-width: 720px;
  gap: 12px !important;
}

.container>.hero .hero-highlights span {
  min-height: 48px !important;
  padding: 8px 14px !important;
}

.container>.hero .hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center;
  gap: 12px !important;
}

.container>.hero .hero-actions .btn {
  min-width: 154px !important;
}

.container>.hero .patron-card {
  grid-template-columns: minmax(0, 1fr) 200px !important;
  gap: 28px !important;
  align-items: center !important;
  min-height: 286px !important;
  padding: 28px 18px 28px 28px !important;
}

.container>.hero .patron-card img {
  width: 200px !important;
  height: 228px !important;
  object-fit: cover;
}

.container>.hero .patron-copy {
  max-width: 390px;
}

.container>.hero .patron-kicker {
  font-size: 17px !important;
  line-height: 1.45 !important;
  margin-bottom: 8px !important;
}

.container>.hero .patron-name {
  font-size: 24px !important;
  line-height: 1.28 !important;
  margin-bottom: 12px !important;
}

.container>.hero .patron-copy p {
  max-width: 360px !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

.container>.hero .deadline-banner-full {
  width: 100% !important;
  max-width: none !important;
  margin-top: 8px !important;
  padding: 22px 28px !important;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, .9fr) auto !important;
  gap: 24px !important;
}

.container>.hero .deadline-item {
  text-align: left !important;
}

.container>.hero .date-structured {
  display: inline-flex !important;
  gap: .28em !important;
  white-space: nowrap !important;
}

.container>.hero .deadline-item strong {
  font-size: 20px !important;
  line-height: 1.25 !important;
}

.container>.hero .deadline-item span {
  line-height: 1.35 !important;
}

.container>.hero .deadline-cta {
  justify-self: end;
}

@media(min-width:769px) and (max-width:1280px) {
  .container>.hero .hero-inner {
    grid-template-areas:
      "main side"
      "deadline deadline" !important;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 34%) !important;
    gap: 0 34px !important;
    padding: 34px 34px 28px !important;
  }

  .container>.hero .hero-side>img {
    width: min(100%, 340px) !important;
  }

  .container>.hero h1 {
    white-space: normal !important;
    font-size: 42px !important;
  }
}

@media(max-width:768px) {
  .container>.hero .hero-inner {
    grid-template-columns: 1fr !important;
    grid-template-areas: "main" "side" "deadline" !important;
    padding: 38px 34px 28px !important;
  }

  .container>.hero .hero-side {
    justify-content: flex-start !important;
  }

  .container>.hero .hero-side>img {
    width: min(100%, 380px) !important;
  }

  .container>.hero h1 {
    white-space: normal !important;
    font-size: 46px !important;
  }

  .container>.hero .patron-card,
  .container>.hero .deadline-banner-full {
    width: 100% !important;
    max-width: 780px !important;
  }
}

@media(max-width:768px) {
  .container>.hero .hero-inner {
    padding: 24px 18px !important;
    gap: 18px !important;
  }

  .container>.hero h1 {
    font-size: 32px !important;
  }

  .container>.hero .hero-actions,
  .container>.hero .deadline-banner-full {
    grid-template-columns: 1fr !important;
  }

  .container>.hero .hero-actions .btn,
  .container>.hero .deadline-cta .btn {
    width: 100%;
  }

  .container>.hero .patron-card {
    grid-template-columns: 1fr !important;
    padding: 20px !important;
  }

  .container>.hero .patron-card img {
    justify-self: start;
    width: 150px !important;
    height: 174px !important;
  }

  .container>.hero .deadline-cta {
    justify-self: stretch;
  }
}

.deadline-banner-full .deadline-item {
  display: block;
  text-align: center;
}

.deadline-banner-full .deadline-item span,
.deadline-banner-full .deadline-item strong {
  display: inline !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.deadline-banner-full .deadline-item .date-structured {
  display: inline !important;
  gap: 0 !important;
  white-space: normal !important;
}

.deadline-banner-full .deadline-item .date-structured span {
  display: inline !important;
  margin: 0 2px !important;
}

.patron-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.patron-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.patron-img-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 18px 20px;
  text-align: left;
  direction: ltr;
}

.patron-img-overlay .patron-kicker {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 4px;
}

.header-logo-layout-ar .container {
  flex-direction: row-reverse;
}

.header-logo-layout-ar .brand {
  direction: ltr;
}

.header-logo-layout-ar .nav {
  direction: ltr !important;
}

@media(max-width:1180px) {
  .header-logo-layout-ar .container {
    grid-template-columns: auto auto minmax(0, 1fr);
    grid-template-areas: "award menu brand";
  }

  .header-logo-layout-ar .brand {
    grid-area: brand;
    justify-self: end;
  }

  .header-logo-layout-ar .menu-toggle {
    grid-area: menu;
  }

  .header-logo-layout-ar .header-award-logo {
    grid-area: award;
    justify-self: start;
  }
}

@media(max-width:720px) {
  .header-logo-layout-ar .container {
    grid-template-areas:
      "award brand"
      "menu menu";
  }

  .header-logo-layout-ar .brand {
    justify-self: end;
  }

  .header-logo-layout-ar .header-award-logo {
    justify-self: start;
  }
}

.patron-img-overlay .patron-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.patron-img-overlay p {
  font-size: 13px;
  opacity: 0.85;
  margin: 0;
  line-height: 1.5;
}

.deadline-banner-full .deadline-item {
  display: block;
  text-align: center;
}

.deadline-banner-full .deadline-item span,
.deadline-banner-full .deadline-item strong {
  display: inline !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.deadline-banner-full .deadline-item .date-structured {
  display: inline !important;
  gap: 0 !important;
  white-space: normal !important;
}

.deadline-banner-full .deadline-item .date-structured span {
  display: inline !important;
  margin: 0 2px !important;
}