:root {
  --red: #f0141e;
  --red-dark: #bc1118;
  --ink: #111827;
  --navy: #182033;
  --slate: #475569;
  --muted: #e2e8f0;
  --soft: #f6f7fb;
  --blue: #91aad1;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(15, 23, 42, .16);
  --max: 1180px;
  font-family: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

main {
  display: flow-root;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 0;
  z-index: 200;
  transform: translateY(-120%);
  border-radius: 0 0 6px 6px;
  padding: 10px 14px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 32px);
  min-height: 132px;
  padding: 0 clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 28px);
  min-width: min(720px, 45vw);
  height: 132px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  flex: 0 0 132px;
}

.brand-mark img {
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.brand-wordmark {
  display: block;
  flex: 1 1 420px;
  max-width: 580px;
}

.brand-wordmark img {
  width: 100%;
  height: auto;
}

.site-search {
  width: min(280px, 22vw);
}

.site-search input[type="search"],
.site-search input[type="text"] {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(15, 23, 42, .14);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(8px, .7vw, 14px);
  min-width: 0;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.main-nav .mod-menu,
.main-nav ul.menu,
.main-nav ul.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(8px, 1vw, 18px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li {
  margin: 0;
  padding: 0;
}

.main-nav a,
.main-nav .mod-menu a {
  position: relative;
  display: block;
  padding: 10px 0;
  white-space: nowrap;
}

.main-nav a::after,
.main-nav .mod-menu a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  content: "";
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after,
.main-nav .active > a::after,
.main-nav .current > a::after {
  transform: scaleX(1);
}

.main-nav .nav-linkedin {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  padding: 0;
  background: #0a66c2;
  box-shadow: 0 12px 26px rgba(10, 102, 194, .22);
}

.main-nav .nav-linkedin::after {
  display: none;
}

.main-nav .nav-linkedin svg {
  width: 21px;
  height: 21px;
  fill: var(--white);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 999px;
  padding: 3px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.main-nav .language-switcher a {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 30px;
  border-radius: 999px;
  padding: 0 9px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.main-nav .language-switcher a::after {
  display: none;
}

.main-nav .language-switcher a.current-lang {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 680px;
  height: clamp(680px, calc(100vh - 92px), 860px);
  overflow: hidden;
  background: var(--ink);
}

.hero-slider {
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 100%;
  padding: clamp(40px, 7vw, 96px);
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  content: "";
}

.slide-network::before {
  background-image: url("../images/slide-network.svg");
}

.slide-events::before,
.slide-congress::before {
  background-image: url("../images/slide-events.svg");
}

.slide-impact::before {
  background-image: url("../images/slide-impact.svg");
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, .86) 0%, rgba(255, 255, 255, .68) 38%, rgba(255, 255, 255, .12) 70%);
  content: "";
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-copy {
  width: min(650px, 100%);
  padding-top: 36px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 78px);
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero p:not(.eyebrow) {
  width: min(560px, 100%);
  margin: 24px 0 0;
  color: #263449;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section-readmore {
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 800;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(240, 20, 30, .24);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-linkedin {
  background: #0a66c2;
  color: var(--white);
  box-shadow: 0 18px 36px rgba(10, 102, 194, .24);
}

.button-linkedin:hover {
  background: #004182;
}

.virtual-page-content .button-linkedin {
  color: var(--white);
}

.button-ghost {
  border-color: rgba(15, 23, 42, .18);
  background: rgba(255, 255, 255, .66);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.slider-controls {
  position: absolute;
  left: clamp(40px, 7vw, 96px);
  bottom: 34px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 44px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 24, 39, .28);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--red);
}

.news-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: -28px auto 0;
  position: relative;
  z-index: 8;
  border-radius: var(--radius);
  padding: 18px 22px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.news-ticker strong {
  color: var(--red);
  text-transform: uppercase;
}

.news-ticker span {
  color: #dbe4ef;
}

.news-ticker a {
  margin-left: auto;
  font-weight: 800;
}

.news-ticker .moduletable,
.news-ticker .moduletable > * {
  display: contents;
}

.breadcrumbs-zone {
  width: min(var(--max), calc(100% - 40px));
  margin: 28px auto 0;
  color: var(--slate);
  font-size: 14px;
}

.breadcrumbs-zone ol,
.breadcrumbs-zone ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 96px auto;
  scroll-margin-top: 112px;
}

.main-top,
.main-bottom,
.content-section {
  margin-top: 64px;
  margin-bottom: 64px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.has-sidebar-left .content-layout {
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
}

.has-sidebar-right .content-layout {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
}

.has-sidebar-left.has-sidebar-right .content-layout {
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr) minmax(180px, 230px);
}

.has-sidebar-left .sidebar-left {
  grid-column: 1;
}

.has-sidebar-left .content-main {
  grid-column: 2;
}

.has-sidebar-right:not(.has-sidebar-left) .content-main {
  grid-column: 1;
}

.has-sidebar-right:not(.has-sidebar-left) .sidebar-right {
  grid-column: 2;
}

.has-sidebar-left.has-sidebar-right .content-main {
  grid-column: 2;
}

.has-sidebar-left.has-sidebar-right .sidebar-right {
  grid-column: 3;
}

.content-main,
.sidebar {
  min-width: 0;
}

.content-main h1,
.content-main h2,
.content-main h3,
.content-main h4,
.content-main h5,
.content-main h6 {
  color: var(--ink);
  line-height: 1.08;
}

.content-main h1,
.page-header h1 {
  margin-top: 0;
  font-size: clamp(34px, 4.6vw, 64px);
}

.content-main a {
  color: var(--red);
  font-weight: 800;
}

.content-main p,
.content-main li {
  color: var(--slate);
  font-size: 17px;
}

.content-main img {
  border-radius: var(--radius);
}

.virtual-page {
  max-width: 980px;
}

.page-czlonkowie .virtual-page {
  max-width: 1120px;
}

.virtual-page-header {
  margin-bottom: 36px;
}

.virtual-page-header h1 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.04;
}

.back-link {
  color: var(--red);
  font-weight: 900;
}

.virtual-page-content {
  color: var(--slate);
  font-size: 18px;
}

.virtual-page-content p,
.virtual-page-content li {
  color: var(--slate);
  font-size: 18px;
}

.virtual-page-content a {
  color: var(--red);
  font-weight: 900;
}

.virtual-page-content img {
  border-radius: var(--radius);
}

.virtual-page-content::after {
  display: table;
  clear: both;
  content: "";
}

.virtual-page-content img[style*="float: right"],
.mba-article-media img {
  float: none !important;
  display: block;
  width: 100%;
  height: auto;
  margin: 28px auto 0 !important;
}

.mba-article-media {
  clear: both;
  width: min(100%, 1120px);
  margin: 28px auto 0;
}

.com-content-article img[style*="float: left"],
.item-page img[style*="float: left"],
.mba-map-lead {
  float: left;
  width: min(600px, 52%);
  margin: 7px 33px 18px 0;
}

.article-info,
.article-info-term,
.tags,
.pagination,
.pagenavigation {
  display: none;
}

.sidebar .moduletable,
.main-top .moduletable,
.main-bottom .moduletable {
  border-top: 3px solid var(--red);
  padding-top: 18px;
}

.custom-hero .moduletable {
  width: 100%;
}

.intro-grid,
.board-preview {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.section h2,
.contact-section h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.section-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--slate);
  font-size: 18px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.metrics div {
  border-top: 3px solid var(--red);
  padding-top: 12px;
}

.metrics strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.metrics span {
  color: var(--slate);
  font-size: 13px;
}

.map-panel {
  border-radius: var(--radius);
  background: radial-gradient(circle at 25% 20%, rgba(240, 20, 30, .18), transparent 34%), #f4f7fb;
  padding: clamp(20px, 3vw, 42px);
  box-shadow: var(--shadow);
}

.members-home {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, 1.12fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 62px);
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 20, 30, .1), transparent 34%),
    linear-gradient(135deg, #fff, #f5f7fb);
  box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
}

.members-home-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 18px;
}

.members-home-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.members-home-logos a {
  display: grid;
  place-items: center;
  min-height: 112px;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.members-home-logos a.member-logo-dark {
  border-color: #303030;
  background: #303030;
}

.members-home-logos img {
  width: 100%;
  max-width: 168px;
  max-height: 86px;
  object-fit: contain;
}

.members-home-logos a.member-logo-wide img {
  max-width: 190px;
  max-height: 64px;
}

.members-home-logos a.member-logo-stacked img {
  max-width: 150px;
  max-height: 94px;
}

.members-home-logos a.member-logo-square img {
  max-width: 92px;
  max-height: 92px;
}

.members-home-logos span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.feature-band {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 64px);
  background: var(--navy);
  color: var(--white);
}

.feature-band h2 {
  color: var(--white);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding-bottom: 18px;
}

.feature-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  font-weight: 900;
}

.feature-list h3,
.feature-list p {
  margin: 0;
}

.feature-list p {
  color: #cbd5e1;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading a {
  color: var(--red);
  font-weight: 800;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.news-card {
  min-height: 240px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--soft);
}

.news-card-large {
  grid-row: span 2;
  min-height: 498px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(0deg, rgba(17, 24, 39, .94), rgba(17, 24, 39, .28)),
    url("../images/slide-events.svg") center/cover;
  color: var(--white);
}

.news-card h3 {
  margin: 12px 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.06;
}

.news-card:not(.news-card-large) h3 {
  font-size: 25px;
}

.news-card p {
  color: inherit;
  opacity: .76;
}

.news-card a {
  color: var(--red);
  font-weight: 900;
}

.news-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(240, 20, 30, .08), transparent 46%),
    var(--soft);
}

.news-page-intro p:last-child {
  max-width: 68ch;
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 18px;
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-list-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 23, 42, .07);
}

.news-list-meta {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.news-list-meta time {
  color: var(--slate);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.news-list-body h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.news-list-body p {
  max-width: 72ch;
  margin: 0 0 18px;
}

.news-list-body a {
  color: var(--red);
  font-weight: 900;
}

.members-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(240, 20, 30, .08), transparent 46%),
    var(--soft);
}

.members-page-intro p:last-child {
  max-width: 74ch;
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 18px;
}

.members-page-intro strong {
  display: grid;
  place-items: center;
  min-height: 86px;
  border-left: 3px solid var(--red);
  padding-left: 24px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

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

.member-card {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  min-height: 218px;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 23, 42, .07);
}

.member-logo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 158px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 18%, rgba(240, 20, 30, .08), transparent 34%),
    linear-gradient(135deg, var(--white), #f7f9fc);
}

.member-logo::before {
  position: absolute;
  width: 94px;
  height: 94px;
  border: 12px dotted rgba(17, 24, 39, .22);
  border-radius: 50%;
  content: "";
}

.member-logo-image::before {
  display: none;
}

.member-logo-clean {
  background: var(--white);
}

.member-logo-dark {
  border-color: #303030;
  background: #303030;
}

.member-logo img {
  position: relative;
  z-index: 1;
  width: min(218px, 88%);
  max-height: 128px;
  object-fit: contain;
}

.member-logo-wide img {
  width: min(228px, 90%);
  max-height: 112px;
}

.member-logo-stacked img {
  width: min(208px, 86%);
  max-height: 138px;
}

.member-logo-square img {
  width: min(132px, 82%);
  max-height: 132px;
}

.member-logo span {
  position: relative;
  z-index: 1;
  max-width: 112px;
  border-bottom: 3px solid var(--red);
  padding-bottom: 5px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.member-city {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.member-card h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.08;
}

.member-card p:not(.member-city) {
  margin: 0 0 18px;
  color: var(--slate);
  font-size: 17px;
}

.member-card a {
  color: var(--red);
  font-weight: 900;
}

.tag {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.document-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(240, 20, 30, .08), transparent 45%),
    var(--white);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .08);
  scroll-margin-top: 112px;
}

.document-card h3 {
  margin: 16px 0 14px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.06;
}

.document-card p {
  max-width: 56ch;
  margin: 0;
  color: var(--slate);
  font-size: 17px;
}

.document-card .button {
  margin-top: auto;
}

.board-preview {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, .9fr);
}

.board-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.join-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 64px);
  background:
    radial-gradient(circle at 10% 0, rgba(240, 20, 30, .28), transparent 32%),
    linear-gradient(135deg, #111827, #263449);
  color: var(--white);
}

.join-section h2 {
  color: var(--white);
}

.slim-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(15, 23, 42, .12);
}

.slim-links a {
  min-height: 92px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.slim-links a:hover {
  background: var(--red);
  color: var(--white);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: clamp(28px, 6vw, 72px);
  width: 100%;
  margin: 96px auto 0;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 6vw, calc((100vw - var(--max)) / 2 + 64px));
  background:
    linear-gradient(135deg, rgba(240, 20, 30, .18), transparent 34%),
    linear-gradient(135deg, #101827, #263449);
  color: var(--white);
}

.contact-section p {
  max-width: 58ch;
  color: #d8e1ef;
}

.contact-section h2 {
  color: var(--white);
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-content: center;
}

.contact-card,
.company-details {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
}

.contact-card {
  display: grid;
  gap: 8px;
}

.contact-card span {
  color: #aebbd0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--white);
  font-size: 22px;
  line-height: 1.35;
}

.contact-card a {
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
}

.company-details {
  display: grid;
  gap: 8px;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-details div {
  display: block;
}

.company-details dt {
  margin: 0;
  color: #aebbd0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.company-details dd {
  margin: 6px 0 0;
  color: var(--white);
  font-weight: 900;
}

.site-footer {
  clear: both;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 28px clamp(20px, 4vw, 64px);
  background: var(--ink);
  color: #dbe4ef;
  font-size: 13px;
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-credit {
  margin-left: auto;
}

.component-view {
  padding: 24px 0;
}

.component-shell {
  margin-top: 0;
}

.error-view {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--soft);
}

.error-shell {
  width: min(100%, 920px);
}

.error-brand {
  display: block;
  width: min(420px, 100%);
  margin: 0 auto 28px;
}

.error-panel {
  border-radius: var(--radius);
  padding: clamp(28px, 6vw, 70px);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.error-code {
  margin: 0 0 10px;
  color: var(--red);
  font-size: clamp(52px, 10vw, 110px);
  font-weight: 900;
  line-height: 1;
}

.error-panel h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5vw, 56px);
}

input,
select,
textarea {
  max-width: 100%;
  border: 1px solid rgba(15, 23, 42, .16);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 140px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid rgba(15, 23, 42, .12);
  padding: 10px;
  text-align: left;
}

.alert {
  width: min(var(--max), calc(100% - 40px));
  margin: 24px auto;
  border-left: 4px solid var(--red);
  border-radius: 6px;
  padding: 14px 16px;
  background: var(--soft);
}

@media (max-width: 1760px) {
  .site-header {
    padding-right: 112px;
  }

  .menu-toggle {
    position: fixed;
    top: 44px;
    right: 24px;
    transform: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 6px;
    background: var(--white);
    padding: 10px 12px;
    color: var(--ink);
    font-weight: 800;
    z-index: 70;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    content: "";
  }

  .menu-toggle span {
    position: relative;
  }

  .menu-toggle span::before,
  .menu-toggle span::after {
    position: absolute;
    left: 0;
  }

  .menu-toggle span::before {
    top: -6px;
  }

  .menu-toggle span::after {
    top: 6px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 24px;
    left: 24px;
    display: none;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 8px;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    justify-content: stretch;
  }

  .main-nav .mod-menu,
  .main-nav ul.menu,
  .main-nav ul.nav {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }

  .main-nav a,
  .main-nav .mod-menu a {
    padding: 12px 0;
  }

  .main-nav .nav-linkedin {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-self: start;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 118px;
    padding-right: 76px;
  }

  .brand {
    min-width: 0;
    height: 118px;
  }

  .brand-mark,
  .brand-mark img {
    width: 96px;
    height: 96px;
  }

  .brand-mark {
    flex-basis: 96px;
  }

  .brand-wordmark {
    max-width: 420px;
  }

  .menu-toggle {
    top: 26px;
    right: 20px;
    z-index: 70;
  }

  .intro-grid,
  .members-home,
  .feature-band,
  .board-preview,
  .join-section,
  .contact-section,
  .document-grid,
  .news-grid,
  .news-page-intro,
  .news-list-item,
  .members-page-intro,
  .members-grid,
  .member-card,
  .has-sidebar-left .content-layout,
  .has-sidebar-right .content-layout,
  .has-sidebar-left.has-sidebar-right .content-layout {
    grid-template-columns: 1fr;
  }

  .has-sidebar-left .sidebar-left,
  .has-sidebar-left .content-main,
  .has-sidebar-right:not(.has-sidebar-left) .content-main,
  .has-sidebar-right:not(.has-sidebar-left) .sidebar-right,
  .has-sidebar-left.has-sidebar-right .content-main,
  .has-sidebar-left.has-sidebar-right .sidebar-right {
    grid-column: auto;
  }

  .news-card-large {
    min-height: 420px;
  }

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

  .company-details {
    grid-template-columns: 1fr;
  }

  .members-page-intro strong {
    justify-content: start;
    min-height: auto;
    border-left: 0;
    border-top: 3px solid var(--red);
    padding: 16px 0 0;
  }

  .member-logo {
    min-height: 126px;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    min-height: 86px;
    padding: 12px 68px 12px 16px;
  }

  .brand {
    gap: 10px;
    height: 62px;
  }

  .brand-mark,
  .brand-mark img {
    width: 62px;
    height: 62px;
  }

  .brand-mark {
    flex-basis: 62px;
  }

  .brand-wordmark {
    max-width: min(270px, calc(100vw - 156px));
  }

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

  .menu-toggle {
    position: fixed;
    top: 17px;
    right: 16px;
    transform: none;
    width: 44px;
    height: 40px;
    justify-content: center;
    gap: 0;
    padding: 0;
    overflow: hidden;
    font-size: 0;
    z-index: 2;
  }

  .hero,
  .hero-slider,
  .hero-slide {
    min-height: 720px;
  }

  .hero-slide {
    padding: 34px 20px 86px;
  }

  .hero-copy {
    width: 100%;
    max-width: min(340px, calc(100vw - 40px));
  }

  .hero-slide::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .76) 54%, rgba(255, 255, 255, .26) 100%);
  }

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

  .hero p:not(.eyebrow) {
    font-size: 18px;
    max-width: min(330px, 100%);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 260px;
  }

  .com-content-article img[style*="float: left"],
  .item-page img[style*="float: left"],
  .mba-map-lead {
    float: none;
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }

  .news-ticker {
    display: grid;
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .news-ticker a {
    margin-left: 0;
    overflow-wrap: anywhere;
  }

  .section {
    width: calc(100% - 32px);
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .contact-section {
    width: 100%;
    margin-top: 64px;
    margin-bottom: 0;
    padding: 44px 16px;
  }

  .metrics,
  .slim-links,
  .company-details {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .footer-credit {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .hero-slide {
    transition: none !important;
  }
}



.nav-dropdown {
  position: relative;
  display: block;
}

.nav-dropdown-toggle span {
  display: inline-block;
  margin-left: 4px;
  color: var(--red);
  font-size: .9em;
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% - 2px);
  z-index: 80;
  display: grid;
  min-width: 228px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
}

.main-nav .nav-dropdown-menu a::after {
  display: none;
}

.main-nav .nav-dropdown-menu a:hover,
.main-nav .nav-dropdown-menu a:focus,
.main-nav .nav-dropdown-menu a.current {
  background: var(--soft);
  color: var(--red);
}

.congress-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-top: clamp(48px, 8vw, 96px);
}

.congress-hero-copy h1 {
  max-width: 900px;
  margin: 0 0 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 900;
}

.congress-hero-copy h1 em {
  color: #a68a3c;
  font-style: normal;
  font-weight: 900;
}

.congress-lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--slate);
  font-size: clamp(18px, 2vw, 22px);
}

.congress-actions,
.congress-mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.congress-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.congress-fact {
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.congress-fact span {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.congress-fact strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.congress-poster-link {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: var(--ink);
  box-shadow: 0 28px 90px rgba(15, 23, 42, .26);
}

.congress-poster-link img {
  width: 100%;
  transition: transform .22s ease, opacity .22s ease;
}

.congress-poster-link:hover img,
.congress-poster-link:focus img {
  transform: scale(1.015);
  opacity: .96;
}

.congress-highlight {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  border-top: 1px solid rgba(15, 23, 42, .1);
  border-bottom: 1px solid rgba(15, 23, 42, .1);
}

.congress-highlight-box {
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(240, 20, 30, .1), transparent 48%),
    var(--soft);
}

.congress-highlight-box h2,
.congress-section h2 {
  margin-top: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -.025em;
  font-weight: 900;
}

.congress-highlight-box p,
.congress-section p {
  color: var(--slate);
  font-size: 18px;
}

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

.congress-feature {
  min-height: 230px;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 23, 42, .07);
}

.congress-feature .feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--ink);
  color: #d5ad4b;
  font-weight: 900;
}

.congress-feature h3 {
  margin: 0 0 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.015em;
}

.congress-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  border: 1px solid rgba(15, 23, 42, .1);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 20, 30, .08), transparent 34%),
    linear-gradient(135deg, rgba(145, 170, 209, .18), rgba(255, 255, 255, .72) 48%, rgba(246, 247, 251, .95)),
    var(--soft);
  color: var(--ink);
  box-shadow: 0 18px 52px rgba(15, 23, 42, .08);
}

.congress-cta-copy {
  max-width: 760px;
}

.congress-cta-band .eyebrow {
  margin-bottom: 12px;
}

.congress-cta-band p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 18px;
}

.congress-cta-band h2 {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -.025em;
}

.button-gold {
  background: #d5ad4b;
  color: #111827;
}

@media (max-width: 1760px) {
  .nav-dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0 0 8px 10px;
    padding: 0 0 0 12px;
    border: 0;
    border-left: 2px solid rgba(240, 20, 30, .18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav .nav-dropdown-menu a {
    padding: 8px 0;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .congress-hero,
  .congress-highlight,
  .congress-cta-band {
    grid-template-columns: 1fr;
  }

  .congress-facts,
  .congress-feature-grid {
    grid-template-columns: 1fr;
  }

  .congress-poster-link {
    max-width: 520px;
    margin: 0 auto;
  }
}



.slide-congress-2026::before {
  background-image: url("../images/slide-congress-mba-2026.svg");
}

.hero-slide.slide-congress-2026::after {
  background: linear-gradient(90deg, rgba(7, 14, 30, .92) 0%, rgba(7, 14, 30, .76) 42%, rgba(7, 14, 30, .22) 78%);
}

.slide-congress-2026 .eyebrow {
  color: #d5ad4b;
}

.slide-congress-2026 h1,
.slide-congress-2026 p:not(.eyebrow) {
  color: var(--white);
  text-shadow: 0 18px 34px rgba(0, 0, 0, .28);
}

.slide-congress-2026 .button-ghost {
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .1);
  color: var(--white);
}

.is-home .news-section {
  margin-top: 64px;
}

.slider-dot[aria-current="true"] {
  background: var(--red);
}

@media (max-width: 760px) {
  .is-home .news-section {
    margin-top: 44px;
  }
}



.hero-slide.slide-congress-2026::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, .93) 0%, rgba(255, 255, 255, .68) 42%, rgba(255, 255, 255, .06) 76%);
}

.slide-congress-2026 .eyebrow {
  color: var(--red);
}

.slide-congress-2026 h1,
.slide-congress-2026 p:not(.eyebrow) {
  color: var(--ink);
  text-shadow: none;
}

.slide-congress-2026 p:not(.eyebrow) {
  color: #263449;
}

.slide-congress-2026 .button-ghost {
  border-color: rgba(15, 23, 42, .18);
  background: rgba(255, 255, 255, .66);
  color: var(--ink);
}


.modern-subpage-hero,
.modern-section,
.document-modern-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.modern-subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  margin-top: clamp(44px, 6vw, 82px);
  margin-bottom: clamp(34px, 5vw, 68px);
}

.subpage-hero-copy,
.subpage-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.subpage-hero-copy {
  min-height: 430px;
  padding: clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 88% 16%, rgba(240, 20, 30, .28), transparent 36%),
    linear-gradient(135deg, #111827 0%, #182033 58%, #25324a 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.subpage-hero-copy::after {
  position: absolute;
  right: -72px;
  bottom: -84px;
  z-index: 0;
  color: rgba(255, 255, 255, .045);
  content: "MBA";
  font-size: clamp(160px, 18vw, 310px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
}

.subpage-hero-copy > * {
  position: relative;
  z-index: 1;
}

.subpage-hero-copy .back-link {
  display: inline-flex;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .86);
}

.subpage-hero-copy h1 {
  max-width: 900px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(40px, 6.2vw, 78px);
  line-height: .98;
  letter-spacing: -.04em;
}

.subpage-hero-copy .eyebrow {
  color: #ffb9bd;
}

.subpage-lead {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 2vw, 22px);
}

.subpage-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  border: 1px solid rgba(15, 23, 42, .1);
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(240, 20, 30, .12), transparent 42%),
    var(--soft);
  box-shadow: 0 22px 70px rgba(15, 23, 42, .12);
}

.subpage-hero-card::before {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 86px;
  height: 86px;
  border: 18px solid rgba(240, 20, 30, .14);
  border-radius: 50%;
  content: "";
}

.subpage-hero-card span,
.modern-card-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.subpage-hero-card strong {
  display: block;
  margin: 14px 0;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.02;
}

.subpage-hero-card p {
  margin: 0;
  color: var(--slate);
  font-size: 18px;
}

.modern-section {
  margin-top: 0;
  margin-bottom: clamp(54px, 7vw, 96px);
}

.modern-section-head {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: end;
  margin-bottom: 28px;
}

.modern-section-head h2,
.document-modern-head h2,
.letter-body-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.04em;
}

.modern-section-head p {
  margin: 0;
  color: var(--slate);
  font-size: 18px;
}

.value-grid,
.modern-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card,
.modern-info-card {
  min-height: 260px;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(15, 23, 42, .07);
}

.value-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.value-card h3,
.modern-info-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.06;
}

.value-card p,
.modern-info-card p {
  margin: 0;
  color: var(--slate);
  font-size: 17px;
}

.subpage-feature-band {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 62px);
  background: var(--navy);
  color: var(--white);
}

.subpage-feature-band h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1;
}

.subpage-feature-band p {
  color: rgba(255, 255, 255, .72);
}

.subpage-feature-list {
  display: grid;
  gap: 16px;
}

.subpage-feature-list article {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding-bottom: 18px;
}

.subpage-feature-list h3,
.subpage-feature-list p {
  margin: 0;
}

.subpage-feature-list h3 {
  color: var(--white);
  font-size: 24px;
}

.document-modern-shell {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  margin-top: 0;
  margin-bottom: clamp(54px, 7vw, 96px);
}

.document-modern-side {
  position: sticky;
  top: 150px;
  align-self: start;
  display: grid;
  gap: 16px;
}

.document-modern-card,
.document-modern-content,
.letter-body-card,
.letter-summary-card {
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .08);
}

.document-modern-card {
  padding: 24px;
}

.document-modern-card h3 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.08;
}

.document-modern-card p,
.document-modern-card a {
  color: var(--slate);
  font-size: 15px;
}

.document-modern-card a {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

.document-modern-content,
.letter-body-card {
  padding: clamp(28px, 5vw, 64px);
}

.statute-title {
  margin: 0 0 34px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.statute-chapter {
  margin: 46px 0 8px;
  border-top: 3px solid var(--red);
  padding-top: 24px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.statute-chapter-title {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
}

.statute-paragraph-marker {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: 22px;
}

.document-modern-content p {
  margin: 0 0 12px;
  color: var(--slate);
  font-size: 17px;
}

.document-modern-content .statute-point {
  position: relative;
  padding-left: 18px;
}

.document-modern-content .statute-point::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "•";
  font-weight: 900;
}

.letter-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 4vw, 48px);
}

.letter-summary-card {
  position: sticky;
  top: 150px;
  align-self: start;
  padding: clamp(26px, 4vw, 40px);
  background:
    radial-gradient(circle at 92% 8%, rgba(240, 20, 30, .2), transparent 36%),
    var(--navy);
  color: var(--white);
}

.letter-summary-card h2 {
  margin: 12px 0 18px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.letter-summary-card p {
  color: rgba(255, 255, 255, .76);
}

.letter-meta-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.letter-meta-list div {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, .06);
}

.letter-meta-list span {
  display: block;
  margin-bottom: 4px;
  color: #ffb9bd;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.letter-meta-list strong {
  color: var(--white);
}

.letter-body-card h2 {
  margin-bottom: 24px;
}

.letter-body-card p {
  margin: 0 0 18px;
  color: var(--slate);
  font-size: 18px;
}

.letter-body-card .letter-salutation {
  color: var(--ink);
  font-weight: 900;
}

.letter-signature {
  margin-top: 34px;
  border-top: 1px solid rgba(15, 23, 42, .1);
  padding-top: 24px;
}

.letter-signature strong {
  display: block;
  color: var(--ink);
}

.modern-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

@media (max-width: 980px) {
  .modern-subpage-hero,
  .modern-section-head,
  .subpage-feature-band,
  .document-modern-shell,
  .letter-layout {
    grid-template-columns: 1fr;
  }

  .document-modern-side,
  .letter-summary-card {
    position: static;
  }

  .value-grid,
  .modern-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .subpage-hero-copy,
  .subpage-hero-card {
    min-height: 0;
  }

  .subpage-hero-copy h1 {
    font-size: clamp(34px, 12vw, 52px);
  }
}



.hero-slide {
  z-index: 0;
  pointer-events: none;
  will-change: opacity;
}

.hero-slide.is-active {
  z-index: 2;
  pointer-events: auto;
}

.hero-slide.slide-congress-2026::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, .93) 0%, rgba(255, 255, 255, .68) 42%, rgba(255, 255, 255, .06) 76%) !important;
}

.slide-congress-2026 .eyebrow {
  color: var(--red) !important;
}

.slide-congress-2026 h1,
.slide-congress-2026 p:not(.eyebrow) {
  color: var(--ink) !important;
  text-shadow: none !important;
}

.slide-congress-2026 p:not(.eyebrow) {
  color: #263449 !important;
}

.slide-congress-2026 .button-ghost {
  border-color: rgba(15, 23, 42, .18) !important;
  background: rgba(255, 255, 255, .72) !important;
  color: var(--ink) !important;
}

.page-misja-i-wartosci .modern-subpage-hero,
.page-statut .modern-subpage-hero,
.page-list-otwarty .modern-subpage-hero {
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: clamp(30px, 4.5vw, 60px);
  margin-bottom: clamp(30px, 4.5vw, 56px);
}

.page-misja-i-wartosci .subpage-hero-copy,
.page-statut .subpage-hero-copy,
.page-list-otwarty .subpage-hero-copy {
  min-height: 0;
  border: 1px solid rgba(15, 23, 42, .08);
  padding: clamp(30px, 4.5vw, 56px);
  background:
    radial-gradient(circle at 92% 10%, rgba(240, 20, 30, .11), transparent 22%),
    linear-gradient(135deg, rgba(240, 20, 30, .075), rgba(255, 255, 255, .52) 40%),
    var(--soft);
  color: var(--ink);
  box-shadow: 0 22px 70px rgba(15, 23, 42, .10);
}

.page-misja-i-wartosci .subpage-hero-copy::after,
.page-statut .subpage-hero-copy::after,
.page-list-otwarty .subpage-hero-copy::after {
  right: clamp(10px, 4vw, 52px);
  bottom: -38px;
  color: rgba(17, 24, 39, .04);
  font-size: clamp(120px, 18vw, 230px);
}

.page-misja-i-wartosci .subpage-hero-copy .back-link,
.page-statut .subpage-hero-copy .back-link,
.page-list-otwarty .subpage-hero-copy .back-link {
  margin-bottom: clamp(22px, 3vw, 34px);
  color: var(--slate);
}

.page-misja-i-wartosci .subpage-hero-copy .eyebrow,
.page-statut .subpage-hero-copy .eyebrow,
.page-list-otwarty .subpage-hero-copy .eyebrow {
  color: var(--red);
}

.page-misja-i-wartosci .subpage-hero-copy h1,
.page-statut .subpage-hero-copy h1,
.page-list-otwarty .subpage-hero-copy h1 {
  max-width: 980px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.page-misja-i-wartosci .subpage-lead,
.page-statut .subpage-lead,
.page-list-otwarty .subpage-lead {
  max-width: 850px;
  color: #334155;
  font-size: clamp(17px, 1.7vw, 21px);
}

.page-misja-i-wartosci .subpage-hero-card,
.page-statut .subpage-hero-card,
.page-list-otwarty .subpage-hero-card {
  display: block;
  min-height: 0;
  border: 1px solid rgba(15, 23, 42, .08);
  padding: clamp(28px, 3.6vw, 44px);
  background:
    linear-gradient(135deg, rgba(240, 20, 30, .085), transparent 44%),
    var(--soft);
  box-shadow: 0 18px 56px rgba(15, 23, 42, .08);
}

.page-misja-i-wartosci .subpage-hero-card::before,
.page-statut .subpage-hero-card::before,
.page-list-otwarty .subpage-hero-card::before {
  top: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-width: 14px;
  opacity: .82;
}

.page-misja-i-wartosci .subpage-hero-card strong,
.page-statut .subpage-hero-card strong,
.page-list-otwarty .subpage-hero-card strong {
  max-width: 760px;
  margin: 12px 0 10px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.08;
}

.page-misja-i-wartosci .subpage-hero-card p,
.page-statut .subpage-hero-card p,
.page-list-otwarty .subpage-hero-card p {
  max-width: 780px;
  color: var(--slate);
}

@media (max-width: 760px) {
  .page-misja-i-wartosci .subpage-hero-copy,
  .page-statut .subpage-hero-copy,
  .page-list-otwarty .subpage-hero-copy,
  .page-misja-i-wartosci .subpage-hero-card,
  .page-statut .subpage-hero-card,
  .page-list-otwarty .subpage-hero-card {
    padding: 28px 22px;
  }

  .page-misja-i-wartosci .subpage-hero-copy h1,
  .page-statut .subpage-hero-copy h1,
  .page-list-otwarty .subpage-hero-copy h1 {
    font-size: clamp(30px, 10vw, 44px);
  }
}

.hero h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 78px);
  line-height: .98;
}
.hero-slide {
  transform: translateX(5%);
  transition: opacity .8s ease, transform .8s ease, visibility 0s linear .8s;
}
.hero-slide.is-active {
  transform: translateX(0);
  transition: opacity .8s ease, transform .8s ease, visibility 0s linear 0s;
}
.hero-slide.is-exiting {
  transform: translateX(-5%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide.is-active,
  .hero-slide.is-exiting {
    transform: none;
    transition: opacity .2s linear, visibility 0s linear .2s;
  }
}
