@font-face {
  font-family: "Bebas Neue Pro";
  src: url("assets/fonts/BebasNeuePro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Bebas Neue Pro";
  src: url("assets/fonts/BebasNeuePro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("assets/fonts/RobotoCondensed-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("assets/fonts/RobotoCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --display-leading: 1.18;
  --hero-leading: 1.13;
  color-scheme: dark;
  font-family: "Roboto Condensed", Arial, sans-serif;
  background: #17151f;
  color: #fff;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-width: 320px; min-height: 100%; }

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #17151f;
}

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .8rem 1rem;
  border-radius: .5rem;
  background: #fff;
  color: #111;
}

.skip-link:focus { top: 1rem; }

.hero {
  --accent: #ffcb45;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #5e4cbb;
  transition: background-color 650ms cubic-bezier(.4, 0, .2, 1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.18), transparent 38%), linear-gradient(115deg, rgba(0,0,0,.12), transparent 50%, rgba(0,0,0,.1));
  pointer-events: none;
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 40;
  opacity: .18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1rem, 3vw, 3rem);
}

.brand, .header-links { display: flex; align-items: center; gap: .8rem; }

.brand {
  font-weight: 700;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.3rem;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: .72rem;
}

.header-links a {
  font-size: .83rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-link {
  padding: .75rem 1rem;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
}

.ghost-title {
  position: absolute;
  inset: 15% 0 auto;
  z-index: 1;
  display: flex;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}

.ghost-title span {
  font-family: "Bebas Neue Pro", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(5rem, 25vw, 23rem);
  line-height: .85;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,.2);
  transition: opacity 180ms ease, transform 400ms ease;
}

.carousel, .carousel-stage { position: absolute; inset: 0; }

.carousel-stage { z-index: 5; }

.carousel-item {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 91%;
  width: min(45vw, 620px);
  transform: translateX(-50%);
  transform-origin: bottom center;
  transition: transform 650ms cubic-bezier(.4,0,.2,1), left 650ms cubic-bezier(.4,0,.2,1), height 650ms cubic-bezier(.4,0,.2,1), opacity 650ms, filter 650ms;
  will-change: transform, left, height, opacity, filter;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  user-select: none;
  -webkit-user-drag: none;
}

.profile-copy {
  position: absolute;
  z-index: 55;
  left: clamp(1rem, 5vw, 6rem);
  bottom: clamp(7rem, 13vh, 9rem);
  width: min(25rem, 32vw);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.profile-copy::after {
  content: "";
  position: absolute;
  inset: -1.25rem;
  z-index: -1;
  border-radius: 1rem;
  background: rgba(255,255,255,0);
  transition: background-color 220ms ease, transform 220ms ease;
}

.profile-copy:hover::after { background: rgba(255,255,255,.08); transform: translateY(-.2rem); }

.eyebrow {
  margin: 0 0 .7rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .8;
}

.profile-copy h1 {
  margin: 0 0 .75rem;
  font-family: "Bebas Neue Pro", Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: var(--hero-leading);
  text-transform: uppercase;
  text-wrap: balance;
  white-space: pre-line;
}

.profile-description { margin: 0; max-width: 32ch; line-height: 1.55; opacity: .9; }

.profile-slogan {
  margin: 1rem 0 0;
  font-size: .75rem;
  line-height: 1.45;
  opacity: .75;
}

.carousel-controls {
  position: absolute;
  z-index: 60;
  left: clamp(1rem, 5vw, 6rem);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}

.round-button {
  display: grid;
  width: 3.3rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1.5px solid rgba(255,255,255,.85);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 150ms, transform 150ms;
}

.round-button:hover { background: rgba(255,255,255,.14); transform: scale(1.06); }
.round-button:focus-visible, .dot:focus-visible, a:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.round-button svg, .hero-footer svg { width: 1.4rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.dots { display: flex; gap: .35rem; margin-left: .4rem; }

.dot {
  width: .55rem;
  height: .55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: width 250ms, background 250ms;
}

.dot.active { width: 1.7rem; background: #fff; }

.hero-footer {
  position: absolute;
  z-index: 60;
  right: clamp(1rem, 3vw, 3rem);
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
  text-align: right;
}

.hero-footer p { margin: 0; font-size: .75rem; opacity: .75; }

.hero-footer .footer-legal {
  font-size: .67rem;
  letter-spacing: .02em;
  opacity: .82;
}

.hero-footer a {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-family: "Bebas Neue Pro", Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 3.3rem);
  text-transform: uppercase;
  text-decoration: none;
}

.profile-link-copy { display: flex; flex-direction: column; align-items: flex-end; line-height: var(--display-leading); }

.profile-link-copy small {
  margin-bottom: .35rem;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .8;
}

.profile-link-arrow {
  display: grid;
  width: 3.4rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 1.5px solid rgba(255,255,255,.85);
  border-radius: 50%;
  animation: profile-link-pulse 2.4s ease-in-out infinite;
}

.profile-link-arrow svg { animation: profile-link-nudge 1.35s ease-in-out infinite; }
.hero-footer a:hover .profile-link-arrow { background: #fff; color: #17151f; }

@keyframes profile-link-nudge {
  0%, 100% { transform: translateX(-.12rem); }
  50% { transform: translateX(.2rem); }
}

@keyframes profile-link-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.3); }
  50% { box-shadow: 0 0 0 .55rem rgba(255,255,255,0); }
}

@media (max-width: 760px) {
  .header-links a:first-child { display: none; }
  .site-header { padding-top: .9rem; }
  .carousel-item { width: 75vw; height: 68%; bottom: 16%; }
  .profile-copy { left: 1rem; bottom: 7.5rem; width: calc(100% - 2rem); }
  .profile-copy h1 { font-size: clamp(2.3rem, 12vw, 4rem); }
  .profile-description { font-size: .88rem; max-width: 28ch; }
  .ghost-title { top: 15%; }
  .ghost-title span { font-size: clamp(5rem, 31vw, 10rem); }
  .carousel-controls { left: 1rem; bottom: 1.1rem; }
  .hero-footer { right: 1rem; bottom: 5rem; }
  .hero-footer .footer-legal {
    display: block;
    max-width: 13rem;
    font-size: .62rem;
  }
  .hero-footer #profile-link { display: none; }
  .profile-link-arrow { width: 2.8rem; }
}

@media (max-height: 680px) and (min-width: 761px) {
  .profile-description { display: none; }
  .profile-copy { bottom: 6rem; }
  .carousel-item { height: 95%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Informace pod úvodním carouselem */

.content-shell {
  position: relative;
  z-index: 70;
  background: #f3efe6;
  color: #191720;
}

.section-inner {
  width: min(1180px, calc(100% - 2 * clamp(1rem, 4vw, 4rem)));
  margin-inline: auto;
}

.role-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  justify-content: center;
  min-height: 4rem;
  overflow-x: auto;
  background: rgba(23,21,31,.96);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
  scrollbar-width: none;
  backdrop-filter: blur(14px);
}

.role-nav::-webkit-scrollbar { display: none; }

.role-nav a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .45rem;
  min-height: 4rem;
  padding: 0 clamp(.8rem, 2vw, 1.5rem);
  border-left: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.role-nav a:last-child { border-right: 1px solid rgba(255,255,255,.08); }
.role-nav a:hover { background: rgba(255,255,255,.08); }
.role-nav a[aria-current="true"] { background: #fff; color: #17151f; }
.role-nav span { font-size: .65rem; opacity: .5; }

.content-intro {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: #f3efe6;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
  gap: 1.5rem 5rem;
  align-items: end;
}

.section-kicker,
.panel-label {
  margin: 0 0 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.intro-layout .section-kicker { grid-column: 1 / -1; }

.content-intro h2,
.section-header h2,
.contact-band h2 {
  margin: 0;
  font-family: "Bebas Neue Pro", Impact, sans-serif;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 700;
  line-height: var(--hero-leading);
  letter-spacing: -.02em;
  text-wrap: balance;
  text-transform: uppercase;
}

.intro-copy {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.intro-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 2rem;
}

.intro-links a,
.section-nav a {
  padding: .65rem .9rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.intro-links a:hover { background: #191720; color: #fff; }

.role-section {
  scroll-margin-top: 4rem;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-header h2 { max-width: none; }

.section-lead {
  max-width: 52ch;
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1.55;
}

.candidate-section {
  --section-accent: #ffe23f;
  background: #e84b79;
  color: #fff;
}

.candidate-section .section-header {
  display: grid;
  grid-template-columns: minmax(20rem, .9fr) minmax(22rem, 1.1fr);
  gap: 1rem clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.candidate-section .section-kicker { grid-column: 1 / -1; }
.candidate-section .section-header h2 { white-space: nowrap; }
.candidate-section .section-lead { margin: 0 0 .25rem; }

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

.reason-card {
  min-height: 15rem;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.09);
}

.reason-card > span,
.setup-grid article > span {
  display: inline-grid;
  width: 2.1rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .66rem;
  font-weight: 700;
}

.reason-card h3,
.record-card h3,
.subsection-header h3,
.social-block h3,
.other-role-card h3,
.program-copy h3 {
  margin: 3.5rem 0 .8rem;
  font-family: "Bebas Neue Pro", Impact, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.reason-card h3 {
  margin-top: 2.25rem;
  font-size: clamp(1.9rem, 2.8vw, 2.65rem);
  text-wrap: balance;
}

.reason-card p,
.record-card p,
.setup-grid p,
.other-role-card p {
  margin: 0;
  line-height: 1.55;
}

.program-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: 1rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  scroll-margin-top: 5rem;
  background: var(--section-accent);
  color: #1b1820;
}

.program-copy h3 {
  max-width: 12ch;
  margin-top: 0;
}

.program-copy > p:not(.panel-label) {
  max-width: 52ch;
  line-height: 1.6;
}

.program-method {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-method li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: .8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(27,24,32,.25);
}

.program-method li > span { font-size: .7rem; font-weight: 700; }
.program-method strong, .program-method small { display: block; }
.program-method strong { margin-bottom: .25rem; font-size: 1rem; }
.program-method small { line-height: 1.4; opacity: .7; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 2rem;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .75rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button-link--dark { background: #1b1820; color: #fff; }
.button-link:hover { transform: translateY(-2px); }

.text-link {
  font-weight: 700;
  text-underline-offset: .25rem;
}

.gamer-section {
  background: #1975c9;
  color: #fff;
}

.section-header--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .65fr);
  gap: 2rem 5rem;
  align-items: end;
}

.section-header--split .section-lead { margin: 0; }

.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: -2rem 0 2rem;
}

.section-nav a:hover { background: #fff; color: #1975c9; }

.record-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  scroll-margin-top: 5rem;
}

.record-card {
  min-height: 31rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  scroll-margin-top: 5rem;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(7,33,59,.26);
}

.record-card--primary { background: #ffb22e; color: #17151f; border-color: transparent; }
.record-card h3 { margin-top: 4.5rem; }

.status-badge {
  display: inline-flex;
  padding: .45rem .7rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.record-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 3rem 0 0;
  border-top: 1px solid rgba(23,21,31,.25);
}

.record-facts div { padding: 1rem .8rem 0 0; }
.record-facts dt { margin-bottom: .25rem; font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.record-facts dd { margin: 0; font-size: .88rem; }

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.rules-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .8rem;
  align-items: start;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.25);
  line-height: 1.4;
}

.rules-list span {
  display: grid;
  width: 1.7rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .65rem;
}

.setup-block,
.social-block {
  margin-top: 1rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  scroll-margin-top: 5rem;
  background: #f3efe6;
  color: #191720;
}

.subsection-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .6fr);
  gap: 0 4rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.subsection-header .panel-label { grid-column: 1 / -1; }
.subsection-header h3 { margin: 0; max-width: 11ch; }
.subsection-header > p:last-child { margin: 0; line-height: 1.55; }

.setup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(25,23,32,.22);
  border-left: 1px solid rgba(25,23,32,.22);
}

.setup-grid article {
  min-height: 16rem;
  padding: 1.35rem;
  border-right: 1px solid rgba(25,23,32,.22);
  border-bottom: 1px solid rgba(25,23,32,.22);
}

.setup-grid h4 {
  margin: 2.5rem 0 .6rem;
  font-family: "Bebas Neue Pro", Impact, sans-serif;
  font-size: 2rem;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.setup-grid small {
  display: block;
  margin-top: 1.5rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  opacity: .55;
  text-transform: uppercase;
}

.social-block {
  display: grid;
  grid-template-columns: minmax(14rem, .55fr) minmax(0, 1.45fr);
  gap: 3rem;
  background: #101d31;
  color: #fff;
}

.social-block h3 { margin: 0; }

.social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-link,
.social-links a {
  display: flex;
  min-height: 12rem;
  flex-direction: column;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.2);
  color: inherit;
  text-decoration: none;
}

.social-links a:hover { background: rgba(255,255,255,.09); }
.social-links span { margin-bottom: auto; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .65; }
.social-links strong { overflow-wrap: anywhere; }
.social-links small { margin-top: .45rem; opacity: .65; }
.social-link--pending { opacity: .55; }

.other-roles {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: #17151f;
  color: #fff;
}

.section-header--dark h2 { max-width: 12ch; }

.other-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.other-role-card {
  display: flex;
  min-height: 27rem;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  scroll-margin-top: 5rem;
}

.other-role-card > p:first-child {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
}

.other-role-card h3 { margin-top: auto; }
.other-role-card a { margin-top: 1.5rem; font-weight: 700; text-underline-offset: .25rem; }
.other-role-card--it { background: #5e4cbb; }
.other-role-card--fire { background: #d84a32; }
.other-role-card--aqua { background: #278f79; }

.role-directory {
  padding: 0 0 clamp(5rem, 9vw, 8rem);
  background: #17151f;
  color: #fff;
}

.role-directory-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.role-directory-card {
  position: relative;
  grid-column: span 4;
  min-height: clamp(25rem, 38vw, 34rem);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  text-decoration: none;
}

.role-directory-card--wide { grid-column: span 7; }
.role-directory-card--wide + .role-directory-card { grid-column: span 5; }
.role-directory-card--politika { background: #e84b79; }
.role-directory-card--it { background: #5e4cbb; }
.role-directory-card--fire { background: #d84a32; }
.role-directory-card--gamer { background: #1975c9; }
.role-directory-card--aqua { background: #278f79; }

.role-directory-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(11,10,16,.58) 0%, rgba(11,10,16,.2) 56%, transparent 78%);
}

.role-directory-card img {
  position: absolute;
  right: -8%;
  bottom: 0;
  z-index: -2;
  width: 68%;
  height: 96%;
  object-fit: contain;
  object-position: right bottom;
  transition: transform 350ms ease;
}

.role-directory-card:hover img { transform: scale(1.035); }

.role-directory-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(68%, 33rem);
  min-height: inherit;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.role-directory-copy p {
  margin: 0;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .78;
}

.role-directory-copy h2 {
  margin: auto 0 1rem;
  font-family: "Bebas Neue Pro", Impact, sans-serif;
  font-size: clamp(2.5rem, 3.8vw, 3.5rem);
  line-height: var(--hero-leading);
  text-transform: uppercase;
  text-wrap: balance;
}

@media (min-width: 901px) {
  .role-directory-card--it img { right: -14%; width: 60%; }
  .role-directory-card--it .role-directory-copy { width: 66%; }
}

.role-directory-copy span {
  max-width: 28ch;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.4;
}

.contact-band {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #ffe23f;
  color: #191720;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.contact-band h2 { max-width: 9ch; font-size: clamp(3.5rem, 7vw, 7rem); }

.contact-layout > a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-underline-offset: .3rem;
}

.contact-layout > a span { font-size: 2rem; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem clamp(1rem, 4vw, 4rem);
  background: #0f0e14;
  color: #fff;
}

.site-footer p { margin: 0; font-size: .72rem; opacity: .7; }

@media (max-width: 900px) {
  .intro-layout,
  .section-header--split,
  .subsection-header,
  .social-block,
  .contact-layout { grid-template-columns: 1fr; }

  .reason-grid,
  .other-role-grid { grid-template-columns: 1fr; }

  .candidate-section .section-header { grid-template-columns: 1fr; }
  .candidate-section .section-header h2 { white-space: normal; }
  .candidate-section .section-lead { margin-top: .5rem; }

  .reason-card { min-height: 14rem; }
  .other-role-card { min-height: 21rem; }
  .section-header--split .section-lead { margin-top: 0; }
  .subsection-header > p:last-child { margin-top: 1rem; }
  .setup-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .social-links { grid-template-columns: 1fr; }
  .social-link, .social-links a { min-height: 9rem; }
  .role-directory-card,
  .role-directory-card--wide,
  .role-directory-card--wide + .role-directory-card { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .header-info,
  .campaign-link { display: none; }

  .role-nav { justify-content: flex-start; }
  .role-nav a { min-height: 3.6rem; padding-inline: .85rem; }
  .content-intro { padding-block: 4.5rem; }
  .content-intro h2, .section-header h2 { font-size: clamp(2.9rem, 14vw, 4.75rem); }
  .intro-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intro-links a { text-align: center; }
  .role-section { padding-block: 3.5rem; }
  .program-panel { grid-template-columns: 1fr; }
  .record-grid { grid-template-columns: 1fr; }
  .record-card { min-height: auto; }
  .record-facts { grid-template-columns: 1fr; }
  .record-facts div { padding-bottom: .8rem; }
  .setup-grid { grid-template-columns: 1fr; }
  .setup-grid article { min-height: 13rem; }
  .role-directory-card,
  .role-directory-card--wide,
  .role-directory-card--wide + .role-directory-card { grid-column: 1 / -1; min-height: 25rem; }
  .role-directory-card img { right: -12%; width: 58%; }
  .role-directory-copy { width: 72%; }
  .role-directory-card--it img { right: -18%; width: 54%; }
  .role-directory-card--it .role-directory-copy { width: 68%; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}
