@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin-400-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/outfit-latin-600-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
* {
  box-sizing: border-box;
}

.rs {
  background: #f7f9fc;
  color: #1c2430;
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.rs h1,
.rs h2,
.rs h3 {
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
}
.rs h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}
.rs h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.rs h3 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.rs small,
.rs .rs__section-sub {
  font-size: 0.875rem;
  line-height: 1.45;
}
.rs a {
  color: #011a61;
}
.rs a:focus-visible,
.rs button:focus-visible,
.rs summary:focus-visible,
.rs [tabindex]:focus-visible {
  outline: 3px solid rgb(231, 178, 3);
  outline-offset: 2px;
  border-radius: 4px;
}
.rs__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.rs__header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #dfe4ec;
  box-shadow: 0 0 0 rgba(1, 26, 97, 0);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}
.rs__header.rs__header--scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 18px rgba(1, 26, 97, 0.08);
}
.rs__header.rs__header--scrolled .rs__headerbar {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}
.rs__header.rs__header--scrolled .rs__brand img {
  height: 34px;
}
.rs__headerbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  position: relative;
  transition: padding 0.25s ease;
}
.rs__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.rs__nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #dfe4ec;
  background: #ffffff;
  color: #011a61;
  font-size: 1.1rem;
  cursor: pointer;
}
@media (max-width: 800px) {
  .rs__nav-toggle {
    display: inline-flex;
  }
}
.rs__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #1c2430;
}
.rs__brand img {
  height: 42px;
  width: auto;
  transition: height 0.25s ease;
}
.rs__brand span {
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #011a61;
}
.rs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  position: relative;
}
.rs__nav li {
  list-style: none;
  position: relative;
}
.rs__nav > ul {
  display: flex;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .rs__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #dfe4ec;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
    padding: 0.5rem;
    margin-top: 0.5rem;
  }
  .rs__nav.rs__nav--open {
    display: block;
  }
  .rs__nav > ul {
    flex-direction: column;
    gap: 0;
  }
  .rs__nav a {
    display: block;
    border-radius: 8px;
  }
  .rs__nav a::after {
    display: none;
  }
  .rs__nav li.is-current > a {
    background: rgba(1, 26, 97, 0.1);
    color: #011a61;
  }
  .rs__nav .rs__has-children > ul {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    padding-left: 0.75rem;
  }
}
.rs__nav a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: #1c2430;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.rs__nav a::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 2px;
  background: rgb(231, 178, 3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.rs__nav a:hover {
  background: rgba(0, 153, 0, 0.1);
  color: #055505;
}
.rs__nav a:hover::after {
  transform: scaleX(1);
}
.rs__nav li.is-current > a {
  background: rgba(1, 26, 97, 0.08);
  color: #011a61;
}
.rs__nav li.is-current > a::after {
  transform: scaleX(1);
}
.rs__nav .rs__has-children > ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
  padding: 0.4rem;
  min-width: 220px;
  flex-direction: column;
}
.rs__nav .rs__has-children:hover > ul,
.rs__nav .rs__has-children:focus-within > ul {
  display: flex;
}
.rs__nav .rs__has-children > a::after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin-left: 0.45em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.75;
}
.rs__nav-social {
  display: flex;
  align-items: center;
}
.rs__nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 999px;
  background: rgba(1, 26, 97, 0.07);
  color: #011a61;
  font-size: 0.95rem;
}
.rs__nav-social a:hover {
  background: #011a61;
  color: #fff;
}
.rs__nav-login {
  display: flex;
  align-items: center;
}
.rs__nav-login a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(1, 26, 97, 0.3);
  color: #011a61;
}
.rs__nav-login a:hover {
  background: #011a61;
  color: #fff;
}
.rs__hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #071d52;
  background-image: radial-gradient(circle at 78% 18%, rgba(231, 178, 3, 0.2), transparent 23rem), radial-gradient(circle at 92% 100%, rgba(26, 132, 69, 0.22), transparent 28rem), linear-gradient(125deg, #061642 0%, #0b2865 55%, #103878 100%);
  color: #fff;
  padding: 4.25rem 0;
}
.rs__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(90deg, transparent 5%, #000 55%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 5%, #000 55%, #000 100%);
}
.rs__hero::after {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  right: -10rem;
  top: -14rem;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.025), 0 0 0 8rem rgba(255, 255, 255, 0.018);
}
@media (max-width: 560px) {
  .rs__hero {
    padding: 3rem 0;
  }
  .rs__hero::before {
    opacity: 0.14;
    background-size: 40px 40px;
  }
  .rs__hero::after {
    width: 18rem;
    height: 18rem;
    right: -12rem;
  }
}
.rs__hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.rs__hero-text {
  flex: 1 1 320px;
}
.rs__hero-text h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
}
.rs__hero-text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 52ch;
}
.rs__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 0 0 0.9rem;
  padding: 0.38rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.rs__eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgb(231, 178, 3);
  box-shadow: 0 0 0 3px rgba(231, 178, 3, 0.18);
}
.rs__hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.rs__hero-actions--equal .rs__btn {
  flex: 1 1 190px;
  justify-content: center;
  text-align: center;
}
.rs__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.rs__btn:hover {
  transform: translateY(-1px);
}
.rs__btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: none;
}
.rs__btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.rs__btn.rs__btn--primary {
  background: rgb(231, 178, 3);
  color: #24160a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}
.rs__btn.rs__btn--primary:hover {
  background: #f2c326;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}
.rs__btn.rs__btn--ghost {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.rs__btn.rs__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.24);
}
.rs__btn.rs__btn--outline {
  border-color: #dfe4ec;
  background: #ffffff;
  color: #011a61;
}
.rs__btn.rs__btn--outline:hover {
  background: #f0f4fa;
  border-color: rgba(1, 26, 97, 0.3);
}
.rs__hero-mascotte {
  flex: 0 0 auto;
}
.rs__hero-mascotte img {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
}
.rs__main {
  position: relative;
  isolation: isolate;
  padding: 0;
  display: grid;
  gap: 0;
}
.rs__main > section {
  position: relative;
  padding: 2.75rem 0;
}
.rs__main > section::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  margin-left: -50vw;
  background: #ffffff;
}
.rs__main > section:nth-child(even)::before {
  background: radial-gradient(circle at 8% 15%, rgba(1, 26, 97, 0.035), transparent 18rem), #f0f4fa;
}
.rs__section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 0.25rem 1rem;
}
.rs__section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #011a61;
}
.rs__section-head .rs__section-sub {
  color: #515d6f;
  font-size: 0.9rem;
}
.rs__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.rs__card {
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  padding: 1.1rem;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rs__card:hover {
  border-color: rgba(1, 26, 97, 0.22);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
  transform: translateY(-3px);
}
.rs__card:active {
  transform: translateY(-1px) scale(0.995);
}
.rs__card--media {
  padding-top: 0;
  overflow: hidden;
}
.rs__card--clickable {
  cursor: pointer;
}
.rs__card--clickable:focus-visible {
  outline: 3px solid rgb(231, 178, 3);
  outline-offset: 2px;
}
.rs__card-media {
  position: relative;
  margin: 0 -1.1rem 0.4rem;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #dfe4ec;
}
.rs__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.rs__card:hover .rs__card-media img, .rs__card:focus-visible .rs__card-media img {
  transform: scale(1.035);
}
.rs__card-media--demo img {
  opacity: 0.92;
}
.rs__card-title {
  font-weight: 700;
  font-size: 1.02rem;
  color: #1c2430;
}
.rs__card-meta {
  color: #515d6f;
  font-size: 0.85rem;
}
.rs__card-body {
  color: #515d6f;
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rs__card-link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.rs__results {
  display: grid;
  gap: 0.6rem;
}
.rs__result-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: box-shadow 0.15s ease;
}
.rs__result-row:hover {
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
}
.rs__result-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
}
.rs__result-team {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 0;
}
.rs__result-team img {
  height: 26px;
  width: auto;
  flex: none;
}
.rs__result-team--right {
  justify-content: flex-end;
  text-align: right;
}
.rs__result-team--us {
  color: #055505;
}
.rs__result-score {
  font-weight: 800;
  color: #011a61;
  font-size: 1.1rem;
  white-space: nowrap;
  text-align: center;
}
.rs__result-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.2rem 1rem;
  border-top: 1px dashed #dfe4ec;
  padding-top: 0.4rem;
  color: #515d6f;
  font-size: 0.82rem;
}
.rs__result-cat {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
}
.rs__result-when {
  white-space: nowrap;
}
@media (max-width: 560px) {
  .rs .rs__result-main {
    gap: 0.4rem;
  }
  .rs .rs__result-team {
    font-size: 0.85rem;
    gap: 0.35rem;
  }
  .rs .rs__result-team img {
    height: 22px;
  }
  .rs .rs__result-score {
    font-size: 1rem;
  }
}
.rs__season-banner {
  background: linear-gradient(120deg, rgba(0, 153, 0, 0.1), rgba(0, 51, 204, 0.08));
  border: 1px dashed rgba(0, 51, 204, 0.35);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  color: #011a61;
}
.rs__season-banner strong {
  display: block;
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.rs__sponsors {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  padding: 2rem;
}
.rs__sponsors img {
  max-height: 60px;
  width: auto;
  filter: grayscale(20%);
  opacity: 0.9;
  transition: filter 0.15s ease, opacity 0.15s ease;
}
.rs__sponsors img:hover {
  filter: none;
  opacity: 1;
}
.rs__sponsors-empty {
  color: #515d6f;
  font-size: 0.9rem;
  text-align: center;
}
.rs__hero--slim {
  padding: 2.5rem 0;
}
.rs__hero--slim .rs__hero-text h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.rs__hero--slim .rs__hero-text p {
  max-width: 62ch;
}
.rs__hero--slim .rs__hero-mascotte img {
  width: 120px;
}
.rs__teams {
  display: grid;
  gap: 1rem;
}
.rs__team {
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  overflow: hidden;
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}
.rs__team[open], .rs__team.rs__accordion--animating {
  border-color: rgba(1, 26, 97, 0.24);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
}
.rs__team summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.2s ease;
}
.rs__team summary:hover {
  background: rgba(1, 26, 97, 0.035);
}
.rs__team summary:active {
  background: rgba(1, 26, 97, 0.065);
}
.rs__team summary::-webkit-details-marker {
  display: none;
}
.rs__team summary:focus-visible {
  outline: 3px solid rgb(231, 178, 3);
  outline-offset: -2px;
  border-radius: 16px;
}
.rs__team-photo {
  flex: 0 0 auto;
  width: 100px;
  height: 74px;
  border-radius: 10px;
  overflow: hidden;
  background: #dfe4ec;
}
.rs__team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rs__team-head {
  flex: 1 1 auto;
  min-width: 0;
}
.rs__team-head h2 {
  font-size: 1.15rem;
  color: #011a61;
}
.rs__team-head .rs__team-count {
  color: #515d6f;
  font-size: 0.82rem;
}
.rs__team-chevron {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(1, 26, 97, 0.07);
  color: #011a61;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.2s ease;
}
.rs__team[open]:not(.rs__accordion--closing) .rs__team-chevron, .rs__team:has(> summary[aria-expanded=true]) .rs__team-chevron {
  background: rgba(1, 26, 97, 0.12);
  transform: rotate(180deg);
}
.rs__team-body {
  border-top: 1px solid #dfe4ec;
  padding: 1.1rem 1.25rem;
  display: grid;
  gap: 1rem;
}
.rs__staff {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.rs__staff-item {
  background: rgba(0, 153, 0, 0.08);
  border: 1px solid rgba(0, 153, 0, 0.28);
  color: #055505;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.rs__staff-item strong {
  font-weight: 800;
}
.rs__roster {
  width: 100%;
  border-collapse: collapse;
}
.rs__roster th,
.rs__roster td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  font-size: 0.92rem;
}
.rs__roster th {
  background: #011a61;
  color: #fff;
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.rs__roster th:first-child {
  border-radius: 10px 0 0 10px;
}
.rs__roster th:last-child {
  border-radius: 0 10px 10px 0;
}
.rs__roster td {
  border-bottom: 1px solid #dfe4ec;
  color: #1c2430;
}
.rs__roster tbody tr:last-child td {
  border-bottom: none;
}
.rs__roster tbody tr:hover td {
  background: rgba(1, 26, 97, 0.04);
}
.rs__roster td:first-child {
  font-weight: 600;
}
@media (max-width: 480px) {
  .rs__roster th,
  .rs__roster td {
    padding: 0.45rem 0.6rem;
    font-size: 0.88rem;
  }
}
.rs__camp-body {
  display: grid;
  gap: 1.25rem;
}
.rs__camp-fase {
  border: 1px solid #dfe4ec;
  border-radius: 14px;
  overflow: hidden;
}
.rs__camp-fase-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(120deg, rgba(1, 26, 97, 0.06), rgba(0, 153, 0, 0.07));
  border-bottom: 1px solid #dfe4ec;
  padding: 0.7rem 1rem;
}
.rs__camp-fase-head h3 {
  font-size: 1.05rem;
  color: #011a61;
}
.rs__camp-fase-head i {
  color: #055505;
}
.rs__camp-legs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
}
@media (max-width: 760px) {
  .rs__camp-legs {
    grid-template-columns: 1fr;
  }
}
.rs__camp-leg-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #515d6f;
  margin-bottom: 0.6rem;
}
.rs__camp-leg-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #dfe4ec;
}
.rs__camp-gare {
  display: grid;
  gap: 0.5rem;
}
.rs__camp-gara {
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 12px;
  padding: 0.6rem 0.85rem;
  display: grid;
  gap: 0.3rem;
  transition: box-shadow 0.15s ease;
}
.rs__camp-gara:hover {
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
}
.rs__camp-gara-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem 0.75rem;
  color: #515d6f;
  font-size: 0.78rem;
}
.rs__camp-giornata {
  display: inline-flex;
  align-items: center;
  background: #011a61;
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.12rem 0.6rem;
}
.rs__camp-giornata--riposo {
  background: #cccccc;
  color: #333333;
}
.rs__camp-data {
  white-space: nowrap;
  font-weight: 600;
}
.rs__camp-gara-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
}
.rs__camp-team {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  min-width: 0;
}
.rs__camp-team img {
  height: 22px;
  width: auto;
  flex: none;
}
.rs__camp-team--right {
  justify-content: flex-end;
  text-align: right;
}
.rs__camp-team--us {
  color: #055505;
  font-weight: 800;
}
.rs__camp-score {
  font-weight: 800;
  color: #011a61;
  font-size: 1.05rem;
  white-space: nowrap;
  text-align: center;
}
.rs__camp-score--riposo {
  color: #515d6f;
  font-weight: 600;
}
.rs__camp-empty {
  color: #515d6f;
  font-size: 0.88rem;
  text-align: center;
  padding: 0.6rem;
  border: 1px dashed #dfe4ec;
  border-radius: 12px;
}
.rs__camp-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #515d6f;
  font-size: 0.88rem;
  padding: 0.5rem 0;
}
.rs__camp-loading .rs__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #dfe4ec;
  border-top-color: #011a61;
  border-radius: 50%;
  animation: rs-spin 0.8s linear infinite;
}
@keyframes rs-spin {
  to {
    transform: rotate(360deg);
  }
}
.rs__skeleton {
  display: grid;
  gap: 1rem;
}
.rs__skeleton-card, .rs__skeleton-block {
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.rs__skeleton-card::after, .rs__skeleton-block::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.65) 45%, transparent 70%);
  transform: translateX(-100%);
  animation: rs-shimmer 1.4s ease-in-out infinite;
}
@keyframes rs-shimmer {
  to {
    transform: translateX(100%);
  }
}
.rs__skeleton-card {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rs__skeleton-card--doc {
  padding: 0.9rem 1.25rem;
}
.rs__skeleton-photo {
  flex: 0 0 auto;
  width: 100px;
  height: 74px;
  border-radius: 10px;
  background: linear-gradient(90deg, #e3e9f2, #eef2f8);
}
.rs__skeleton-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(90deg, #e3e9f2, #eef2f8);
}
.rs__skeleton-lines {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 0.55rem;
}
.rs__skeleton-line {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e3e9f2, #eef2f8);
}
.rs__skeleton-line--w60 {
  width: 60%;
}
.rs__skeleton-line--w80 {
  width: 80%;
}
.rs__skeleton-line--w40 {
  width: 40%;
}
.rs__skeleton-line--w100 {
  width: 100%;
}
.rs__skeleton-chevron {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e3e9f2, #eef2f8);
}
.rs__skeleton-block {
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}
.rs__skeleton-block .rs__skeleton-line {
  height: 12px;
}
.rs__docs {
  display: grid;
  gap: 0.75rem;
}
.rs__doc {
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  overflow: hidden;
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}
.rs__doc[open], .rs__doc.rs__accordion--animating {
  border-color: rgba(1, 26, 97, 0.24);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
}
.rs__doc-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.2s ease;
}
.rs__doc-head:hover {
  background: rgba(1, 26, 97, 0.035);
}
.rs__doc-head:active {
  background: rgba(1, 26, 97, 0.065);
}
.rs__doc-head::-webkit-details-marker {
  display: none;
}
.rs__doc-head:focus-visible {
  outline: 3px solid rgb(231, 178, 3);
  outline-offset: -2px;
  border-radius: 16px;
}
.rs__doc-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(1, 26, 97, 0.06);
  overflow: hidden;
}
.rs__doc-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.rs__doc-head-text {
  flex: 1 1 auto;
  min-width: 0;
}
.rs__doc-head-text h3 {
  font-size: 1.05rem;
  color: #011a61;
}
.rs__doc-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.9rem;
  color: #515d6f;
  font-size: 0.82rem;
}
.rs__doc-meta i {
  margin-right: 0.2rem;
}
.rs__doc-chevron {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(1, 26, 97, 0.07);
  color: #011a61;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.2s ease;
}
.rs__doc[open]:not(.rs__accordion--closing) .rs__doc-chevron, .rs__doc:has(> summary[aria-expanded=true]) .rs__doc-chevron {
  background: rgba(1, 26, 97, 0.12);
  transform: rotate(180deg);
}
.rs__doc-body {
  border-top: 1px solid #dfe4ec;
  padding: 1.1rem 1.25rem;
  display: grid;
  gap: 1rem;
}
.rs__doc-desc {
  color: #1c2430;
  font-size: 0.95rem;
  margin: 0;
}
.rs__doc-preview {
  position: relative;
  border: 1px solid #dfe4ec;
  border-radius: 12px;
  overflow: hidden;
  background: #dfe4ec;
}
.rs__doc-preview iframe {
  display: block;
  width: 100%;
  height: 60vh;
  border: none;
  background: #fff;
}
.rs__doc-preview-fallback {
  display: none;
  margin: 0;
  padding: 1rem;
  color: #515d6f;
  font-size: 0.9rem;
  text-align: center;
  border: 1px dashed #dfe4ec;
  border-radius: 12px;
}
.rs__doc-preview-fallback i {
  margin-right: 0.4rem;
}
.rs__doc-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}
.rs__doc-link {
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.rs__doc-empty {
  margin: 0;
  padding: 0.85rem 1rem;
  color: #515d6f;
  font-size: 0.9rem;
  border: 1px dashed #dfe4ec;
  border-radius: 12px;
  background: rgba(1, 26, 97, 0.03);
}
.rs__doc-empty i {
  margin-right: 0.4rem;
}
.rs__about-intro {
  background: linear-gradient(120deg, rgba(0, 153, 0, 0.07), rgba(1, 26, 97, 0.05));
  border: 1px solid #dfe4ec;
  border-left: 4px solid #055505;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.25rem;
}
.rs__about-intro p {
  margin: 0;
  font-size: 1.02rem;
  color: #1c2430;
}
.rs__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.rs__stat {
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  padding: 1.4rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.rs__stat:hover {
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
  transform: translateY(-2px);
}
.rs__stat > i {
  color: #055505;
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.rs__stat-number {
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1;
  color: #011a61;
}
.rs__stat-label {
  color: #515d6f;
  font-size: 0.88rem;
}
.rs__about-section {
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  padding: 1.5rem 1.6rem;
  display: grid;
  gap: 0.85rem;
}
.rs__about-section h2 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  color: #011a61;
}
.rs__about-section h2 i {
  color: #055505;
}
.rs__about-section p {
  margin: 0;
  color: #1c2430;
}
.rs__about-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.rs__about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(1, 26, 97, 0.03);
  border: 1px solid #dfe4ec;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  color: #1c2430;
}
.rs__about-list li i {
  color: #055505;
  margin-top: 0.2rem;
}
.rs__about-list li strong {
  color: #011a61;
}
.rs__about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(120deg, rgba(231, 178, 3, 0.12), rgba(231, 178, 3, 0.05));
  border: 1px solid rgba(231, 178, 3, 0.45);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
}
.rs__about-highlight > i {
  flex: 0 0 auto;
  color: #011a61;
  font-size: 1.6rem;
  margin-top: 0.15rem;
}
.rs__about-highlight strong {
  display: block;
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #011a61;
  margin-bottom: 0.35rem;
}
.rs__about-highlight p {
  margin: 0;
  color: #1c2430;
}
.rs__affiliations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.rs__affiliation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  padding: 0.6rem 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #011a61;
}
.rs__affiliation i {
  color: #055505;
}
.rs__contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.rs__contact-card {
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  padding: 1.5rem 1.6rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.rs__contact-card:hover {
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
  transform: translateY(-2px);
}
.rs__contact-card > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(1, 26, 97, 0.08);
  color: #011a61;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}
.rs__contact-card h3 {
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #011a61;
  margin: 0 0 0.5rem;
}
.rs__contact-card p {
  margin: 0 0 0.35rem;
  color: #1c2430;
}
.rs__contact-card a {
  color: #011a61;
  font-weight: 600;
  text-decoration: none;
}
.rs__contact-card a:hover {
  text-decoration: underline;
}
.rs__contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.rs__contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #f0f4fa;
  color: #011a61;
  transition: background 0.15s ease, color 0.15s ease;
}
.rs__contact-social a:hover {
  background: #055505;
  color: #fff;
}
.rs__contact-map {
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  overflow: hidden;
  aspect-ratio: 16/8;
}
.rs__contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.rs__auth-card {
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  padding: 1.75rem;
  max-width: 460px;
  margin: 0 auto;
}
.rs__auth-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #dfe4ec;
}
.rs__auth-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 0.5rem;
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #515d6f;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.rs__auth-tab:hover {
  color: #011a61;
}
.rs__auth-tab.is-active {
  color: #011a61;
  border-bottom-color: rgb(231, 178, 3);
}
.rs__auth-tab:focus-visible {
  outline: 3px solid rgb(231, 178, 3);
  outline-offset: 2px;
}
.rs__field {
  margin-bottom: 1.1rem;
}
.rs__field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: #1c2430;
  margin-bottom: 0.35rem;
}
.rs__field input,
.rs__field select {
  width: 100%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: #1c2430;
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.rs__field input:focus,
.rs__field select:focus {
  outline: none;
  border-color: rgb(231, 178, 3);
  box-shadow: 0 0 0 3px rgba(231, 178, 3, 0.2);
}
.rs__field small {
  display: block;
  margin-top: 0.3rem;
  color: #515d6f;
  font-size: 0.8rem;
}
.rs__field-error {
  border-color: #b42318 !important;
}
.rs__form-alert {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}
.rs__form-alert--danger {
  background: rgba(180, 35, 24, 0.08);
  color: #b42318;
  border: 1px solid rgba(180, 35, 24, 0.25);
}
.rs__form-alert--success {
  background: rgba(5, 85, 5, 0.08);
  color: #055505;
  border: 1px solid rgba(5, 85, 5, 0.25);
}
.rs__dashboard-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.rs__athlete-card {
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  padding: 1.3rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.rs__athlete-card h3 {
  margin-bottom: 0.2rem;
}
.rs__status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.rs__status-badge--bozza {
  background: rgba(231, 178, 3, 0.15);
  color: #92660a;
}
.rs__status-badge--inviata {
  background: rgba(1, 26, 97, 0.1);
  color: #011a61;
}
.rs__status-badge--completata {
  background: rgba(5, 85, 5, 0.1);
  color: #055505;
}
.rs__status-badge--nessuna {
  background: #f0f4fa;
  color: #515d6f;
}
.rs__wizard-card {
  background: #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  padding: 1.75rem;
}
.rs__wizard-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: #515d6f;
}
.rs__wizard-step-pill {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: #f0f4fa;
  white-space: nowrap;
}
.rs__wizard-step-pill.is-current {
  background: rgb(231, 178, 3);
  color: #24160a;
  font-weight: 700;
}
.rs__wizard-step-pill.is-done {
  background: rgba(5, 85, 5, 0.12);
  color: #055505;
}
.rs__wizard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}
@media (max-width: 560px) {
  .rs__wizard-grid {
    grid-template-columns: 1fr;
  }
}
.rs__wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #dfe4ec;
}
.rs__radio-group {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.4rem;
}
.rs__radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  cursor: pointer;
}
.rs__radio-group input {
  width: auto;
}
.rs__checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1rem;
}
.rs__checkbox-field input {
  width: auto;
  margin-top: 0.2rem;
}
.rs__checkbox-field label {
  font-weight: 500;
  cursor: pointer;
}
.rs__legal-text {
  max-height: 220px;
  overflow-y: auto;
  background: #f0f4fa;
  border: 1px solid #dfe4ec;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: #1c2430;
}
.rs__legal-text ol,
.rs__legal-text ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}
.rs__legal-text li {
  margin-bottom: 0.4rem;
}
.rs__summary-group {
  margin-bottom: 1.25rem;
}
.rs__summary-group h4 {
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #011a61;
  margin-bottom: 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #dfe4ec;
}
.rs__summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  font-size: 0.9rem;
}
.rs__summary-row dt {
  color: #515d6f;
}
.rs__summary-row dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}
.rs__quota-box {
  background: linear-gradient(120deg, rgba(231, 178, 3, 0.12), rgba(231, 178, 3, 0.05));
  border: 1px solid rgba(231, 178, 3, 0.45);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.25rem;
}
.rs__footer {
  background: #001858;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3rem;
  font-size: 0.92rem;
  line-height: 1.6;
}
.rs__footer-top {
  padding: 2.5rem 0 2rem;
}
.rs__footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 920px) {
  .rs__footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rs__footer-grid .rs__footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 560px) {
  .rs__footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .rs__footer-grid .rs__footer-brand {
    grid-column: auto;
  }
}
.rs__footer-heading {
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}
.rs__footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.rs__footer-brand img {
  width: 64px;
  height: auto;
  flex: 0 0 auto;
}
.rs__footer-brand strong {
  display: block;
  color: #fff;
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.rs__footer-brand p {
  margin: 0;
}
.rs__footer-meta {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}
.rs__footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.rs__footer-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}
.rs__footer-list a:hover, .rs__footer-list a:focus-visible {
  color: rgb(231, 178, 3);
}
.rs__footer-list a i {
  width: 1em;
  text-align: center;
}
.rs__footer-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.rs__footer-list span i {
  width: 1em;
  text-align: center;
  color: rgb(231, 178, 3);
}
.rs__footer-social {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: flex;
  gap: 0.6rem;
}
.rs__footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.rs__footer-social a:hover, .rs__footer-social a:focus-visible {
  background: rgb(231, 178, 3);
  color: #001858;
  transform: translateY(-2px);
}
.rs__footer-login {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.rs__footer-login:hover, .rs__footer-login:focus-visible {
  color: rgb(231, 178, 3);
}
.rs__footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.rs__footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.rs__modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.rs__modal[hidden] {
  display: none;
}
.rs__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 28, 0.6);
}
.rs__modal-panel {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
}
.rs__modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(28, 36, 48, 0.55);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
}
.rs__modal-close:hover {
  background: rgba(28, 36, 48, 0.8);
}
.rs__modal-media {
  position: relative;
  background: #dfe4ec;
  display: flex;
  justify-content: center;
  max-height: 70vh;
}
.rs__modal-media img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}
.rs__modal-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rs__modal-body h3 {
  font-size: 1.3rem;
  color: #011a61;
}
.rs__modal-body p {
  color: #1c2430;
  white-space: pre-line;
  line-height: 1.6;
  margin: 0.5rem 0 0.75rem;
}
.rs #rs-modal-pdf {
  align-self: flex-start;
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .rs *,
  .rs *::before,
  .rs *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rs .rs__skeleton-card::after,
  .rs .rs__skeleton-block::after {
    animation: none;
  }
  .rs .rs__card:hover,
  .rs .rs__card:active,
  .rs .rs__btn:hover,
  .rs .rs__btn:active {
    transform: none;
  }
  .rs .rs__card-media img {
    transform: none !important;
  }
}

/*# sourceMappingURL=site.css.map */
