:root {
  --sport-ink: #071b2e;
  --sport-navy: #0a2740;
  --sport-blue: #2457e6;
  --sport-cyan: #37d7d0;
  --sport-mint: #a8f1dd;
  --sport-cloud: #f3f7fa;
  --sport-line: #dce6ed;
  --sport-muted: #597083;
  --sport-white: #ffffff;
  --sport-shadow: 0 24px 70px rgba(7, 27, 46, 0.12);
  --sport-radius: 1.25rem;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sport-cloud);
  color: var(--sport-ink);
  font-family: "Public Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: #1747cc;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #092f9d;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Public Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:focus-visible {
  outline: 3px solid var(--sport-cyan) !important;
  outline-offset: 4px;
  box-shadow: none !important;
}

/* Navigation */
#topbar {
  align-items: center;
  min-height: 76px;
  padding: 0.75rem clamp(1rem, 3vw, 3rem) !important;
  background: var(--sport-navy) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(7, 27, 46, 0.18);
  backdrop-filter: blur(16px);
}

#topbar::before {
  content: "SPORT / THESAURUS";
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding-left: 3.25rem;
  background: linear-gradient(135deg, var(--sport-blue), var(--sport-cyan));
  background-clip: text;
  color: transparent;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

#topbar::after {
  content: "ST";
  position: absolute;
  left: clamp(1rem, 3vw, 3rem);
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--sport-ink);
  color: var(--sport-white);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  transform: rotate(-4deg);
}

#global-search-toggle,
#topbar-nav a {
  border: 0;
  background: transparent;
  color: var(--sport-white) !important;
  font-size: 0.88rem !important;
  font-weight: 650;
}

#global-search-toggle {
  margin-left: 1.5rem;
}

#topbar-nav a {
  position: relative;
  padding: 0.65rem 0.15rem;
}

#topbar-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 2px;
  background: var(--sport-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

#topbar-nav a:hover::after,
#topbar-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

#topbar-nav .language a {
  display: inline-flex;
  min-width: 44px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(55, 215, 208, 0.45);
  border-radius: 999px;
  color: var(--sport-cyan) !important;
  font-size: 0.7rem !important;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#topbar-nav .language a::after {
  display: none;
}

#topbar-nav .language a:hover {
  background: var(--sport-cyan);
  color: var(--sport-ink) !important;
}

#skosmos-logo-top {
  display: none;
}

.frontpage-logo #global-search-toggle {
  display: none;
}

#global-search-bar {
  margin-top: 0 !important;
  padding: 1.5rem clamp(1rem, 5vw, 5rem) !important;
  background: var(--sport-ink);
  color: var(--sport-white);
}

#global-search-bar h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 750;
}

#global-search-text {
  flex: 0 1 24rem;
  min-width: 0;
  overflow: visible;
}

#global-search-wrapper {
  min-width: 0;
}

#global-search-wrapper #search-wrapper {
  align-items: stretch;
}

#global-search-wrapper .btn,
#global-search-wrapper .form-control {
  min-height: 3.1rem;
}

#headerbar {
  padding: 0.85rem clamp(1rem, 5vw, 5rem) !important;
  background: var(--sport-white);
  border-bottom: 1px solid var(--sport-line);
}

#headerbar > .row {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

#vocab-title a {
  color: var(--sport-ink);
}

.frontpage-logo #headerbar {
  display: none;
}

/* Landing page */
#main-container.landing {
  overflow: hidden;
  padding-bottom: 0 !important;
  background: var(--sport-white);
}

.landing > .container {
  max-width: none;
  padding: 0;
}

.landing #main-container-row {
  margin: 0;
}

.landing #landing-top-slot,
.landing #landing-bottom-slot {
  width: 100%;
  padding: 0;
}

.landing #landing-start-slot,
.landing #landing-end-slot {
  display: none !important;
}

.sport-home {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  min-height: min(780px, calc(100vh - 76px));
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    var(--sport-ink);
  background-size: 46px 46px;
  color: var(--sport-white);
}

.sport-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(7,27,46,0) 54%, rgba(55,215,208,0.08));
  pointer-events: none;
}

.sport-home__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.sport-home__glow--one {
  top: -22rem;
  left: -18rem;
  width: 48rem;
  height: 48rem;
  background: radial-gradient(circle, rgba(36,87,230,0.42), rgba(36,87,230,0) 68%);
}

.sport-home__glow--two {
  right: -14rem;
  bottom: -22rem;
  width: 46rem;
  height: 46rem;
  background: radial-gradient(circle, rgba(55,215,208,0.25), rgba(55,215,208,0) 68%);
}

.sport-home__intro {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 3.8vw, 5rem);
}

.sport-home__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: var(--sport-mint);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sport-home__eyebrow span {
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.sport-home h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.6rem, 6.3vw, 7.4rem);
  font-family: "Public Sans", system-ui, sans-serif;
  font-weight: 850;
  letter-spacing: -0.072em;
  line-height: 0.88;
}

.sport-home h1 em {
  color: var(--sport-cyan);
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 500;
}

.sport-home__lead {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: #c8d7e2;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.75;
}

.sport-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.sport-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3.5rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.sport-button:hover {
  transform: translateY(-2px);
}

.sport-button--primary,
.sport-button--primary:hover {
  background: var(--sport-cyan);
  color: var(--sport-ink);
}

.sport-button--quiet {
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.05);
  color: var(--sport-white);
}

.sport-button--quiet:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
}

.sport-home__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 35rem;
  margin: clamp(2.8rem, 6vh, 5rem) 0 0;
}

.sport-home__facts div {
  padding: 0 1.15rem;
  border-left: 1px solid rgba(255,255,255,0.18);
}

.sport-home__facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.sport-home__facts dt {
  color: var(--sport-white);
  font-size: 1.1rem;
  font-weight: 800;
}

.sport-home__facts dd {
  margin: 0.2rem 0 0;
  color: #8fa8b9;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sport-home__atlas {
  position: relative;
  z-index: 2;
  min-height: 700px;
  margin: 2.25rem 2.25rem 2.25rem 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 30px 80px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

.sport-home__atlas::before {
  content: "";
  position: absolute;
  inset: 8% 11%;
  border: 1px solid rgba(55,215,208,0.12);
  border-radius: 50%;
  transform: rotate(-11deg);
}

.sport-home__atlas-heading {
  position: absolute;
  z-index: 4;
  top: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
}

.sport-home__atlas-heading span {
  color: #8fa8b9;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sport-home__atlas-heading strong {
  margin-top: 0.25rem;
  font-size: 1.15rem;
}

.sport-home__connections {
  position: absolute;
  inset: 8% 3% 2%;
  width: 94%;
  height: 88%;
}

.sport-home__connections path {
  fill: none;
  stroke: rgba(55,215,208,0.2);
  stroke-dasharray: 4 9;
  stroke-width: 1;
}

.discipline-grid {
  position: absolute;
  inset: 0;
}

.discipline-card {
  --card-x: 0;
  --card-y: 0;
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  width: clamp(150px, 13vw, 205px);
  min-height: 78px;
  padding: 0.75rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 1rem;
  background: rgba(7,27,46,0.82);
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
  color: var(--sport-white);
  text-decoration: none;
  transform: translate(var(--card-x), var(--card-y));
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.discipline-card:hover {
  border-color: var(--sport-cyan);
  background: #0c3350;
  box-shadow: 0 20px 42px rgba(0,0,0,0.32), 0 0 0 1px rgba(55,215,208,0.18);
  color: var(--sport-white);
  transform: translate(var(--card-x), calc(var(--card-y) - 5px));
}

.discipline-card__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 0.8rem;
  background: rgba(55,215,208,0.12);
  color: var(--sport-cyan);
  font-size: 1.35rem;
  transition: transform 180ms ease, background 180ms ease;
}

.discipline-card:hover .discipline-card__icon {
  background: var(--sport-cyan);
  color: var(--sport-ink);
  transform: rotate(-5deg) scale(1.04);
}

.discipline-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.discipline-card__copy strong {
  overflow: hidden;
  font-size: 0.88rem;
  line-height: 1.15;
  text-overflow: ellipsis;
}

.discipline-card__kicker {
  margin-bottom: 0.24rem;
  color: #87a0b2;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discipline-card__arrow {
  align-self: flex-start;
  color: #87a0b2;
  font-size: 0.9rem;
  transition: color 180ms ease, transform 180ms ease;
}

.discipline-card:hover .discipline-card__arrow {
  color: var(--sport-cyan);
  transform: translate(2px, -2px);
}

.discipline-card--football { top: 18%; left: 34%; }
.discipline-card--athletics { top: 7%; right: 5%; }
.discipline-card--swimming { top: 35%; right: 3%; }
.discipline-card--cycling { top: 61%; right: 8%; }
.discipline-card--basketball { right: 29%; bottom: 4%; }
.discipline-card--volleyball { bottom: 12%; left: 8%; }
.discipline-card--tennis { top: 51%; left: 3%; }
.discipline-card--boxing { top: 26%; left: 4%; }
.discipline-card--gymnastics { top: 44%; left: 38%; }
.discipline-card--hockey { right: 28%; bottom: 25%; }
.discipline-card--skiing { top: 14%; left: 4%; }

.sport-home__manifesto {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.42fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
  padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 8vw, 9rem);
  background: var(--sport-white);
}

.sport-home__section-label {
  grid-column: 1 / -1;
  margin: 0 0 -1rem;
  color: var(--sport-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sport-home__manifesto h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.sport-home__manifesto-copy {
  padding-left: 2rem;
  border-left: 1px solid var(--sport-line);
}

.sport-home__manifesto-copy p {
  color: var(--sport-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.sport-home__manifesto-copy a {
  display: inline-flex;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--sport-ink);
  font-weight: 780;
  text-decoration: none;
}

/* Vocabulary and concept views */
#main-container:not(.landing) {
  min-height: 65vh;
  padding-top: clamp(2rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 95% 0, rgba(55,215,208,0.12), transparent 24rem),
    var(--sport-cloud);
}

#main-container:not(.landing) > .container {
  max-width: 1440px;
}

#main-container:not(.landing) .card,
#main-container:not(.landing) #concept-info,
#main-container:not(.landing) .content,
#main-container:not(.landing) .sidebar,
#main-container:not(.landing) #vocab-info {
  border-color: var(--sport-line) !important;
  border-radius: var(--sport-radius) !important;
  background-color: rgba(255,255,255,0.94);
  box-shadow: 0 10px 35px rgba(7,27,46,0.065);
}

#main-container:not(.landing) h1,
#main-container:not(.landing) h2,
#main-container:not(.landing) h3 {
  color: var(--sport-ink);
  letter-spacing: -0.025em;
}

.btn-primary {
  border-color: var(--sport-blue);
  background-color: var(--sport-blue);
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: #173fb5;
  background-color: #173fb5;
}

.form-control,
.form-select {
  min-height: 2.8rem;
  border-color: #c9d7e1;
  border-radius: 0.7rem;
  background-color: var(--sport-white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--sport-blue);
  box-shadow: 0 0 0 0.22rem rgba(36,87,230,0.14);
}

.list-group-item {
  border-color: var(--sport-line);
  background: transparent;
}

.nav-tabs {
  gap: 0.3rem;
  border-color: var(--sport-line);
}

.nav-tabs .nav-link {
  border-radius: 0.65rem 0.65rem 0 0;
  color: var(--sport-muted);
  font-weight: 650;
}

.nav-tabs .nav-link.active {
  color: var(--sport-blue);
}

/* Static information pages */
#main-container.about,
#main-container.feedback {
  padding-top: 0;
  padding-bottom: 0 !important;
}

#main-container.about > .container,
#main-container.feedback > .container {
  max-width: none;
  padding: 0;
}

#main-container.about #main-container-row,
#main-container.feedback #main-container-row {
  margin: 0;
}

#main-container.about #main-container-row > .sport-static-page,
#main-container.feedback #main-container-row > .sport-static-page {
  padding: 0;
}

.sport-static-page {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  color: var(--sport-ink);
}

.sport-static-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 7rem) max(clamp(1.25rem, 7vw, 7rem), calc((100vw - 1440px) / 2));
  background:
    radial-gradient(circle at 84% 30%, rgba(55,215,208,0.3), transparent 22rem),
    linear-gradient(125deg, #09233a 0%, #0c3857 100%);
  color: #fff;
}

.sport-static-hero::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -10rem;
  width: 30rem;
  height: 22rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  transform: rotate(-13deg);
}

.sport-static-hero__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  color: var(--sport-mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sport-static-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0;
  color: #fff !important;
  font-family: "Public Sans", system-ui, sans-serif !important;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 820;
  letter-spacing: -0.055em !important;
  line-height: 0.98;
}

.sport-static-hero > p:last-child {
  position: relative;
  z-index: 1;
  max-width: 710px;
  margin: 1.4rem 0 0;
  color: #c5d7e3;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.sport-about-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  background: #fff;
}

.sport-about-story {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 5vw, 5rem);
}

.sport-about-story article {
  min-width: 0;
}

.sport-about-story__grant {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 1px solid #d5e1e8;
}

.sport-about-story__label {
  display: block;
  padding-top: 0.35rem;
  color: #168892;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sport-about-story p {
  margin: 0;
  color: #314e62;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.75;
}

.sport-about-story__grant p {
  max-width: 900px;
  color: #15384e;
  font-size: clamp(1.25rem, 2.25vw, 2rem);
  font-weight: 590;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.sport-about-story__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 6rem);
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

.sport-about-story__details article {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.sport-about-intro,
.sport-about-facts,
.sport-feedback-guide,
.sport-feedback-form {
  min-width: 0;
}

.sport-about-intro h2,
.sport-about-features h2,
.sport-feedback-guide h2,
.sport-feedback-form h2 {
  margin: 0;
  font-family: "Public Sans", system-ui, sans-serif !important;
  font-weight: 780;
  letter-spacing: -0.035em !important;
}

.sport-about-intro h2 {
  max-width: 680px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.08;
}

.sport-about-intro > p {
  max-width: 720px;
  margin: 1.4rem 0 0;
  color: #516a7c;
  font-size: 1.05rem;
  line-height: 1.8;
}

.sport-static-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.sport-button--ghost,
.sport-button--ghost:hover {
  border-color: #c7d8e2;
  background: #fff;
  color: #155779;
}

.sport-about-facts {
  margin: 0;
  border-top: 1px solid #d5e1e8;
}

.sport-about-facts div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #d5e1e8;
}

.sport-about-facts dt {
  color: #0b4968;
  font-size: 1.35rem;
  font-weight: 820;
}

.sport-about-facts dd {
  margin: 0;
  color: #718594;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.sport-about-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem) clamp(4rem, 7vw, 7rem);
}

.sport-about-features article {
  padding: 2rem;
  border-top: 3px solid #113d60;
  background: #f5f8fa;
}

.sport-about-features article:nth-child(2) {
  border-color: #0b8392;
  background: #eef7f7;
}

.sport-about-features article:nth-child(3) {
  border-color: var(--sport-cyan);
}

.sport-about-features__number {
  color: #15929c;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.sport-about-features h2 {
  margin-top: 1.1rem;
  font-size: 1.15rem;
}

.sport-about-features p {
  margin: 0.8rem 0 0;
  color: #5c7282;
  font-size: 0.9rem;
  line-height: 1.7;
}

.sport-static-version {
  max-width: 1280px;
  margin: -2.5rem auto 0;
  padding: 0 0 2.5rem;
  color: #8496a3;
  font-size: 0.72rem;
  text-align: right;
}

.sport-feedback-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 6vw, 6rem);
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 5vw, 5rem);
}

.sport-feedback-guide {
  padding-top: 0.5rem;
}

.sport-feedback-guide h2 {
  font-size: 1.5rem;
}

.sport-feedback-guide ul {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.sport-feedback-guide li {
  position: relative;
  padding-left: 1.5rem;
  color: #3c5668;
  line-height: 1.55;
}

.sport-feedback-guide li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sport-cyan);
}

.sport-feedback-guide > p {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid #d4e0e7;
  color: #708492;
  font-size: 0.84rem;
  line-height: 1.65;
}

.sport-contact-panel {
  min-width: 0;
}

.sport-contact-panel > h2 {
  margin: 0;
  color: var(--sport-ink);
  font-family: "Public Sans", system-ui, sans-serif !important;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 780;
  letter-spacing: -0.035em !important;
}

.sport-contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  font-style: normal;
}

.sport-contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid #c9d9e2;
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 14px 38px rgba(13, 42, 65, 0.07);
}

.sport-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--sport-cyan);
}

.sport-contact-card__role {
  margin: 0;
  color: #087b8f;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sport-contact-card h3 {
  margin: 0.45rem 0 0;
  color: var(--sport-ink);
  font-family: "Public Sans", system-ui, sans-serif !important;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 780;
  letter-spacing: -0.025em !important;
}

.sport-contact-card > p:not(.sport-contact-card__role) {
  margin: 0.35rem 0 1.1rem;
  color: #536d7e;
  font-size: 0.88rem;
}

.sport-contact-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #dce6ec;
  color: #0b6383;
  font-size: 0.9rem;
  font-weight: 720;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.sport-contact-card a:hover {
  color: var(--sport-blue);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.sport-contact-card a:focus-visible {
  border-radius: 0.2rem;
  outline: 3px solid rgba(43, 197, 198, 0.45);
  outline-offset: 4px;
}

.sport-feedback-form {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid #cddce5;
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 18px 50px rgba(13, 42, 65, 0.08);
}

.sport-feedback-form__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #dce6ec;
}

.sport-feedback-form__heading h2 {
  font-size: 1.5rem;
}

.sport-feedback-form__heading span {
  color: #718492;
  font-size: 0.72rem;
}

.sport-feedback-form b {
  color: #087b98;
}

.sport-feedback-form__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sport-field {
  min-width: 0;
}

.sport-field .form-label {
  margin-bottom: 0.45rem;
  color: #243f53;
  font-size: 0.78rem;
  font-weight: 760;
}

.sport-field .form-control,
.sport-field .form-select {
  border: 2px solid #6f8fa4;
  border-radius: 0.55rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(9, 35, 58, 0.07);
  color: #102d47;
}

.sport-field .form-control::placeholder {
  color: #5f7483;
  opacity: 1;
}

.sport-field .form-control:hover,
.sport-field .form-select:hover {
  border-color: #6f93aa;
}

.sport-field .form-control:focus,
.sport-field .form-select:focus {
  border-color: #087b98;
  background: #fff;
  box-shadow: 0 0 0 0.22rem rgba(8, 123, 152, 0.16);
}

.sport-field textarea.form-control {
  min-height: 9.5rem;
  resize: vertical;
}

.sport-feedback-form #submit-feedback {
  justify-self: start;
  border: 0;
  background: var(--sport-cyan) !important;
  color: var(--sport-ink) !important;
}

.sport-feedback-success {
  max-width: 760px;
  margin: clamp(4rem, 9vw, 9rem) auto;
  padding: 3rem;
  text-align: center;
}

.sport-feedback-success > span {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--sport-cyan);
  color: var(--sport-ink);
  font-size: 1.6rem;
  font-weight: 850;
}

.sport-feedback-success h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.sport-feedback-success p {
  color: #617888;
  font-size: 1.05rem;
}

/* Concept page: a focused reading and navigation workspace */
#main-container.concept {
  padding-top: clamp(1.5rem, 3vw, 3rem);
  background:
    linear-gradient(rgba(25, 55, 102, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 55, 102, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 100% 0, rgba(55, 215, 208, 0.13), transparent 30rem),
    var(--sport-cloud);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.concept #main-container-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: start;
  margin: 0;
}

.concept #sidebar-col,
.concept #main-container-row > .col-md-8 {
  width: auto;
  padding: 0;
}

.concept #sidebar-col {
  position: sticky !important;
  top: 1.25rem;
}

.concept #sidebar {
  overflow: hidden;
  min-height: 34rem;
  border: 1px solid #cfdbe5;
  border-radius: 0.85rem !important;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 12px 32px rgba(22, 48, 76, 0.07);
}

.concept .sidebar-buttons {
  padding: 0 0.85rem;
  border-bottom: 1px solid #d7e2e9;
  background: #f7fafc;
}

.concept #sidebar-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border: 0;
}

.concept #sidebar-tabs .nav-item {
  min-width: 0;
}

.concept #sidebar-tabs .nav-link {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 0.7rem 0.4rem 0.6rem;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  color: #6d8394;
  font-size: 0.72rem;
  font-weight: 680;
  text-align: center;
  box-shadow: inset 0 0 0 transparent;
  transition: color 160ms ease, box-shadow 160ms ease;
}

.concept #sidebar-tabs .nav-link:hover {
  color: #155575;
}

.concept #sidebar-tabs .nav-link.active {
  color: #0a344e;
  box-shadow: inset 0 -3px 0 var(--sport-cyan);
}

.concept #sidebar-tabs .nav-link:focus-visible {
  outline: 2px solid var(--sport-cyan);
  outline-offset: -2px;
}

.concept #sidebar .tab-content {
  min-height: 30rem;
  padding: 1rem 1.15rem;
}

.concept #sidebar .tab-content a {
  color: #184c72;
  font-weight: 620;
  text-decoration: none;
}

.concept #sidebar .tab-content a:hover {
  color: var(--sport-blue);
  text-decoration: underline;
}

.concept #main-content {
  overflow: hidden;
  border: 1px solid #cfdbe5;
  border-radius: 0.9rem;
  background: #ffffff;
  box-shadow: 0 24px 65px rgba(22, 48, 76, 0.11);
}

.concept .main-content-section {
  padding: 0 !important;
}

.concept #concept-breadcrumbs {
  display: block;
  margin: 0;
  padding: 0.75rem clamp(1.25rem, 3vw, 2.5rem);
  border-bottom: 1px solid #d8e3eb;
  background: linear-gradient(90deg, #f8fafc, #f2f7fa);
}

.concept #concept-breadcrumbs ol {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.3rem;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concept #concept-breadcrumbs ol::before {
  content: "";
  flex: 0 0 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.25rem;
  border: 2px solid #2b75a0;
  border-radius: 50%;
  background: #ffffff;
}

.concept #concept-breadcrumbs ol + ol::before {
  border-color: #1a9b9a;
}

.concept #concept-breadcrumbs ol + ol {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid #dde7ed;
}

.concept #concept-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  color: #536c7e;
  font-size: 0.72rem;
  font-weight: 620;
  line-height: 1.35;
  white-space: nowrap;
}

.concept #concept-breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.3rem;
  color: #9badb9;
  font-weight: 500;
}

.concept #concept-breadcrumbs li:last-child {
  overflow: hidden;
  color: #37556a;
  font-weight: 520;
  text-overflow: ellipsis;
}

.concept #concept-breadcrumbs li:last-child a {
  color: #4d687b;
  font-weight: 560;
}

.concept #concept-breadcrumbs a {
  overflow: hidden;
  color: #245b7a;
  font-weight: 720;
  text-decoration: none;
  text-overflow: ellipsis;
}

.concept #concept-breadcrumbs a:hover {
  color: var(--sport-blue);
  text-decoration: none;
}

.concept #concept-breadcrumbs li:first-child a {
  color: #174c70;
}

.concept #concept-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 0.76fr);
  align-items: center;
  min-height: 96px;
  margin: 0;
  padding: 1.15rem clamp(1.25rem, 3vw, 2.5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(55,215,208,0.27), transparent 19rem),
    linear-gradient(125deg, #09233a, #0c3857);
  color: #ffffff;
}

.concept #concept-heading::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -8rem;
  width: 18rem;
  height: 13rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.concept #concept-property-label {
  position: relative;
  z-index: 1;
  width: auto;
  padding: 0 2rem 0 0 !important;
  color: var(--sport-mint);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.concept #concept-label {
  position: relative;
  z-index: 1;
  display: flex;
  width: auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0 !important;
}

.concept #concept-preflabel {
  color: #ffffff !important;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  font-family: "Public Sans", system-ui, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.concept #concept-heading .copy-clipboard {
  display: grid;
  flex: 0 0 2.3rem;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 0.65rem;
  color: #ffffff;
}

.concept #concept-heading .copy-clipboard img {
  width: 1rem;
  height: 1rem;
}

.concept #concept-heading .copy-clipboard:hover {
  background: rgba(255,255,255,0.1);
}

.concept .property {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 0.68fr);
  margin: 0 clamp(1.25rem, 3vw, 2.5rem);
  padding: 1.4rem 0;
  border-top: 1px solid #dce5eb;
}

.concept .property > [class*="col-lg"] {
  width: auto;
  padding: 0 !important;
}

.concept .property-label {
  padding-right: 2rem !important;
}

.concept .property-label h2 {
  margin: 0;
  color: #526b7d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
}

.concept .property-value {
  min-width: 0;
  color: #18344d;
  font-size: 0.98rem;
  line-height: 1.65;
}

.concept .property-value ul,
.concept #download-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concept .prop-skos_definition {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #c8e4e4;
  border-radius: 0.9rem;
  background: #eef8f7;
}

.concept .prop-skos_definition .property-value ul {
  display: block;
}

.concept .prop-skos_broader a,
.concept .prop-skos_narrower a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid #c7d9e5;
  border-radius: 999px;
  background: #f4f8fb;
  color: #15507b;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.concept .prop-skos_broader a::before {
  content: "↑";
  margin-right: 0.4rem;
  color: #087b98;
}

.concept .prop-skos_narrower a::before {
  content: "↓";
  margin-right: 0.4rem;
  color: #087b98;
}

.concept .prop-skos_broader a:hover,
.concept .prop-skos_narrower a:hover {
  border-color: #087b98;
  background: #e9f6f6;
  transform: translateY(-2px);
}

.concept .sport-property-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.15rem clamp(1.25rem, 3vw, 2.5rem) 0;
  padding-top: 0.75rem;
  color: #168892;
}

.concept .sport-property-section::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, #9fd6d8, transparent);
}

.concept .sport-property-section span {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.concept [class*="prop-sport_"] .property-value ul {
  gap: 0.45rem;
}

.concept [class*="prop-sport_"] .property-value li {
  margin: 0;
}

.concept [class*="prop-sport_"] .property-value a {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0.32rem 0.72rem;
  border: 1px solid #c8dce6;
  border-radius: 999px;
  background: #f3f8fa;
  color: #126488;
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.25;
  text-decoration: none;
}

.concept [class*="prop-sport_"] .property-value a:hover,
.concept [class*="prop-sport_"] .property-value a:focus-visible {
  border-color: #168892;
  background: #e6f6f5;
  color: #0b4d68;
}

.concept .prop-skos_altLabel .property-value li {
  padding: 0.4rem 0.7rem;
  border-radius: 0.45rem;
  background: #eef1f5;
  color: #40576a;
  font-size: 0.84rem;
}

.concept .prop-uri .property-value {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.concept #concept-uri {
  overflow: hidden;
  padding: 0.65rem 0.8rem;
  border-radius: 0.55rem;
  background: #eef2f6;
  color: #354c5e;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.concept .prop-download {
  margin-bottom: 1.5rem;
}

.concept #download-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin: 0 !important;
  padding: 0.45rem 0.8rem;
  border: 1px solid #b9d8dc;
  border-radius: 0.55rem;
  background: #edf8f7;
  color: #0c6275;
  font-size: 0.78rem;
  font-weight: 760;
  text-decoration: none;
}

.concept #download-links a:hover {
  border-color: #087b98;
  background: #dff3f1;
}

.vocab-sport #headerbar {
  background: rgba(255,255,255,0.97);
}

.vocab-sport #vocab-title,
.vocab-sport #vocab-title a {
  margin: 0;
  font-family: "Public Sans", system-ui, sans-serif !important;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 780;
  letter-spacing: -0.035em;
}

.vocab-sport #search-wrapper {
  width: clamp(440px, 52vw, 700px);
  padding-left: 0 !important;
  border: 1px solid #cbd9e2;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(12, 39, 61, 0.07);
}

.vocab-sport #language-selector .btn {
  min-width: 108px;
  height: 44px;
  border: 0;
  border-right: 1px solid #d8e2e8;
  border-radius: 0.65rem 0 0 0.65rem;
  background: #f5f8fa;
  color: #24465d;
  font-size: 0.8rem;
  font-weight: 680;
}

.vocab-sport #language-selector .chevron {
  margin-left: 0.65rem;
  font-size: 0.65rem;
}

.vocab-sport #headerbar-search {
  flex: 1 1 auto;
  width: auto !important;
  min-width: 0;
}

.vocab-sport #search-field {
  height: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  font-size: 0.88rem;
}

.vocab-sport #search-button {
  width: 48px;
  height: 44px;
  border: 0;
  border-radius: 0 0.65rem 0.65rem 0;
  background: var(--sport-navy);
  color: #fff;
}

.vocab-sport #search-button:hover,
.vocab-sport #search-button:focus {
  background: #0b4968;
  color: #fff;
}

/* Footer */
footer {
  background: var(--sport-ink);
  color: var(--sport-white);
}

.sport-footer__institutions {
  padding: 1.25rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: #101f33;
}

.sport-footer__logo-rail {
  display: grid;
  grid-template-columns: 1.08fr 1.28fr 0.94fr 0.9fr 1.08fr 1.3fr;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
}

.partner-logo {
  display: flex;
  min-width: 0;
  height: 98px;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.15rem;
  background: transparent;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.partner-logo:hover,
.partner-logo:focus-visible {
  opacity: 0.72;
}

.partner-logo:focus-visible {
  outline: 3px solid var(--sport-cyan);
  outline-offset: 3px;
}

.partner-logo img {
  display: block;
  width: 100%;
  max-width: 210px;
  max-height: 62px;
  object-fit: contain;
}

.partner-logo--uwr {
  background: #172a46;
}

.partner-logo--uwr img {
  max-width: 176px;
  max-height: 72px;
}

.partner-logo--dariah img {
  max-width: 180px;
  max-height: 42px;
}

.partner-logo--funds img {
  max-width: 150px;
  max-height: 68px;
}

.partner-logo--poland img,
.partner-logo--eu img {
  max-height: 58px;
}

.sport-footer {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(300px, 1.3fr);
  gap: 2rem;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 2.5rem clamp(1.5rem, 5vw, 5rem);
}

.sport-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.sport-footer__mark {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--sport-cyan);
  color: var(--sport-ink);
  font-size: 0.78rem;
  font-weight: 850;
  transform: rotate(-4deg);
}

.sport-footer__brand div {
  display: flex;
  flex-direction: column;
}

.sport-footer__brand strong {
  font-size: 0.9rem;
}

.sport-footer__brand div span {
  color: #87a0b2;
  font-size: 0.72rem;
}

.sport-footer__description {
  margin: 0;
  color: #a9bdcb;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Legacy identity, rebuilt as responsive interface elements */
.sport-home {
  grid-template-columns: minmax(380px, 0.76fr) minmax(660px, 1.24fr);
  min-height: 840px;
  padding-top: 0;
  background:
    linear-gradient(rgba(25, 55, 102, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 55, 102, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 78% 30%, rgba(255,255,255,0.88), transparent 25%),
    linear-gradient(180deg, #e8edf5 0%, #b9c2d2 58%, #747f98 100%);
  background-size: 52px 52px, 52px 52px, auto, auto;
  color: var(--sport-ink);
}

.sport-home::before {
  inset: auto 0 0;
  height: 38%;
  background:
    linear-gradient(180deg, rgba(24, 45, 78, 0), rgba(27, 45, 75, 0.26)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 11px);
}

.sport-home__track {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 48%;
  opacity: 0.72;
  pointer-events: none;
}

.sport-home__track path {
  fill: none;
  stroke: rgba(232, 236, 245, 0.46);
  stroke-width: 6;
}

.sport-home__glow--one {
  top: -26rem;
  left: -16rem;
  background: radial-gradient(circle, rgba(36,87,230,0.2), rgba(36,87,230,0) 68%);
}

.sport-home__glow--two {
  right: -12rem;
  bottom: -20rem;
  background: radial-gradient(circle, rgba(0,113,147,0.3), rgba(0,113,147,0) 68%);
}

.sport-home__intro {
  justify-content: center;
  padding: 5.4rem clamp(2rem, 3.8vw, 4.8rem) 3.5rem;
}

.sport-home__eyebrow {
  margin-bottom: 1.35rem;
  color: #0b6985;
}

.sport-home h1 {
  max-width: 620px;
  line-height: 1;
}

.sport-home__wordmark {
  display: block;
  width: min(100%, 590px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(29, 57, 91, 0.08));
}

.sport-home__motto {
  margin: 0.8rem 0 0;
  color: #193658;
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1;
}

.sport-home__motto em {
  color: #087b98;
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 550;
}

.sport-home__lead {
  max-width: 31rem;
  margin-top: 1.4rem;
  color: #324b66;
}

.sport-button--quiet {
  border-color: rgba(11, 45, 73, 0.3);
  background: rgba(255,255,255,0.32);
  color: var(--sport-ink);
}

.sport-button--quiet:hover {
  border-color: rgba(11, 45, 73, 0.5);
  background: rgba(255,255,255,0.6);
  color: var(--sport-ink);
}

.sport-home__facts div {
  border-left-color: rgba(7,27,46,0.18);
}

.sport-home__facts dt {
  color: #123552;
}

.sport-home__facts dd {
  color: #536b80;
}

.sport-home__atlas {
  min-height: 720px;
  margin: 1.2rem 1rem 1.2rem 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.sport-home__atlas::before {
  inset: 9% 8% 8%;
  border-color: rgba(31, 63, 107, 0.15);
}

.sport-home__atlas-heading {
  top: 1.2rem;
  left: 1rem;
}

.sport-home__atlas-heading span {
  color: #576d84;
}

.sport-home__atlas-heading strong {
  color: #153550;
}

.sport-home__connections {
  inset: 8% 2% 2%;
  width: 96%;
  height: 90%;
}

.sport-home__connections path {
  stroke: rgba(41, 62, 95, 0.4);
  stroke-dasharray: none;
  stroke-width: 3;
}

.sport-home__runner {
  position: absolute;
  z-index: 1;
  right: 3rem;
  bottom: 0;
  display: flex;
  width: 240px;
  height: 440px;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 0.88;
  filter: saturate(0.9) drop-shadow(0 24px 22px rgba(25, 51, 78, 0.15));
  pointer-events: none;
}

.sport-home__runner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.discipline-card {
  width: clamp(128px, 10vw, 154px);
  min-height: 82px;
  gap: 0.55rem;
  padding: 0.55rem;
  border: 3px solid #6d778c;
  border-radius: 3px;
  background: rgba(237, 241, 248, 0.94);
  box-shadow: 0 0 0 5px rgba(84, 98, 125, 0.2), 0 12px 24px rgba(37, 55, 82, 0.13);
  color: #142d49;
}

.discipline-card--small {
  width: clamp(105px, 8vw, 124px);
  min-height: 70px;
}

.discipline-card:hover {
  border-color: #087b98;
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(8, 123, 152, 0.2), 0 18px 36px rgba(31, 55, 87, 0.22);
  color: #102d47;
}

.discipline-card__icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1px;
  background: #173b82;
  color: #dbe4f3;
}

.discipline-card:hover .discipline-card__icon {
  background: #087b98;
  color: #ffffff;
}

.discipline-card__copy strong {
  color: #142d49;
  font-size: 0.78rem;
}

.discipline-card__kicker {
  color: #66788b;
  font-size: 0.5rem;
}

.discipline-card__arrow {
  display: none;
}

.discipline-card--football { top: 25%; left: 30%; }
.discipline-card--athletics { top: 12%; right: 8%; }
.discipline-card--swimming { top: 46%; right: 2%; }
.discipline-card--cycling { top: 65%; right: 1%; }
.discipline-card--basketball { right: auto; bottom: 4%; left: 24%; }
.discipline-card--volleyball { right: auto; bottom: auto; top: 63%; left: 27%; }
.discipline-card--tennis { top: 47%; left: 1%; }
.discipline-card--boxing { top: 29%; left: 2%; }
.discipline-card--gymnastics { top: 45%; left: 46%; }
.discipline-card--hockey { right: auto; bottom: 6%; left: 47%; }
.discipline-card--skiing { top: 14%; left: 4%; }
.discipline-card--badminton { top: 10%; left: 30%; }
.discipline-card--handball { top: 29%; right: 5%; }
.discipline-card--fencing { top: 44%; left: 24%; }
.discipline-card--sailing { top: 63%; left: 50%; }
.discipline-card--golf { right: 1%; bottom: 5%; }
.discipline-card--archery { top: 64%; left: 4%; }

@media (max-width: 1199px) {
  .vocab-sport #headerbar .d-flex {
    width: 100%;
  }

  .sport-home {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .sport-home__intro {
    padding-bottom: 4rem;
  }

  .sport-home__atlas {
    min-height: 680px;
    margin: 0 1.5rem 1.5rem;
  }

  .discipline-card {
    width: 190px;
  }
}

@media (max-width: 767px) {
  #topbar {
    flex-wrap: wrap;
    min-height: 68px;
  }

  #topbar::before {
    content: "SPORT / THES";
  }

  #topbar-nav {
    width: auto;
    flex-wrap: nowrap;
    gap: 0.8rem;
    justify-content: flex-end;
    padding: 0 !important;
  }

  #topbar-nav a {
    margin-left: 0 !important;
    font-size: 0 !important;
  }

  #topbar-nav a i {
    font-size: 0.95rem;
  }

  #topbar-nav .language a {
    min-width: 40px;
    min-height: 34px;
    padding: 0.3rem 0.55rem;
    font-size: 0.62rem !important;
  }

  #global-search-toggle {
    margin-left: 0.75rem;
    font-size: 0.75rem !important;
  }

  .concept #main-container-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .concept #sidebar-collapse-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 0.75rem;
    background: var(--sport-navy);
    color: #ffffff !important;
    font-weight: 720;
  }

  .concept #sidebar-collapse-btn i {
    margin-right: 0.55rem;
    color: var(--sport-cyan);
  }

  .vocab-sport #headerbar {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .vocab-sport #vocab-title,
  .vocab-sport #vocab-title a {
    font-size: 1.25rem;
  }

  .vocab-sport #headerbar .ms-0.ms-xl-auto {
    padding-top: 0.65rem !important;
  }

  .vocab-sport #headerbar .d-flex,
  .vocab-sport #headerbar .ms-0.ms-xl-auto,
  .vocab-sport #search-vocab,
  .vocab-sport #search-vocab form,
  .vocab-sport #search-vocab .input-group {
    width: 100%;
    min-width: 0;
  }

  .vocab-sport #search-wrapper {
    width: 100% !important;
    max-width: 100%;
  }

  .vocab-sport #search-vocab input {
    min-width: 0;
  }

  .vocab-sport #language-selector .btn {
    min-width: 92px;
  }

  .sport-static-hero {
    padding: 3.5rem 1.25rem;
  }

  .sport-static-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(2.2rem, 10.5vw, 2.8rem);
  }

  .sport-about-overview,
  .sport-feedback-layout {
    width: auto;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    padding: 3.5rem 1.25rem;
  }

  .sport-about-story {
    padding: 3.5rem 1.25rem;
  }

  .sport-about-story__grant,
  .sport-about-story__details {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .sport-about-story__grant p {
    font-size: 1.2rem;
  }

  .sport-about-story__details {
    gap: 2.5rem;
  }

  .sport-about-intro h2 {
    overflow-wrap: anywhere;
    font-size: clamp(1.8rem, 8.5vw, 2.35rem);
  }

  .sport-about-facts div {
    align-items: flex-start;
  }

  .sport-about-facts dd {
    max-width: 48%;
    overflow-wrap: anywhere;
  }

  .sport-about-features {
    grid-template-columns: 1fr;
    padding: 0 1.25rem 4rem;
  }

  .sport-static-version {
    margin: -2rem 1.25rem 0;
  }

  .sport-feedback-form__columns {
    grid-template-columns: 1fr;
  }

  .sport-feedback-form {
    width: auto;
    max-width: 100%;
    padding: 1.35rem;
  }

  .sport-feedback-form .form-control,
  .sport-feedback-form .form-select {
    width: 100%;
    min-width: 0;
  }

  .sport-feedback-form__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .concept #sidebar-col {
    position: static !important;
  }

  .concept #concept-breadcrumbs {
    padding: 0.75rem 1rem;
  }

  .concept #concept-breadcrumbs ol {
    flex-wrap: wrap;
    row-gap: 0.2rem;
  }

  .concept #concept-breadcrumbs li:last-child {
    white-space: normal;
  }

  .concept #concept-heading {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    min-height: 104px;
    padding: 1rem;
  }

  .concept #concept-preflabel {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .concept .property {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-right: 1rem;
    margin-left: 1rem;
    padding: 1.15rem 0;
  }

  .concept .sport-property-section {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .concept .prop-skos_definition {
    padding: 1.15rem;
  }

  .concept .property-label {
    padding-right: 0 !important;
  }

  .concept .prop-uri .property-value {
    align-items: stretch;
  }

  .concept #concept-uri {
    flex: 1;
  }

  .sport-home__intro {
    padding: 4rem 1.25rem 3.5rem;
  }

  .sport-home__wordmark {
    width: min(100%, 440px);
  }

  .sport-home__motto {
    font-size: clamp(1.7rem, 8vw, 2.6rem);
  }

  .sport-home__lead {
    font-size: 1rem;
  }

  .sport-home__facts {
    margin-top: 3rem;
  }

  .sport-home__facts div {
    padding: 0 0.65rem;
  }

  .sport-home__facts dd {
    font-size: 0.6rem;
  }

  .sport-home__atlas {
    min-height: auto;
    margin: 0 0.75rem 0.75rem;
    padding: 6rem 0.8rem 1rem;
    border-radius: 0;
  }

  .sport-home__connections,
  .sport-home__atlas::before,
  .sport-home__runner {
    display: none;
  }

  .discipline-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .discipline-card {
    position: static;
    width: auto;
    min-width: 0;
    grid-template-columns: auto 1fr;
    transform: none;
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(84, 98, 125, 0.16), 0 9px 20px rgba(37, 55, 82, 0.11);
  }

  .discipline-card:hover {
    transform: translateY(-3px);
  }

  .discipline-card__arrow {
    display: none;
  }

  .discipline-card__icon {
    width: 2.55rem;
    height: 2.55rem;
  }

  .sport-home__manifesto {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 5rem 1.25rem;
  }

  .sport-home__section-label {
    margin-bottom: 0;
  }

  .sport-home__manifesto-copy {
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--sport-line);
    border-left: 0;
  }

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

  .sport-footer__institutions {
    padding-right: 0;
    padding-left: 0;
  }

  .sport-footer__logo-rail {
    display: grid;
    grid-auto-columns: minmax(190px, 60vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 1rem 0.75rem;
    scroll-padding-inline: 1rem;
    scroll-snap-type: inline proximity;
    scrollbar-color: rgba(55,215,208,0.55) transparent;
    scrollbar-width: thin;
  }

  .partner-logo {
    scroll-snap-align: start;
  }
}

@media (max-width: 600px) {
  .sport-home__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sport-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .discipline-grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  #topbar,
  footer,
  .sport-home__actions,
  .sport-home__atlas {
    display: none !important;
  }

  body,
  #main-container,
  .sport-home {
    background: #fff !important;
    color: #000 !important;
  }
}
