@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-navy: #004d3a;
  --color-navy-dark: #003326;
  --color-gold: #d6a23a;
  --color-gold-2: #f0ba55;
  --color-blue: #007d63;
  --color-surface: #f7f2e8;
  --color-border: #eadfce;
  --color-muted: #8f968f;
  --color-copy: #65706a;
  --shadow-soft: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .08);
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  --shadow-deep: 0 25px 50px -12px rgba(0, 0, 0, .25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
  color: var(--color-navy-dark);
  background: #ffffff;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section-muted {
  background: var(--color-surface);
}

.anchor-target {
  position: relative;
  top: -80px;
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 4px;
  border: 1px solid transparent;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm-custom {
  min-height: 32px;
  padding: 7px 16px;
  font-size: 12px;
  line-height: 16px;
}

.btn-gold {
  color: var(--color-navy-dark);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  color: var(--color-navy-dark);
  background: #e5ad3f;
  border-color: #e5ad3f;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
}

.btn-navy {
  color: #ffffff;
  background: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-navy:hover {
  color: #ffffff;
  background: #006047;
  border-color: #006047;
}

.btn-outline-light-custom {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, .4);
}

.btn-outline-light-custom:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .08);
}

.btn-outline-navy {
  color: var(--color-navy);
  background: transparent;
  border-color: var(--color-navy);
  font-weight: 500;
}

.btn-outline-navy:hover {
  color: #ffffff;
  background: var(--color-navy);
}

.site-header {
  position: relative;
  z-index: 20;
  background: #ffffff;
  box-shadow: 0 4px 3px rgba(0, 0, 0, .1), 0 2px 2px rgba(0, 0, 0, .1);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-gold);
  background: var(--color-navy);
  border-radius: 10px;
}

.brand-mark svg {
  width: 21px;
  height: 21px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  overflow: hidden;
  color: inherit;
  background: transparent;
  border-radius: 0;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-symbol {
  width: 36px;
  height: 36px;
  padding: 9px;
  color: var(--color-gold);
  background: var(--color-navy);
  border-radius: 10px;
}

.brand-symbol img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
}

.brand-copy strong {
  max-width: 100%;
  overflow: hidden;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  max-width: 100%;
  overflow: hidden;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 32px;
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  white-space: nowrap;
  transition: background-color .2s ease;
}

.primary-nav a:hover {
  background: #f8f3e8;
}

.primary-nav svg {
  width: 13px;
  height: 13px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 999px;
}

.hero-section {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(242, 140, 40, .85) 50%, var(--color-gold) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-background.png");
  background-position: center;
  background-size: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(0, 51, 38, .95) 0%, rgba(0, 51, 38, .45) 50%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(90deg, rgba(0, 51, 38, .7), rgba(0, 51, 38, .7));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 500px;
  padding-inline: 32px;
  gap: 56px;
}

.hero-copy {
  width: min(580px, 100%);
  min-width: 0;
  transition: opacity .2s ease, transform .2s ease;
}

.hero-copy.is-switching {
  opacity: .2;
  transform: translateY(6px);
}

.eyebrow,
.center-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-gold);
  text-transform: uppercase;
}

.eyebrow span,
.center-eyebrow span {
  width: 36px;
  height: 3px;
  background: var(--color-gold);
}

.center-eyebrow span {
  width: 40px;
  height: 2px;
}

.eyebrow strong,
.center-eyebrow strong {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0;
}

.hero-copy h1 {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: 35.2px;
  font-weight: 800;
  line-height: 44px;
  overflow-wrap: break-word;
}

.hero-subtitle {
  margin: 12px 0 0;
  color: var(--color-gold);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.hero-en {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  line-height: 20px;
  overflow-wrap: anywhere;
}

.hero-en-small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .4);
  font-size: 12px;
  line-height: 16px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 38px;
  padding: 9px 17px;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 4px;
  overflow-wrap: anywhere;
}

.hero-meta svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.poster-wrap {
  position: relative;
  flex: 0 0 auto;
}

.poster-wrap::before,
.poster-wrap::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-radius: 16px;
  pointer-events: none;
}

.poster-wrap::before {
  inset: -8px;
  border-width: 2px;
  border-color: rgba(214, 162, 58, .28);
}

.poster-wrap::after {
  inset: -16px;
  border-width: 1px;
  border-color: rgba(214, 162, 58, .14);
}

.poster-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: var(--shadow-deep);
}

.poster-wrap span {
  position: absolute;
  z-index: 3;
  inset-inline-start: 50%;
  bottom: -13px;
  transform: translateX(50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 6px 16px;
  color: var(--color-navy-dark);
  background: var(--color-gold);
  border-radius: 999px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1), 0 4px 6px rgba(0, 0, 0, .1);
  font-size: 10px;
  font-weight: 800;
  line-height: 15px;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-poster {
  width: 292px;
  height: 390px;
}

.hero-poster span {
  bottom: -11px;
  font-size: 9px;
  line-height: 13.5px;
  padding: 4px 12px;
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  transform: translateY(-50%);
}

.hero-arrow svg {
  width: 20px;
  height: 20px;
}

.hero-arrow-prev {
  inset-inline-start: 20px;
}

.hero-arrow-next {
  inset-inline-end: 20px;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  inset-inline-start: 50%;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(50%);
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .3);
  transition: width .2s ease, background-color .2s ease;
}

.hero-dots .active {
  width: 28px;
  background: var(--color-gold);
}

.quick-actions {
  padding-block: 32px;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.quick-card {
  display: flex;
  min-height: 102px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 17px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #ffffff;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.quick-card:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 162, 58, .4);
  box-shadow: var(--shadow-soft);
}

.quick-card strong {
  margin-top: 0;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 16.5px;
  white-space: nowrap;
}

.quick-card small {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 500;
  line-height: 12.5px;
  white-space: nowrap;
}

.notice-bar {
  background: #fbf3df;
  border-top: 1px solid rgba(214, 162, 58, .3);
  border-bottom: 1px solid rgba(214, 162, 58, .3);
}

.notice-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.notice-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.notice-copy p {
  margin: 0;
  color: var(--color-navy-dark);
  font-size: 14px;
  line-height: 20px;
}

.notice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: var(--color-gold);
  border-radius: 999px;
  font-weight: 800;
}

.about-section {
  padding-block: 64px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.event-stack {
  display: grid;
  gap: 16px;
}

.countdown-card,
.conference-card {
  border-radius: 14px;
}

.countdown-card {
  overflow: hidden;
  min-height: 347.5px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 45px;
  padding: 12px 20px 13px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.card-head span,
.important-dates h3,
.needed-files h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.card-head i,
.important-dates i,
.needed-files i {
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--color-gold);
  border-radius: 999px;
}

.card-head small {
  color: var(--color-navy);
  font-size: 11px;
  font-weight: 500;
  line-height: 16.5px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px 20px;
}

.countdown div {
  display: flex;
  min-height: 68px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 4px;
  background: var(--color-navy);
  border-radius: 14px;
}

.countdown strong {
  color: var(--color-gold);
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
}

.countdown span {
  margin-top: 6px;
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  font-weight: 500;
  line-height: 13.5px;
}

.important-dates {
  margin: 0 20px 20px;
  padding-top: 13px;
  border-top: 1px solid var(--color-border);
}

.important-dates h3 {
  font-size: 12px;
  line-height: 16px;
}

.important-dates ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.important-dates li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 10px;
}

.important-dates li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-inline-end: 0;
  background: #d1d5dc;
  border-radius: 999px;
}

.important-dates li span {
  flex: 1 1 auto;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 16px;
}

.important-dates li strong {
  color: var(--color-navy);
  font-size: 11px;
  font-weight: 700;
  line-height: 14.667px;
  white-space: nowrap;
}

.important-dates .highlight {
  background: #fdf8ef;
  border: 1px solid rgba(214, 162, 58, .25);
}

.important-dates .highlight::before {
  background: var(--color-gold);
}

.important-dates .highlight span {
  color: var(--color-navy);
  font-weight: 600;
}

.important-dates .highlight strong {
  color: var(--color-gold);
}

.conference-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 24px;
  color: #ffffff;
  background: var(--color-navy);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.conference-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-2));
}

.conference-card::after {
  content: "";
  position: absolute;
  width: 128px;
  height: 128px;
  inset-inline-end: -32px;
  bottom: -32px;
  border: 1px solid rgba(214, 162, 58, .15);
  border-radius: 999px;
}

.conference-card > * {
  position: relative;
  z-index: 1;
}

.conference-card h3 {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.25px;
}

.conference-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .4);
  font-size: 10px;
  line-height: 20px;
}

.conference-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.conference-card dt {
  margin-bottom: 2px;
  color: var(--color-gold);
  font-size: 9px;
  font-weight: 700;
  line-height: 13.5px;
}

.conference-card dd {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.about-copy {
  padding-top: 0;
}

.about-copy h2,
.section-head h2 {
  margin: 16px 0 0;
  color: var(--color-navy);
  font-size: 30.4px;
  font-weight: 800;
  line-height: 45.6px;
}

.about-copy p {
  margin: 24px 0 0;
  color: rgba(6, 27, 58, .8);
  font-size: 14.4px;
  line-height: 28.8px;
}

.about-copy .muted {
  max-width: 388px;
  margin-top: 20px;
  margin-bottom: 32px;
  color: rgba(6, 27, 58, .6);
  font-size: 13.6px;
  line-height: 27.2px;
}

.poster-column {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.about-poster {
  width: 300px;
  height: 401px;
}

.needed-files {
  width: 300px;
  padding-top: 16px;
}

.needed-files h3 {
  margin-bottom: 12px;
  color: var(--color-navy);
  font-size: 12px;
  line-height: 16px;
}

.needed-files a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  margin-top: 8px;
  padding: 13px 17px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
}

.needed-files strong {
  flex: 1 1 auto;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.needed-files small {
  color: var(--color-gold);
  font-size: 18px;
  line-height: 1;
}

.file-badge,
.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
}

.file-badge {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 11px;
  line-height: 16.5px;
}

.fa-badge {
  background: var(--color-blue);
}

.en-badge {
  background: var(--color-navy);
}

.news-section {
  padding-block: 56px;
  background: #ffffff;
}

.section-head {
  margin: 0 0 40px;
}

.section-head h2 {
  margin-top: 8px;
}

.section-head p {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 20px;
}

.split-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.centered {
  text-align: center;
}

.centered,
.center-eyebrow {
  justify-content: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  position: relative;
  overflow: hidden;
  min-height: 213.5px;
  padding: 27px 24px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
}

.news-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-navy), var(--color-blue));
}

.news-card time {
  display: block;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 16.5px;
}

.news-card h3 {
  margin: 12px 0 0;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
}

.news-card p {
  max-width: 373px;
  margin: 12px 0 0;
  color: var(--color-copy);
  font-size: 12px;
  line-height: 28px;
}

.news-card a,
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  padding: 0;
  border: 0;
  color: var(--color-blue);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  cursor: pointer;
}

.partners-section {
  padding-block: 49px 48px;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.partner-row > div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 122px;
  padding: 29px 17px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

.partner-row img {
  max-width: 100%;
  width: auto;
  max-height: 72px;
  object-fit: contain;
}

.brand-chip {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

.brand-chip.noormags { background: #0a7f63; }
.brand-chip.vcert { background: #007d63; }
.brand-chip.civilica { background: #0b6b57; }
.brand-chip.sid { background: var(--color-blue); }
.brand-chip.zenodo { background: #1d6fa4; }
.brand-chip.doi { color: var(--color-navy-dark); background: var(--color-gold); }
.brand-chip.aftabfekr { background: var(--color-navy); }

.info-strip {
  padding-block: 40px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  display: flex;
  min-height: 176px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 29px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  text-align: center;
}

.info-card small {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.info-card strong {
  margin-top: 8px;
  color: var(--color-navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.conference-card dd a,
.info-card strong a,
.contact-cards strong a {
  color: inherit;
}

.info-card em {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 12px;
  font-style: normal;
  line-height: 16px;
}

.themes-section {
  padding-block: 64px;
}

.themes-panel {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.themes-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 20px 32px;
  color: #ffffff;
  background: var(--color-navy);
}

.themes-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.themes-head p {
  margin: 2px 0 0;
  color: var(--color-gold);
  font-size: 12px;
  line-height: 16px;
}

.themes-head .star-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  background: rgba(214, 162, 58, .2);
  border-radius: 4px;
}

.themes-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  padding: 32px;
}

.themes-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 61px;
  padding: 8px 0 9px;
  color: var(--color-navy-dark);
  border-bottom: 1px solid var(--color-surface);
  font-size: 14px;
  line-height: 28px;
}

.themes-list div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.themes-list i {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  background: var(--color-gold);
  border-radius: 999px;
}

.indexing-section {
  padding-block: 64px;
  background: #ffffff;
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.index-grid article {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  text-align: center;
}

.index-grid .brand-chip {
  width: 56px;
  height: 56px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
}

.index-logo {
  width: 70px;
  height: 56px;
  object-fit: contain;
}

.index-grid h3 {
  margin: 16px 0 0;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.index-grid p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 20px;
}

.contact-section {
  padding-block: 64px;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

.request-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 475px;
  padding: 33px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
}

.request-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 32px;
}

.request-card p {
  margin: 0;
  color: var(--color-copy);
  font-size: 14px;
  line-height: 30px;
}

.request-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.request-card li {
  position: relative;
  padding-inline-start: 18px;
  color: var(--color-navy-dark);
  font-size: 13px;
  line-height: 24px;
}

.request-card li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--color-gold);
  border-radius: 999px;
}

.request-card .btn {
  gap: 8px;
  min-height: 46px;
  margin-top: 6px;
  border-radius: 10px;
}

.contact-info {
  padding-top: 0;
}

.contact-info > p {
  max-width: 628px;
  margin: 0;
  color: var(--color-copy);
  font-size: 14px;
  line-height: 32px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.contact-cards div {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 12px;
  align-items: center;
  min-height: 71px;
  padding: 17px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
}

.contact-cards span {
  grid-row: 1 / 3;
}

.contact-cards small {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
}

.contact-cards strong {
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.news-modal {
  --bs-modal-bg: transparent;
  --bs-modal-border-color: transparent;
}

.news-modal .modal-dialog {
  max-width: 760px;
}

.news-modal .modal-content {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(229, 234, 240, .95);
  border-radius: 14px;
  box-shadow: var(--shadow-deep);
}

.news-modal .modal-header,
.news-modal .modal-footer {
  border: 0;
}

.news-modal .modal-header {
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px 20px;
  color: #ffffff;
  background: var(--color-navy);
}

.news-modal time {
  display: block;
  color: rgba(214, 162, 58, .95);
  font-size: 12px;
  line-height: 18px;
}

.news-modal .modal-title {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 34px;
}

.modal-close {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.modal-close::before {
  transform: translate(50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(50%, -50%) rotate(-45deg);
}

.news-modal .modal-body {
  padding: 28px 32px 10px;
}

.news-modal .modal-body p {
  margin: 0 0 16px;
  color: var(--color-copy);
  font-size: 14px;
  line-height: 30px;
}

.news-modal .modal-body ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 18px;
  list-style: none;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
}

.news-modal .modal-body li {
  position: relative;
  padding-inline-start: 18px;
  color: var(--color-navy-dark);
  font-size: 13px;
  line-height: 24px;
}

.news-modal .modal-body li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--color-gold);
  border-radius: 999px;
}

.news-modal .modal-footer {
  gap: 12px;
  justify-content: flex-start;
  padding: 22px 32px 32px;
}

.site-footer {
  background: var(--color-navy-dark);
}

.footer-inner {
  padding-block: 48px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  min-height: 185px;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  color: var(--color-gold);
  background: rgba(214, 162, 58, .12);
}

.footer-brand .brand-logo {
  width: 42px;
  height: 42px;
  background: transparent;
}

.footer-brand .brand-symbol {
  width: 36px;
  height: 36px;
  background: rgba(214, 162, 58, .12);
}

.footer-brand .brand-copy strong,
.site-footer h3 {
  color: var(--color-gold);
}

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, .4);
  font-size: 10px;
  line-height: 15px;
}

.footer-brand p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  line-height: 28px;
}

.footer-brand .footer-muted {
  margin-top: 4px;
  color: rgba(255, 255, 255, .4);
  line-height: 16px;
}

.site-footer h3 {
  margin: 0 0 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.footer-links,
.footer-contact,
.footer-credit {
  display: flex;
  flex-direction: column;
}

.footer-credit p {
  max-width: 240px;
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  line-height: 24px;
}

.footer-credit a {
  color: var(--color-gold);
  font-weight: 700;
}

.footer-credit a:hover {
  color: #ffffff;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  line-height: 16px;
}

.footer-links a::before {
  content: "‹";
  color: var(--color-gold);
  font-size: 14px;
  line-height: 1;
}

.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  line-height: 16px;
}

.footer-contact a {
  color: inherit;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .3);
  font-size: 11px;
  line-height: 16.5px;
}

.footer-bottom a {
  color: var(--color-gold);
  font-weight: 700;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.quick-icon,
.info-icon,
.contact-cards span,
.footer-contact i,
.conference-card .globe-icon,
.themes-head .star-icon,
.send-icon {
  --icon-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-size);
  height: var(--icon-size);
  color: var(--color-navy);
}

.quick-icon {
  --icon-size: 26px;
  margin-bottom: 8px;
}

.info-icon {
  --icon-size: 34px;
}

.contact-cards span {
  --icon-size: 20px;
}

.footer-contact i {
  --icon-size: 13px;
  color: var(--color-gold);
}

.conference-card .globe-icon {
  --icon-size: 32px;
  color: var(--color-gold);
}

.send-icon {
  --icon-size: 15px;
  color: #ffffff;
}

.quick-icon::before,
.info-icon::before,
.contact-cards span::before,
.footer-contact i::before,
.conference-card .globe-icon::before,
.themes-head .star-icon::before,
.send-icon::before {
  content: "";
  display: block;
  width: var(--icon-size);
  height: var(--icon-size);
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.user-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm7 8a7 7 0 0 0-14 0' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm7 8a7 7 0 0 0-14 0' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.doc-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3h7l4 4v14H7V3Zm7 0v5h5M9 13h6M9 17h6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3h7l4 4v14H7V3Zm7 0v5h5M9 13h6M9 17h6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.book-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5.5c3-1.1 5.5-.6 8 1.1 2.5-1.7 5-2.2 8-1.1v13c-3-1.1-5.5-.6-8 1.1-2.5-1.7-5-2.2-8-1.1v-13Zm8 1.1v13' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5.5c3-1.1 5.5-.6 8 1.1 2.5-1.7 5-2.2 8-1.1v13c-3-1.1-5.5-.6-8 1.1-2.5-1.7-5-2.2-8-1.1v-13Zm8 1.1v13' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.star-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 3 2.8 5.7 6.2.9-4.5 4.4 1.1 6.2L12 17.3l-5.6 2.9 1.1-6.2L3 9.6l6.2-.9L12 3Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 3 2.8 5.7 6.2.9-4.5 4.4 1.1 6.2L12 17.3l-5.6 2.9 1.1-6.2L3 9.6l6.2-.9L12 3Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.group-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm8 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM3 20a5 5 0 0 1 10 0m-2.5-3.8A5 5 0 0 1 21 20' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm8 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM3 20a5 5 0 0 1 10 0m-2.5-3.8A5 5 0 0 1 21 20' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.medal-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3h8l-2 5h-4L8 3Zm4 18a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0-7v4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3h8l-2 5h-4L8 3Zm4 18a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0-7v4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.phone-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 4h3l1.5 4-2 1.4a12 12 0 0 0 5.6 5.6L16 13l4 1.5v3a2 2 0 0 1-2.2 2C10.7 18.8 5.2 13.3 4.5 6.2A2 2 0 0 1 6.5 4Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 4h3l1.5 4-2 1.4a12 12 0 0 0 5.6 5.6L16 13l4 1.5v3a2 2 0 0 1-2.2 2C10.7 18.8 5.2 13.3 4.5 6.2A2 2 0 0 1 6.5 4Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.calendar-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3v4m10-4v4M4 9h16M6 5h12a2 2 0 0 1 2 2v12H4V7a2 2 0 0 1 2-2Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3v4m10-4v4M4 9h16M6 5h12a2 2 0 0 1 2 2v12H4V7a2 2 0 0 1 2-2Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.location-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s7-6 7-12a7 7 0 1 0-14 0c0 6 7 12 7 12Zm0-9a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s7-6 7-12a7 7 0 1 0-14 0c0 6 7 12 7 12Zm0-9a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.globe-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Zm0 0c2.2-2.2 3.3-5.2 3.3-9S14.2 5.2 12 3m0 18c-2.2-2.2-3.3-5.2-3.3-9S9.8 5.2 12 3M3.6 9h16.8M3.6 15h16.8' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Zm0 0c2.2-2.2 3.3-5.2 3.3-9S14.2 5.2 12 3m0 18c-2.2-2.2-3.3-5.2-3.3-9S9.8 5.2 12 3M3.6 9h16.8M3.6 15h16.8' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.send-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 3-9 18-2-8-8-2 19-8Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 3-9 18-2-8-8-2 19-8Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 1320px) {
  .header-actions {
    display: none;
  }

  .primary-nav {
    justify-content: flex-end;
  }

  .hero-inner {
    padding-inline: 24px;
  }

  .quick-grid,
  .partner-row,
  .index-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .header-inner {
    flex-wrap: wrap;
    padding-block: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-inline-start: auto;
  }

  .primary-nav {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    justify-content: space-between;
    height: auto;
    min-height: 40px;
    font-size: 13px;
  }

  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    display: grid;
    min-height: auto;
    padding-block: 56px 72px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-poster {
    justify-self: center;
  }

  .about-grid {
    display: grid;
  }

  .news-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .themes-list {
    grid-template-columns: 1fr;
  }

  .themes-list div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--color-surface);
  }

  .themes-list div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  .site-container {
    padding-inline: 16px;
  }

  .header-inner {
    column-gap: 12px;
  }

  .brand {
    max-width: calc(100% - 56px);
  }

  .brand-mark,
  .menu-toggle {
    flex: 0 0 auto;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .hero-copy h1,
  .about-copy h2,
  .section-head h2 {
    font-size: 25px;
    line-height: 38px;
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-meta,
  .hero-buttons,
  .notice-inner,
  .notice-copy,
  .split-head {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-meta span,
  .hero-buttons .btn,
  .notice-inner .btn,
  .split-head .btn {
    width: 100%;
  }

  .hero-meta span {
    justify-content: center;
    text-align: center;
  }

  .hero-poster {
    width: min(280px, 82vw);
    height: auto;
    aspect-ratio: 292 / 390;
  }

  .hero-arrow {
    display: none;
  }

  .quick-grid,
  .partner-row,
  .info-grid,
  .index-grid,
  .contact-cards,
  .conference-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-card small,
  .quick-card strong {
    white-space: normal;
  }

  .quick-card {
    min-height: 108px;
    padding: 14px 8px;
  }

  .quick-card strong {
    font-size: 11px;
    line-height: 16px;
  }

  .quick-card small {
    font-size: 9px;
    line-height: 14px;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .conference-card dl div,
  .info-card,
  .index-grid article,
  .partner-row > div {
    min-width: 0;
  }

  .info-card {
    min-height: 150px;
    padding: 20px 10px;
  }

  .info-card strong {
    font-size: 14px;
    line-height: 22px;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .partner-row > div {
    min-height: 100px;
    padding: 18px 10px;
  }

  .index-grid article {
    min-height: 168px;
    padding: 20px 10px;
  }

  .index-grid p {
    font-size: 10px;
    line-height: 18px;
  }

  .contact-cards div {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 106px;
    padding: 14px 8px;
    text-align: center;
  }

  .contact-cards span {
    grid-row: auto;
  }

  .poster-column {
    justify-items: stretch;
  }

  .about-poster,
  .needed-files {
    width: min(300px, 100%);
    justify-self: center;
  }

  .request-card {
    padding: 24px;
  }

  .request-card {
    min-height: auto;
  }

  .news-modal .modal-dialog {
    margin: 16px;
  }

  .news-modal .modal-header {
    padding: 24px 20px 18px;
  }

  .news-modal .modal-title {
    font-size: 19px;
    line-height: 30px;
  }

  .news-modal .modal-body {
    padding: 22px 20px 6px;
  }

  .news-modal .modal-footer {
    align-items: stretch;
    flex-direction: column;
    padding: 18px 20px 24px;
  }

  .news-modal .modal-footer .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .hero-section {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: 22px;
    line-height: 34px;
  }

  .eyebrow strong,
  .center-eyebrow strong {
    letter-spacing: 0;
  }

  .center-eyebrow span {
    width: 24px;
  }

  .partner-row > div {
    min-height: 96px;
  }

  .info-card {
    min-height: 148px;
  }

  .index-grid article {
    min-height: 164px;
  }
}
