/*
Theme Name: SRR Fresh
Theme URI: https://srr.stallmanager.eu
Author: SRR Team
Author URI: https://srr.stallmanager.eu
Description: Fresh custom base theme for Silver Rock Ranch relaunch.
Version: 2.6.1
Requires at least: 6.5
Tested up to: 6.9
Requires PHP: 8.1
Text Domain: srr-fresh
*/

:root {
  --bg: #edf2f7;
  --surface: #ffffff;
  --ink: #0f1720;
  --muted: #4b5563;
  --accent: #c7582c;
  --accent-2: #0c3f38;
  --line: rgba(15, 23, 32, 0.12);
  --bg-photo-top: rgba(237, 242, 247, 0.64);
  --bg-photo-mid: rgba(237, 242, 247, 0.74);
  --bg-photo-bottom: rgba(241, 245, 250, 0.82);
  --bg-photo-spot-1: rgba(226, 243, 227, 0.42);
  --bg-photo-spot-2: rgba(237, 242, 247, 0.24);
  --content-max: 1180px;
  --radius-xl: 28px;
  --radius-lg: 18px;
}

html[data-theme="dark"] {
  --bg: #0e1722;
  --surface: #142232;
  --ink: #e6eef8;
  --muted: #a8b4c5;
  --accent: #ff9f5b;
  --accent-2: #61d6c9;
  --line: rgba(222, 235, 252, 0.16);
  --bg-photo-top: rgba(14, 23, 34, 0.78);
  --bg-photo-mid: rgba(14, 23, 34, 0.83);
  --bg-photo-bottom: rgba(14, 23, 34, 0.88);
  --bg-photo-spot-1: rgba(35, 72, 62, 0.42);
  --bg-photo-spot-2: rgba(14, 23, 34, 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  background: transparent;
  position: relative;
  backdrop-filter: none;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, var(--bg-photo-top) 0%, var(--bg-photo-mid) 45%, var(--bg-photo-bottom) 100%),
    radial-gradient(circle at 15% 0%, var(--bg-photo-spot-1) 0%, var(--bg-photo-spot-2) 35%, transparent 100%),
    url("assets/img/backgrounds/horses-meadow-bg.jpg"),
    var(--bg);
  background-size: auto, auto, cover, auto;
  background-repeat: no-repeat;
  background-position: 0 0, 0 0, center center, 0 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.srr-container {
  width: min(calc(100% - 2.4rem), var(--content-max));
  margin-inline: auto;
}

.srr-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px) saturate(1.05);
  height: 130px;
  min-height: 130px;
}

html[data-theme="dark"] .srr-site-header {
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

body.admin-bar .srr-site-header {
  top: 32px;
}

.srr-site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  height: 130px;
  min-height: 130px;
  padding: 0;
}

.srr-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.srr-logo {
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%);
}

.srr-site-header.is-scrolled,
.srr-site-header.shrink,
body.scrolled .srr-site-header {
  height: 130px;
  min-height: 130px;
}

.srr-site-header.is-scrolled .srr-site-header__inner,
.srr-site-header.shrink .srr-site-header__inner,
body.scrolled .srr-site-header .srr-site-header__inner {
  height: 130px;
  min-height: 130px;
}

.srr-site-header.is-scrolled .srr-logo,
.srr-site-header.shrink .srr-logo,
body.scrolled .srr-site-header .srr-logo {
  width: 280px;
  min-width: 280px;
  max-width: 280px;
}

.srr-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.srr-header-mobile-controls {
  display: none;
  align-items: center;
  gap: 0.55rem;
}

.srr-nav-toggle {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.21rem;
  cursor: pointer;
  padding: 0;
}

.srr-member-icon-link {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.srr-member-icon-link:hover,
.srr-member-icon-link:focus-visible {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.srr-member-icon-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.srr-nav-toggle span {
  width: 0.96rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.srr-nav-open .srr-nav-toggle span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

body.srr-nav-open .srr-nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.srr-nav-open .srr-nav-toggle span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.srr-nav-backdrop {
  display: none;
}

.srr-submenu-toggle {
  display: none;
}

.srr-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.95rem;
  align-items: center;
  flex-wrap: wrap;
}

.srr-nav__list > li {
  position: relative;
}

.srr-nav__list > li.srr-mobile-only {
  display: none;
}

.srr-nav a {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.srr-nav a:hover,
.srr-nav a:focus-visible {
  color: var(--ink);
  border-color: var(--accent);
}

.srr-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  min-width: 170px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(15, 23, 32, 0.14);
  display: none;
  z-index: 30;
}

.srr-nav .menu-item-has-children:hover > .sub-menu,
.srr-nav .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

.srr-nav .sub-menu a {
  display: block;
  border-bottom: 0;
  padding: 0.5rem 0.55rem;
}

.srr-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--ink);
  color: #fff;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.srr-header-account {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.srr-header-account__name,
.srr-header-account__login {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  background: var(--surface);
}

.srr-theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  color: var(--ink);
  border-radius: 999px;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.srr-theme-toggle:hover,
.srr-theme-toggle:focus-visible {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.srr-theme-toggle__icon {
  position: absolute;
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  opacity: 0;
  transform: scale(0.8) rotate(-12deg);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.srr-theme-toggle__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.srr-theme-toggle__icon--moon svg {
  fill: currentColor;
  stroke: none;
}

.srr-theme-toggle[data-theme="light"] .srr-theme-toggle__icon--moon,
.srr-theme-toggle[data-theme="dark"] .srr-theme-toggle__icon--sun {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.srr-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.srr-header-account__name {
  background: linear-gradient(145deg, #fff2b8, #e1bc5a);
  border-color: #c49b38;
  color: #2b1a00;
}

.srr-header-account__name:hover,
.srr-header-account__name:focus-visible {
  background: linear-gradient(145deg, #ffefad, #d8ad44);
}

.srr-shell {
  overflow: hidden;
}

.srr-hero {
  padding: 2.3rem 0 1.6rem;
}

.srr-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.srr-hero__main {
  background:
    radial-gradient(circle at 20% 15%, rgba(199, 88, 44, 0.24), transparent 36%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(155deg, #111827 0%, #0c3f38 58%, #0a2b26 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 3.2rem);
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.srr-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 0.34rem 0.64rem;
  border-radius: 999px;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.srr-hero h1 {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 5vw, 5.1rem);
  max-width: 12ch;
}

.srr-hero p {
  margin-top: 1rem;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.srr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.srr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.82rem 1.18rem;
  font-weight: 600;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

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

.srr-btn--primary {
  background: var(--accent);
  color: #fff;
}

.srr-course-booking .srr-btn--primary:disabled {
  background: #9aa3ad;
  color: #ffffff;
  cursor: not-allowed;
  transform: none;
}

.srr-course-booking .srr-btn--primary:disabled:hover {
  transform: none;
}

.srr-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.srr-hero__panel {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.srr-kpi {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #fff, #f3f7fc);
}

.srr-kpi h3 {
  font-size: 1.08rem;
}

.srr-kpi p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.srr-metrics {
  padding: 0.4rem 0 1.8rem;
}

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

.srr-metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem;
}

.srr-metric span {
  display: inline-flex;
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 700;
}

.srr-metric h3 {
  margin-top: 0.2rem;
  font-size: 1.12rem;
}

.srr-metric p {
  margin-top: 0.48rem;
  color: var(--muted);
}

.srr-section {
  padding: 2.2rem 0;
}

.srr-section__head {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.srr-section__head h2 {
  font-size: clamp(1.5rem, 3vw, 3rem);
}

.srr-section__head p {
  color: var(--muted);
  max-width: 72ch;
}

.srr-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.8rem;
}

.srr-tour {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(15, 23, 32, 0.14);
}

.srr-tour iframe {
  display: block;
  width: 100%;
  height: min(74vh, 760px);
  border: 0;
}

.srr-tour--notice {
  padding: clamp(1rem, 2.5vw, 1.5rem);
  display: grid;
  gap: 0.8rem;
}

.srr-tour--notice p {
  color: var(--muted);
}

.srr-card {
  background: linear-gradient(150deg, #fff 0%, #eef4fb 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  min-height: 230px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.srr-card--large {
  min-height: 320px;
  background:
    linear-gradient(170deg, rgba(12, 63, 56, 0.95), rgba(17, 24, 39, 0.72)),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.2), transparent 40%);
  color: #fff;
}

.srr-card h3 {
  font-size: 1.3rem;
}

.srr-card p {
  margin-top: 0.45rem;
  color: inherit;
}

.srr-section--dark {
  padding-top: 2.9rem;
}

.srr-story {
  background: linear-gradient(145deg, #1b1918 0%, #11100f 100%);
  color: #f8f4ef;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2.6rem);
}

.srr-story h2 {
  font-size: clamp(1.45rem, 3vw, 2.8rem);
}

.srr-story p {
  margin-top: 0.8rem;
  color: rgba(248, 244, 239, 0.85);
  max-width: 58ch;
}

.srr-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.62rem;
}

.srr-steps li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 0.72rem 0.84rem;
}

.srr-steps strong {
  display: inline-block;
  margin-right: 0.42rem;
  color: #ffb89b;
}

.srr-cta {
  text-align: center;
  background: linear-gradient(150deg, #fff 0%, #e7eef8 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 3vw, 2.5rem);
}

.srr-cta h2 {
  font-size: clamp(1.4rem, 3vw, 2.6rem);
}

.srr-cta p {
  margin: 0.72rem auto 1.1rem;
  max-width: 56ch;
  color: var(--muted);
}

.srr-site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.srr-site-footer__grid {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1.25rem 0;
}

.srr-footer-col strong {
  display: block;
  margin-bottom: 0.4rem;
}

.srr-footer-col .srr-mini + .srr-mini {
  margin-top: 0.25rem;
}

.srr-footer-col span {
  font-weight: 600;
  color: var(--ink);
}

.srr-footer-col a {
  text-decoration-color: rgba(15, 23, 32, 0.32);
}

.srr-app-links {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
}

.srr-app-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 32, 0.14);
  width: 100px;
  height: 31px;
  background: #000;
  position: relative;
}

.srr-app-link > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

html[data-theme="dark"] .srr-app-link {
  box-shadow: 0 2px 10px rgba(2, 8, 18, 0.5);
}

.srr-app-link--web {
  background: linear-gradient(135deg, #101820, #132331);
}

.srr-web-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  width: 100%;
  height: 100%;
  padding: 0.45rem 0.55rem;
}

.srr-web-badge__logo {
  width: 0.92rem;
  height: 0.92rem;
  border-radius: 7px;
  display: block;
}

.srr-web-badge__text {
  display: grid;
  line-height: 1.02;
}

.srr-web-badge__title {
  color: #fff !important;
  font-size: 0.56rem;
  font-weight: 700;
}

.srr-app-link--store::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 7px;
  box-shadow: inset 0 0 0 3px #000;
  pointer-events: none;
}

.srr-app-link--store > img {
  width: 102%;
  height: 102%;
  object-fit: cover;
  transform-origin: center center;
  transform: scale(1.02);
}

.srr-app-link--ios > img {
  transform: scale(1.03);
}

.srr-app-link--mac > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.92);
  clip-path: inset(3px 2px 2px 2px);
}

.srr-app-link--mac::after {
  box-shadow: none;
}

.srr-app-link--google > img {
  transform: scale(1.03);
}

.srr-app-link--google::after {
  box-shadow: inset 0 0 0 4px #000;
}

@media (max-width: 760px) {
  .srr-app-link {
    width: 92px;
    height: 29px;
  }
}

@media (max-width: 460px) {
  .srr-app-links {
    gap: 0.38rem;
  }

  .srr-app-links > .srr-mini {
    width: 100%;
    margin-bottom: 0.12rem;
  }

  .srr-app-link {
    width: 88px;
    height: 28px;
  }
}

@media (max-width: 380px) {
  .srr-app-link {
    width: 84px;
    height: 26px;
  }

  .srr-web-badge__title {
    font-size: 0.5rem;
  }

}

.srr-app-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.srr-app-link:hover {
  transform: translateY(-1px);
}

.srr-app-link {
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.srr-app-link:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 32, 0.18);
}

html[data-theme="dark"] .srr-app-link:hover {
  box-shadow: 0 4px 14px rgba(2, 8, 18, 0.62);
}

.srr-footer-col--right {
  text-align: right;
}

.srr-footer-logo {
  width: 120px;
  height: auto;
  display: inline-block;
  margin-bottom: 0.35rem;
  filter: brightness(0) saturate(100%);
}

.srr-mini {
  color: var(--muted);
  font-size: 0.93rem;
}

.srr-site-footer__credit {
  border-top: 1px solid var(--line);
  padding: 0.55rem 0 0.75rem;
  text-align: center;
}

.srr-site-footer__credit p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.srr-post-list-head {
  margin-bottom: 1rem;
}

.srr-post-list-head h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.srr-post-preview,
.srr-single-post {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: 0 14px 28px rgba(15, 23, 32, 0.08);
}

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

.srr-post-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.srr-post-preview__thumb {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #0c3f38, #13243d);
  aspect-ratio: 37 / 25;
}

.srr-post-preview__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.srr-post-preview__thumb-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 1.2rem;
}

.srr-post-preview__thumb-fallback img {
  width: min(220px, 100%);
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%);
}

.srr-post-preview__title {
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  margin-bottom: 0.35rem;
}

.srr-post-preview__title a {
  text-decoration: none;
}

.srr-post-preview__meta {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
}

.srr-post-preview__excerpt p + p {
  margin-top: 0.8rem;
}

.srr-post-preview__excerpt p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.srr-post-preview__link,
.srr-single-back a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  color: var(--accent-2);
}

.srr-post-preview__link:hover,
.srr-single-back a:hover {
  color: var(--accent);
}

.srr-post-nav {
  margin-top: 1.4rem;
}

.srr-post-nav .page-numbers {
  display: inline-block;
  text-decoration: none;
  padding: 0.35rem 0.58rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-right: 0.32rem;
  background: #fff;
}

.srr-post-nav .page-numbers.current {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.srr-contact-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 1.5rem);
  display: grid;
  gap: 0.9rem;
}

.srr-contact-box h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.srr-contact-box > p {
  color: var(--muted);
}

.srr-contact-form {
  display: grid;
  gap: 0.8rem;
}

.srr-contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.srr-contact-form input,
.srr-contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.srr-contact-form textarea {
  resize: vertical;
  min-height: 170px;
}

.srr-contact-form input:focus,
.srr-contact-form textarea:focus {
  outline: 2px solid rgba(199, 88, 44, 0.25);
  border-color: var(--accent);
}

.srr-contact-form__captcha {
  max-width: 300px;
}

.srr-contact-form__honey {
  display: none !important;
}

.srr-form-note {
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  font-weight: 600;
}

.srr-form-note--success {
  border-color: rgba(12, 63, 56, 0.32);
  background: rgba(12, 63, 56, 0.08);
  color: #0c3f38;
}

.srr-form-note--error {
  border-color: rgba(199, 88, 44, 0.35);
  background: rgba(199, 88, 44, 0.08);
  color: #7a2f17;
}

.srr-contact-map {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.srr-contact-map h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

.srr-contact-map p {
  margin: 0;
  color: var(--muted);
}

.srr-contact-map__notice {
  font-size: 0.95rem;
}

.srr-contact-map iframe {
  width: 100%;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.srr-courses-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 1.5rem);
  display: grid;
  gap: 0.9rem;
}

.srr-courses-box h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.srr-sm-login-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.85rem;
  display: grid;
  gap: 0.6rem;
}

.srr-sm-login-box.is-logged-in {
  background: linear-gradient(145deg, #fff7da, #f6e4a0);
  border-color: #e3c86d;
}

.srr-member-tabs {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.srr-member-tabs__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.srr-member-tabs__link.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.srr-sm-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.srr-sm-dashboard__card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7fafd;
  padding: 0.7rem;
}

.srr-sm-dashboard .srr-btn--ghost {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.srr-sm-dashboard__card--full {
  grid-column: 1 / -1;
}

.srr-sm-dashboard__card h3 {
  margin: 0;
  font-size: 1rem;
}

.srr-sm-dashboard__value {
  margin: 0.45rem 0 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.srr-sm-dashboard__value.is-positive {
  color: #1f7a34;
}

.srr-sm-dashboard__value.is-zero {
  color: #a12626;
}

.srr-balance-positive {
  color: #1f7a34;
  font-weight: 700;
}

.srr-sm-dashboard__list {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
}

.srr-sm-dashboard__list li + li {
  margin-top: 0.4rem;
}

.srr-sm-dashboard__list strong,
.srr-sm-dashboard__list span,
.srr-sm-dashboard__list small {
  display: block;
}

.srr-sm-bookings-panel {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.5rem;
}

.srr-sm-bookings-panel label {
  display: grid;
  gap: 0.24rem;
  font-weight: 600;
}

.srr-sm-bookings-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.srr-sm-dashboard__list--all {
  max-height: 320px;
  overflow: auto;
  padding-right: 0.25rem;
}

.srr-sm-bookings-filter-form {
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: flex-end;
}

.srr-sm-bookings-filter-form label {
  display: grid;
  gap: 0.24rem;
  font-weight: 600;
  min-width: 220px;
}

.srr-sm-bookings-filter-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.srr-sm-course-actions {
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.srr-sm-course-actions > :last-child {
  margin-left: auto;
}

.srr-sm-pagination {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.srr-app-links--info {
  justify-content: center;
  width: 100%;
}

.srr-app-links--info > .srr-mini {
  display: none;
}

.srr-sm-table-wrap {
  margin-top: 0.55rem;
  width: 100%;
  overflow-x: auto;
}

.srr-sm-courses-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.srr-sm-courses-table th,
.srr-sm-courses-table td {
  text-align: left;
  padding: 0.55rem 0.6rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.srr-sm-courses-table th {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.srr-sm-courses-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

@media (max-width: 760px) {
  .srr-sm-courses-table {
    min-width: 100%;
  }

  .srr-sm-courses-table thead {
    display: none;
  }

  .srr-sm-courses-table,
  .srr-sm-courses-table tbody,
  .srr-sm-courses-table tr,
  .srr-sm-courses-table td {
    display: block;
    width: 100%;
  }

  .srr-sm-courses-table tr {
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 0.55rem;
    background: #fff;
    overflow: hidden;
  }

  .srr-sm-courses-table td {
    border-bottom: 1px solid var(--line);
  }

  .srr-sm-courses-table td:last-child {
    border-bottom: 0;
  }

  .srr-sm-courses-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 0.18rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
}

.srr-sm-redeem-form {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.5rem;
}

.srr-sm-redeem-form label {
  display: grid;
  gap: 0.26rem;
  font-weight: 600;
}

.srr-sm-redeem-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem 0.75rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.srr-sm-topup-form {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.5rem;
}

.srr-sm-topup-form label {
  display: grid;
  gap: 0.26rem;
  font-weight: 600;
}

.srr-sm-topup-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem 0.75rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.srr-sm-topup-form .srr-voucher-payments__option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}

.srr-sm-topup-form .srr-voucher-payments__option input {
  width: auto;
  margin: 0;
  padding: 0;
}

.srr-sm-horses-slider {
  display: grid;
  gap: 0.85rem;
}

.srr-sm-horses-slider__toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.srr-sm-horses-slider__search {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
  min-width: min(420px, 100%);
}

.srr-sm-horses-slider__search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem 0.78rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.srr-sm-horses-slider__nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.srr-sm-horses-slider__index {
  min-width: 64px;
  text-align: center;
  font-weight: 700;
}

.srr-sm-horse-slide {
  margin: 0;
}

.srr-sm-horse-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 44%) 1fr;
}

.srr-sm-horse-card__media {
  min-height: 360px;
  background: #e8edf3;
}

.srr-sm-horse-card__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.srr-sm-horse-card__noimage {
  height: 100%;
  min-height: 360px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
  padding: 1rem;
}

.srr-sm-horse-card__body {
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.srr-sm-horse-card__body h4 {
  margin: 0;
  font-size: clamp(1.3rem, 2.3vw, 1.9rem);
}

.srr-sm-horse-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.9rem;
}

.srr-sm-horse-card__facts p {
  margin: 0;
  display: grid;
  gap: 0.12rem;
}

.srr-sm-horse-card__facts span {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

.srr-sm-horse-card__facts strong {
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink);
}

.srr-sm-horse-card__info {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.srr-sm-horses-slider__empty {
  margin: 0;
}

.srr-sm-overlay {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.srr-sm-overlay[hidden] {
  display: none;
}

.srr-sm-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 22, 0.6);
}

.srr-sm-overlay__card {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
}

.srr-sm-overlay__card h3,
.srr-sm-overlay__card p {
  margin: 0;
}

.srr-sm-overlay__close {
  position: absolute;
  right: 0.55rem;
  top: 0.55rem;
  border: 1px solid var(--line);
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.srr-sm-login-box h2 {
  margin: 0;
  font-size: 1.12rem;
}

.srr-sm-login-box p {
  margin: 0;
  color: var(--muted);
}

.srr-sm-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.2rem;
}

.srr-sm-account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.srr-sm-login-form {
  display: grid;
  gap: 0.6rem;
  max-width: 480px;
  align-content: start;
  align-self: start;
}

.srr-sm-login-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
}

.srr-sm-login-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.srr-sm-register-box {
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.srr-sm-register-box h3 {
  margin: 0;
  font-size: 1rem;
}

.srr-sm-register-box p {
  margin: 0.25rem 0 0.55rem;
}

.srr-sm-auth-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.srr-sm-auth-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0.9rem;
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.srr-sm-auth-card .srr-sm-login-form {
  max-width: none;
}

.srr-sm-auth-card h3,
.srr-sm-auth-card p {
  margin: 0;
}

.srr-sm-service-form {
  display: grid;
  gap: 0.6rem;
  max-width: 620px;
}

.srr-sm-service-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
}

.srr-sm-service-form input,
.srr-sm-service-form select,
.srr-sm-service-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem 0.78rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.srr-sm-service-form textarea {
  resize: vertical;
}

.srr-sm-profile-form {
  margin-top: 0.7rem;
  margin-bottom: 0.9rem;
  max-width: 760px;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.srr-sm-profile-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
}

.srr-sm-profile-form input,
.srr-sm-profile-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem 0.78rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.srr-sm-profile-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 1px),
    calc(100% - 14px) calc(50% - 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

.srr-sm-profile-form > .srr-mini,
.srr-sm-profile-form > .srr-btn {
  grid-column: 1 / -1;
}

.srr-sm-password-form {
  margin-top: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.srr-sm-family-form {
  display: grid;
  gap: 0.55rem;
}

.srr-sm-family-form--create {
  margin-top: 0.7rem;
  margin-bottom: 0.9rem;
  max-width: none;
  width: 100%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
}

.srr-sm-family-form--create > .srr-btn {
  grid-column: 1 / -1;
  justify-self: start;
}

.srr-sm-family-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
}

.srr-sm-family-form input,
.srr-sm-family-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem 0.78rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.srr-sm-family-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 1px),
    calc(100% - 14px) calc(50% - 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

.srr-sm-family-grid {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.srr-sm-family-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.75rem;
  display: grid;
  gap: 0.65rem;
}

.srr-sm-family-card h4 {
  margin: 0;
}

.srr-sm-family-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.7rem;
}

.srr-sm-family-facts p {
  margin: 0;
  display: grid;
  gap: 0.1rem;
}

.srr-sm-family-facts span {
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

.srr-sm-family-facts strong {
  color: var(--ink);
}

.srr-sm-family-form--edit {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.srr-sm-family-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.srr-sm-subsection {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.srr-sm-subsection h4 {
  margin: 0 0 0.55rem;
}

.srr-sm-amount-positive {
  color: #1f8a43;
  font-weight: 700;
}

.srr-sm-amount-negative {
  color: #b6402b;
  font-weight: 700;
}

.srr-form-inline-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}

.srr-form-inline-check input {
  width: auto;
  margin: 0;
}

.srr-sm-service-form .srr-form-inline-check,
.srr-course-booking .srr-form-inline-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.srr-sm-service-form .srr-form-inline-check input,
.srr-course-booking .srr-form-inline-check input {
  width: auto;
  padding: 0;
  margin: 0;
}

.srr-sm-vet-stats {
  margin-top: 0.8rem;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.srr-sm-vet-stats li {
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--line) 84%, #fff);
  border-radius: 14px;
  background: linear-gradient(155deg, #ffffff, #f3f8ff);
  padding: 0.8rem 0.85rem;
  display: grid;
  gap: 0.2rem;
  box-shadow: 0 8px 18px rgba(8, 18, 33, 0.06);
}

.srr-sm-vet-stats li strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 700;
}

.srr-sm-vet-stats li span {
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  line-height: 1.1;
  font-weight: 800;
  color: #0e2a47;
}

.srr-sm-vet-panel {
  border: 1px solid color-mix(in srgb, var(--line) 82%, #fff);
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff, #f7fbff);
  padding: 0.95rem;
  box-shadow: 0 8px 22px rgba(8, 18, 33, 0.05);
}

.srr-sm-vet-panel h4 {
  margin-bottom: 0.7rem;
}

.srr-sm-vet-panel .srr-sm-service-form {
  max-width: none;
}

.srr-sm-vet-subnav {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.srr-sm-vet-subnav__item {
  border: 1px solid color-mix(in srgb, var(--line) 82%, #fff);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.44rem 0.78rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.srr-sm-vet-subnav__item.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.srr-vet-unit-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 0.55rem;
}

.srr-vet-unit-tile {
  display: grid;
  gap: 0.12rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.62rem 0.68rem;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease, background-color 0.16s ease;
}

.srr-vet-unit-tile:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 52%, var(--line));
  box-shadow: 0 8px 16px rgba(12, 28, 49, 0.12);
}

.srr-vet-unit-tile input {
  width: auto;
  margin: 0 0 0.22rem;
  padding: 0;
  justify-self: start;
}

.srr-vet-unit-tile:has(input:checked) {
  border-color: color-mix(in srgb, var(--accent) 65%, #1f3d5c);
  background: linear-gradient(155deg, color-mix(in srgb, var(--accent) 9%, #fff), #ffffff);
  box-shadow: 0 10px 20px rgba(13, 33, 58, 0.14);
}

.srr-vet-unit-tile__name {
  font-weight: 700;
  color: var(--ink);
}

.srr-vet-unit-tile__id {
  font-size: 0.8rem;
  color: var(--muted);
}

.srr-sm-vet-board {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0.75rem;
}

.srr-sm-vet-board__toolbar {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.srr-sm-vet-board__filters,
.srr-sm-vet-board__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.srr-sm-vet-filter,
.srr-sm-vet-area {
  border: 1px solid var(--line);
  background: #f7f9fc;
  color: var(--ink);
  border-radius: 10px;
  padding: 0.35rem 0.62rem;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
}

.srr-sm-vet-filter.is-active,
.srr-sm-vet-area.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.srr-sm-vet-box-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
}

.srr-sm-vet-box {
  border: 1px solid color-mix(in srgb, #ffffff 46%, rgba(24, 58, 35, 0.22));
  border-radius: 14px;
  min-height: 170px;
  padding: 0.6rem;
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: 0.25rem;
  cursor: pointer;
  color: #e9fff6;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.srr-sm-vet-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(8, 24, 40, 0.16);
  border-color: rgba(255, 255, 255, 0.8);
}

.srr-sm-vet-box--free {
  background: linear-gradient(160deg, #2d9f6b, #289562);
}

.srr-sm-vet-box--occupied {
  background: linear-gradient(160deg, #a24a4a, #8f3d3d);
}

.srr-sm-vet-box__title {
  justify-self: start;
  font-weight: 700;
}

.srr-sm-vet-box__number {
  justify-self: start;
  font-size: 0.78rem;
  opacity: 0.9;
}

.srr-sm-vet-box__state {
  margin-top: auto;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 800;
}

.srr-sm-vet-box__hint {
  font-size: 0.78rem;
  opacity: 0.88;
}

.srr-sm-vet-inline-movein {
  margin-bottom: 0.75rem;
  border: 1px solid color-mix(in srgb, var(--line) 70%, #fff);
  border-radius: 12px;
  background: #f7fbf8;
  padding: 0.72rem;
  display: grid;
  gap: 0.52rem;
}

.srr-sm-vet-inline-movein p {
  margin: 0;
}

.srr-sm-vet-inline-movein__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.srr-shop-box {
  max-width: 1120px;
}

.srr-shop-hero {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background: linear-gradient(145deg, #fff, #f3f7fc);
}

.srr-shop-hero h1 {
  margin: 0.15rem 0 0.45rem;
}

.srr-shop-hero p {
  margin: 0;
}

.srr-shop-hero__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.srr-shop-steps {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.srr-shop-step {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.75rem 0.85rem;
}

.srr-shop-step h3,
.srr-shop-step p {
  margin: 0;
}

.srr-shop-step p {
  margin-top: 0.3rem;
  color: var(--muted);
}

.srr-shop-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 1fr);
  gap: 0.85rem;
}

.srr-voucher-form {
  display: grid;
  gap: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.95rem;
}

.srr-voucher-form h2 {
  margin: 0;
}

.srr-voucher-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.srr-voucher-field {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
}

.srr-voucher-field--full {
  grid-column: 1 / -1;
}

.srr-voucher-form input,
.srr-voucher-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fcfdff;
  box-shadow: inset 0 1px 2px rgba(15, 23, 32, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.srr-voucher-form input:focus,
.srr-voucher-form textarea:focus {
  outline: none;
  border-color: rgba(199, 88, 44, 0.55);
  box-shadow: 0 0 0 3px rgba(199, 88, 44, 0.16);
  background: #fff;
}

.srr-voucher-form input[type="range"] {
  padding: 0;
  box-shadow: none;
  background: transparent;
}

.srr-voucher-form textarea {
  resize: vertical;
}

.srr-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.srr-voucher-payments {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  background: #fff;
}

.srr-voucher-payments legend {
  padding: 0 0.25rem;
  font-weight: 700;
}

.srr-voucher-payments__option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.srr-voucher-form .srr-voucher-payments__option {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

.srr-voucher-form .srr-voucher-payments__option + .srr-voucher-payments__option {
  margin-left: 0.9rem;
}

.srr-voucher-form .srr-voucher-payments__option input {
  width: auto;
  margin: 0;
}

.srr-voucher-form label.srr-voucher-terms {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  width: auto;
}

.srr-voucher-form .srr-voucher-terms input {
  width: auto;
  margin-top: 0;
  padding: 0;
  flex: 0 0 auto;
  align-self: center;
  justify-self: start;
}

.srr-voucher-terms a {
  color: var(--ink);
  text-decoration: underline;
}

.srr-shop-info {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.95rem;
}

.srr-voucher-preview {
  margin: 0 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
}

.srr-voucher-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.srr-voucher-preview figcaption {
  margin: 0;
  padding: 0.55rem 0.7rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.srr-shop-info h3 {
  margin: 0;
}

.srr-shop-info p {
  margin: 0.45rem 0 0;
}

.srr-shop-info__list {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.srr-shop-info__list li + li {
  margin-top: 0.3rem;
}

html[data-theme="dark"] .srr-courses-box,
html[data-theme="dark"] .srr-post-preview,
html[data-theme="dark"] .srr-shop-step,
html[data-theme="dark"] .srr-voucher-form,
html[data-theme="dark"] .srr-shop-info,
html[data-theme="dark"] .srr-sm-dashboard__card,
html[data-theme="dark"] .srr-course-calendar,
html[data-theme="dark"] .srr-team-card,
html[data-theme="dark"] .srr-animal-section,
html[data-theme="dark"] .srr-horse-slider,
html[data-theme="dark"] .srr-silver-page .section {
  background: var(--surface);
  border-color: var(--line);
}

html[data-theme="dark"] .srr-voucher-form input,
html[data-theme="dark"] .srr-voucher-form textarea,
html[data-theme="dark"] .srr-form input,
html[data-theme="dark"] .srr-form textarea,
html[data-theme="dark"] .srr-sm-profile-form input,
html[data-theme="dark"] .srr-sm-bookings-panel select,
html[data-theme="dark"] .srr-sm-bookings-filter-form select {
  background: #0f1a28;
  color: var(--ink);
  border-color: var(--line);
}

html[data-theme="dark"] .srr-member-tabs__link {
  background: #182534;
  border-color: var(--line);
  color: var(--ink);
}

html[data-theme="dark"] .srr-member-tabs__link.is-active {
  background: #f6e4a0;
  border-color: #f6e4a0;
  color: #1b2430;
}

html[data-theme="dark"] .srr-header-cta {
  background: linear-gradient(145deg, #ffb679, #ff9f5b);
  color: #111722;
}

html[data-theme="dark"] .srr-nav-toggle,
html[data-theme="dark"] .srr-submenu-toggle {
  background: #182b40;
  border-color: rgba(222, 235, 252, 0.2);
  color: #e6eef8;
}

html[data-theme="dark"] .srr-btn--primary {
  background: linear-gradient(145deg, #ffb679, #ff9f5b);
  color: #111722;
}

html[data-theme="dark"] .srr-btn--ghost {
  border-color: var(--line);
  background: rgba(230, 238, 248, 0.08);
  color: var(--ink);
}

html[data-theme="dark"] .srr-course-calendar .srr-btn--ghost,
html[data-theme="dark"] .srr-sm-dashboard .srr-btn--ghost {
  background: #1b2a3b;
  color: var(--ink);
}

html[data-theme="dark"] .srr-course-calendar__view-switch {
  background: #1a2737;
}

html[data-theme="dark"] .srr-course-calendar__view-switch .srr-btn.is-active {
  background: #2e4258;
  border-color: #2e4258;
}

html[data-theme="dark"] .srr-course-calendar__side-arrow,
html[data-theme="dark"] .srr-course-modal__close,
html[data-theme="dark"] .srr-sm-overlay__close {
  background: #1b2a3b;
  color: var(--ink);
  border-color: var(--line);
}

html[data-theme="dark"] .srr-gallery-slider__nav,
html[data-theme="dark"] .srr-animal-section__nav,
html[data-theme="dark"] .srr-horse-slider__nav,
html[data-theme="dark"] .srr-home-slider__arrow,
html[data-theme="dark"] .srr-horse-showcase__nav,
html[data-theme="dark"] .srr-inline-slider__nav {
  background: rgba(230, 238, 248, 0.16);
  color: #f8fbff;
  border-color: rgba(230, 238, 248, 0.26);
}

html[data-theme="dark"] .srr-home-slider__dot,
html[data-theme="dark"] .srr-gallery-slider__dot,
html[data-theme="dark"] .srr-animal-section__dot,
html[data-theme="dark"] .srr-horse-slider__dot,
html[data-theme="dark"] .srr-horse-showcase__dot,
html[data-theme="dark"] .srr-inline-slider__dot {
  background: rgba(230, 238, 248, 0.44);
  border: 1px solid rgba(230, 238, 248, 0.34);
}

html[data-theme="dark"] .srr-home-slider__dot.is-active,
html[data-theme="dark"] .srr-gallery-slider__dot.is-active,
html[data-theme="dark"] .srr-animal-section__dot.is-active,
html[data-theme="dark"] .srr-horse-slider__dot.is-active,
html[data-theme="dark"] .srr-horse-showcase__dot.is-active,
html[data-theme="dark"] .srr-inline-slider__dot.is-active {
  background: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 72%, #fff);
}

html[data-theme="dark"] button,
html[data-theme="dark"] input[type="submit"],
html[data-theme="dark"] input[type="button"],
html[data-theme="dark"] input[type="reset"] {
  color: var(--ink);
}

html[data-theme="dark"] .srr-shop-hero,
html[data-theme="dark"] .srr-voucher-payments,
html[data-theme="dark"] .srr-voucher-preview,
html[data-theme="dark"] .srr-voucher-form input:focus,
html[data-theme="dark"] .srr-voucher-form textarea:focus,
html[data-theme="dark"] .srr-course-calendar,
html[data-theme="dark"] .srr-course-calendar__controls select,
html[data-theme="dark"] .srr-course-calendar__day,
html[data-theme="dark"] .srr-course-list__item,
html[data-theme="dark"] .srr-course-modal__card,
html[data-theme="dark"] .srr-course-card,
html[data-theme="dark"] .srr-course-booking input,
html[data-theme="dark"] .srr-course-booking textarea,
html[data-theme="dark"] .srr-sm-profile-form select,
html[data-theme="dark"] .srr-sm-family-form input,
html[data-theme="dark"] .srr-sm-family-form select,
html[data-theme="dark"] .srr-contact-box,
html[data-theme="dark"] .srr-contact-form input,
html[data-theme="dark"] .srr-contact-form textarea,
html[data-theme="dark"] .srr-silver-page__lead,
html[data-theme="dark"] .srr-silver-page .ImgBorder,
html[data-theme="dark"] .srr-silver-page .tab-content,
html[data-theme="dark"] .srr-silver-page .swiper-container,
html[data-theme="dark"] .srr-gallery-slider,
html[data-theme="dark"] .srr-gallery-slider__item,
html[data-theme="dark"] .srr-animal-section,
html[data-theme="dark"] .srr-animal-section__slide a,
html[data-theme="dark"] .srr-horse-slider,
html[data-theme="dark"] .srr-horse-showcase,
html[data-theme="dark"] .srr-story-card,
html[data-theme="dark"] .srr-horse-showcase__thumb,
html[data-theme="dark"] .srr-team-card,
html[data-theme="dark"] .srr-team-card__media,
html[data-theme="dark"] .srr-team-card__photo,
html[data-theme="dark"] .srr-home-news__card,
html[data-theme="dark"] .srr-rental-card,
html[data-theme="dark"] .srr-rental-card__embed {
  background: #17273a;
  border-color: var(--line);
}

html[data-theme="dark"] .srr-course-participants,
html[data-theme="dark"] .srr-sm-family-card {
  background: #122131;
  border-color: var(--line);
}

html[data-theme="dark"] .srr-horse-showcase__hero,
html[data-theme="dark"] .srr-inline-slider__slide img,
html[data-theme="dark"] .srr-story-card__single img {
  border-color: var(--line);
}

html[data-theme="dark"] .srr-shop-step,
html[data-theme="dark"] .srr-shop-info,
html[data-theme="dark"] .srr-courses-box,
html[data-theme="dark"] .srr-post-preview,
html[data-theme="dark"] .srr-single-post,
html[data-theme="dark"] .srr-sm-login-box,
html[data-theme="dark"] .srr-sm-horse-card,
html[data-theme="dark"] .srr-sm-overlay__card,
html[data-theme="dark"] .srr-tour,
html[data-theme="dark"] .srr-kpi,
html[data-theme="dark"] .srr-metric,
html[data-theme="dark"] .srr-card:not(.srr-card--large),
html[data-theme="dark"] .srr-cta,
html[data-theme="dark"] .srr-home-panel {
  background: #152436;
  border-color: var(--line);
}

html[data-theme="dark"] .srr-voucher-preview figcaption,
html[data-theme="dark"] .srr-course-calendar__controls label,
html[data-theme="dark"] .srr-course-calendar__daynum,
html[data-theme="dark"] .srr-course-list__meta,
html[data-theme="dark"] .srr-course-list__details,
html[data-theme="dark"] .srr-course-list__empty,
html[data-theme="dark"] .srr-silver-page p,
html[data-theme="dark"] .srr-team-card__body p,
html[data-theme="dark"] .srr-team-card__facts li,
html[data-theme="dark"] .srr-home-news__card p,
html[data-theme="dark"] .srr-home-panel p,
html[data-theme="dark"] .srr-kpi p,
html[data-theme="dark"] .srr-metric p,
html[data-theme="dark"] .srr-cta p,
html[data-theme="dark"] .srr-shop-step p,
html[data-theme="dark"] .srr-shop-info p,
html[data-theme="dark"] .srr-mini {
  color: var(--muted);
}

html[data-theme="dark"] .srr-course-list__stat {
  background: #142232;
}

html[data-theme="dark"] [data-role="modal-datetime"],
html[data-theme="dark"] [data-role="modal-location"],
html[data-theme="dark"] [data-role="modal-instructor"],
html[data-theme="dark"] [data-role="modal-free-places"],
html[data-theme="dark"] [data-role="modal-price"] {
  background: #142232;
}

html[data-theme="dark"] .srr-course-addons {
  background: #142232;
}

html[data-theme="dark"] .srr-course-horse-assignment {
  background: linear-gradient(180deg, #132334 0%, #11202f 100%);
  border-color: var(--line);
}

html[data-theme="dark"] .srr-course-horse-assignment__hint {
  background: #1a344d;
  border-color: #325a7e;
  color: #dcecff;
}

html[data-theme="dark"] .srr-course-horse-assignment__note {
  color: #b8cde0;
}

html[data-theme="dark"] .srr-course-horse-assignment__participant-card {
  background: #162a3f;
  border-color: #325271;
}

html[data-theme="dark"] .srr-course-horse-assignment__participant-card h5 {
  color: #d9eaff;
}

html[data-theme="dark"] .srr-course-horse-assignment__toggle {
  color: #d7e9fb;
}

html[data-theme="dark"] .srr-course-horse-assignment__field select {
  border-color: #3b5b77;
  color: #e6f1fd;
  background-color: #102235;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%23d7e8fb' d='M1.646.646a.5.5 0 0 1 .708 0L7 5.293 11.646.646a.5.5 0 0 1 .708.708l-5 5a.5.5 0 0 1-.708 0l-5-5a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  box-shadow: 0 1px 2px rgba(2, 8, 14, 0.45);
}

html[data-theme="dark"] .srr-course-horse-assignment__field select:hover {
  border-color: #5f86a9;
  box-shadow: 0 2px 8px rgba(2, 8, 14, 0.55);
}

html[data-theme="dark"] .srr-course-horse-assignment__field select:focus {
  border-color: #78a7d0;
  box-shadow: 0 0 0 3px rgba(106, 166, 219, 0.25), 0 2px 9px rgba(2, 8, 14, 0.6);
}

html[data-theme="dark"] .srr-course-horse-assignment__field select:disabled {
  color: #9eb2c6;
  border-color: #324960;
  background-color: #0f1c2b;
}

html[data-theme="dark"] .srr-course-horse-assignment__field select.is-match {
  border-color: #4f9b66;
  background-color: #0f2b1a;
}

html[data-theme="dark"] .srr-course-horse-assignment__field select.is-mismatch {
  border-color: #bf6363;
  background-color: #2f1414;
}

html[data-theme="dark"] .srr-course-subscription {
  background: #152638;
  border-color: #31506b;
}

html[data-theme="dark"] .srr-course-subscription__payment-select {
  border-color: #3b5b77;
  color: #e6f1fd;
  background-color: #102235;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%23d7e8fb' d='M1.646.646a.5.5 0 0 1 .708 0L7 5.293 11.646.646a.5.5 0 0 1 .708.708l-5 5a.5.5 0 0 1-.708 0l-5-5a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  box-shadow: 0 1px 2px rgba(2, 8, 14, 0.45);
}

html[data-theme="dark"] .srr-course-subscription__payment-select:hover {
  border-color: #5f86a9;
  box-shadow: 0 2px 8px rgba(2, 8, 14, 0.55);
}

html[data-theme="dark"] .srr-course-subscription__payment-select:focus {
  border-color: #78a7d0;
  box-shadow: 0 0 0 3px rgba(106, 166, 219, 0.25), 0 2px 9px rgba(2, 8, 14, 0.6);
}

html[data-theme="dark"] .srr-course-series-slots__toggle {
  background: #102235;
  border-color: #3b5b77;
  color: #e6f1fd;
}

html[data-theme="dark"] .srr-course-series-slots__toggle:hover {
  border-color: #5f86a9;
  background: #16304a;
}

html[data-theme="dark"] .srr-course-horse-assignment__chip {
  border-color: #426584;
  background: #13273b;
  color: #d6e8fa;
}

html[data-theme="dark"] .srr-course-horse-assignment__chip:hover {
  border-color: #6f97ba;
}

html[data-theme="dark"] .srr-course-horse-assignment__chip:focus-visible {
  border-color: #7db1df;
  box-shadow: 0 0 0 3px rgba(104, 171, 226, 0.26);
}

html[data-theme="dark"] .srr-course-horse-assignment__chip.is-active {
  color: #f4fbff;
  border-color: #5ea4d8;
  background: linear-gradient(180deg, #2f6793 0%, #264f73 100%);
  box-shadow: 0 4px 10px rgba(4, 12, 20, 0.5);
}

html[data-theme="dark"] .srr-silver-page h2,
html[data-theme="dark"] .srr-silver-page h3,
html[data-theme="dark"] .srr-silver-page h4,
html[data-theme="dark"] .srr-team-card__name,
html[data-theme="dark"] .srr-home-panel h3,
html[data-theme="dark"] .srr-kpi h3,
html[data-theme="dark"] .srr-metric h3,
html[data-theme="dark"] .srr-cta h2,
html[data-theme="dark"] .srr-shop-hero h1,
html[data-theme="dark"] .srr-shop-step h3,
html[data-theme="dark"] .srr-shop-info h3,
html[data-theme="dark"] .srr-course-card h2 {
  color: var(--ink);
}

html[data-theme="dark"] .srr-home-panel .srr-btn--ghost {
  background: #264564;
  color: #f4f8ff;
  border-color: #3d658d;
}

html[data-theme="dark"] .srr-home-news__card img.srr-home-news__logo {
  background: #17273a;
}

html[data-theme="dark"] .srr-silver-page .orange,
html[data-theme="dark"] .srr-horse-slide__body h3,
html[data-theme="dark"] .srr-course-modal__tiers-list li.is-current {
  color: #ffb679;
}

html[data-theme="dark"] .srr-course-calendar__day.is-outside {
  background: #122133;
  opacity: 0.72;
}

html[data-theme="dark"] .srr-course-calendar__day.is-today {
  background: linear-gradient(180deg, #20344a, #1b2d41);
  box-shadow: inset 0 0 0 1px rgba(255, 159, 91, 0.42);
}

html[data-theme="dark"] .srr-course-calendar__day.is-today .srr-course-calendar__daynum {
  color: #ffd3ad;
}

html[data-theme="dark"] .srr-course-calendar__event {
  background: rgba(255, 159, 91, 0.16);
  border-color: rgba(255, 159, 91, 0.34);
  color: #ffe7d2;
}

html[data-theme="dark"] .srr-course-calendar__event:hover {
  background: rgba(255, 159, 91, 0.24);
}

html[data-theme="dark"] .srr-form-note--success {
  color: #a8f0c7;
  background: rgba(41, 122, 83, 0.2);
  border-color: rgba(104, 212, 156, 0.35);
}

html[data-theme="dark"] .srr-form-note--error {
  color: #ffd4c2;
  background: rgba(144, 53, 28, 0.24);
  border-color: rgba(255, 159, 91, 0.35);
}

html[data-theme="dark"] .srr-site-footer {
  background: rgba(18, 30, 44, 0.84);
}

html[data-theme="dark"] .srr-footer-logo,
html[data-theme="dark"] .srr-logo,
html[data-theme="dark"] .srr-post-preview__thumb-fallback img {
  filter: brightness(0) invert(1) saturate(0);
}

html[data-theme="dark"] .srr-post-preview__thumb-fallback {
  background: #e9eef5;
}

html[data-theme="dark"] .srr-post-preview__thumb-fallback img {
  filter: brightness(0) saturate(100%);
}

html[data-theme="dark"] .srr-sm-login-form input,
html[data-theme="dark"] .srr-sm-redeem-form input,
html[data-theme="dark"] .srr-sm-topup-form input,
html[data-theme="dark"] .srr-sm-horses-slider__search input,
html[data-theme="dark"] .srr-sm-service-form input,
html[data-theme="dark"] .srr-sm-service-form select,
html[data-theme="dark"] .srr-sm-service-form textarea {
  background: #0f1a28;
  color: var(--ink);
  border-color: var(--line);
}

html[data-theme="dark"] .srr-sm-service-form input::placeholder,
html[data-theme="dark"] .srr-sm-service-form textarea::placeholder,
html[data-theme="dark"] .srr-sm-login-form input::placeholder,
html[data-theme="dark"] .srr-sm-redeem-form input::placeholder,
html[data-theme="dark"] .srr-sm-topup-form input::placeholder,
html[data-theme="dark"] .srr-sm-horses-slider__search input::placeholder {
  color: #9fb1c8;
  opacity: 1;
}

html[data-theme="dark"] .srr-sm-amount-positive {
  color: #74d68f;
}

html[data-theme="dark"] .srr-sm-amount-negative {
  color: #ff9b82;
}

html[data-theme="dark"] .srr-sm-service-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.15);
  opacity: 0.95;
}

html[data-theme="dark"] .srr-sm-vet-panel {
  background: linear-gradient(155deg, #13243a, #172b42);
  border-color: var(--line);
}

html[data-theme="dark"] .srr-sm-vet-subnav__item {
  background: #122132;
  color: #dbe9f8;
  border-color: var(--line);
}

html[data-theme="dark"] .srr-sm-vet-subnav__item.is-active {
  background: #f6e4a0;
  color: #1b2430;
  border-color: #f6e4a0;
}

html[data-theme="dark"] .srr-sm-vet-stats li {
  background: linear-gradient(150deg, #16283d, #102034);
  border-color: var(--line);
}

html[data-theme="dark"] .srr-sm-vet-stats li span {
  color: #f2f8ff;
}

html[data-theme="dark"] .srr-vet-unit-tile {
  background: #0f1d2f;
  border-color: var(--line);
}

html[data-theme="dark"] .srr-vet-unit-tile:has(input:checked) {
  background: linear-gradient(155deg, #1b3550, #11283f);
  border-color: #6ba6d8;
}

html[data-theme="dark"] .srr-vet-unit-tile__name {
  color: #ecf5ff;
}

html[data-theme="dark"] .srr-sm-vet-board {
  background: #122132;
  border-color: var(--line);
}

html[data-theme="dark"] .srr-sm-vet-filter,
html[data-theme="dark"] .srr-sm-vet-area {
  background: #0f1b2a;
  color: #dce9f8;
  border-color: var(--line);
}

html[data-theme="dark"] .srr-sm-vet-filter.is-active,
html[data-theme="dark"] .srr-sm-vet-area.is-active {
  background: #f6e4a0;
  color: #1b2430;
  border-color: #f6e4a0;
}

html[data-theme="dark"] .srr-sm-vet-inline-movein {
  background: #102033;
  border-color: var(--line);
}

html[data-theme="dark"] .srr-form-inline-check input[type="checkbox"],
html[data-theme="dark"] .srr-voucher-form input[type="checkbox"] {
  accent-color: var(--accent);
}

html[data-theme="dark"] .srr-balance-positive {
  color: #72e0a5;
}

.srr-courses-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.srr-course-calendar {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfdff, #f5f8fc);
  padding: 0.9rem;
}

.srr-course-calendar__toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.srr-course-calendar__nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.srr-course-calendar__list-filters {
  display: flex;
  flex: 1 1 auto;
  align-items: end;
  justify-content: space-between;
  gap: 0.9rem;
  min-width: min(100%, 32rem);
}

.srr-course-calendar__category-links {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.srr-course-calendar__category-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  font: inherit;
  font-size: 0.94rem;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.srr-course-calendar__category-link:hover {
  background: #f4f7fb;
}

.srr-course-calendar__category-link.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 32, 0.12);
}

.srr-course-calendar__toolbar h2 {
  margin: 0;
  text-transform: capitalize;
  font-size: clamp(1.1rem, 2.3vw, 1.4rem);
}

.srr-course-calendar__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.55rem;
}

.srr-course-calendar__controls label {
  display: grid;
  gap: 0.22rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.srr-course-calendar__list-filter {
  display: grid;
  gap: 0.22rem;
  min-width: 220px;
  font-size: 0.8rem;
  color: var(--muted);
}

.srr-course-calendar__controls select {
  min-width: 118px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0.34rem 0.45rem;
  font: inherit;
}

.srr-course-calendar__list-filter select {
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0.34rem 0.45rem;
  font: inherit;
}

.srr-course-calendar__view-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f3f6fa;
}

.srr-course-calendar__view-switch .srr-btn {
  min-width: 64px;
}

.srr-course-calendar .srr-btn--ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.srr-course-calendar__view-switch .srr-btn.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.srr-course-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.srr-course-calendar__weekdays span {
  text-align: right;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 700;
}

.srr-course-calendar__frame {
  position: relative;
  padding-inline: 2rem;
}

.srr-course-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.srr-course-calendar.is-list-view .srr-course-calendar__grid {
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.srr-course-calendar.is-list-view .srr-course-calendar__nav {
  flex: 1 1 auto;
  width: 100%;
}

.srr-course-calendar.is-list-view .srr-course-calendar__nav > .srr-btn--ghost,
.srr-course-calendar.is-list-view [data-role="month-label"] {
  display: none;
}

.srr-course-calendar.is-list-view .srr-course-calendar__controls label:nth-child(1),
.srr-course-calendar.is-list-view .srr-course-calendar__controls label:nth-child(2) {
  display: none;
}

.srr-course-calendar.is-list-view .srr-course-calendar__controls {
  margin-left: auto;
}

.srr-course-calendar.is-list-view .srr-course-calendar__side-arrow {
  opacity: 0.35;
  pointer-events: none;
}

.srr-course-calendar__side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.srr-course-calendar__side-arrow.is-left {
  left: 0;
}

.srr-course-calendar__side-arrow.is-right {
  right: 0;
}

.srr-course-calendar__side-arrow:hover {
  background: #f4f7fb;
}

.srr-course-calendar__day {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.32rem;
  display: grid;
  align-content: start;
  gap: 0.3rem;
}

.srr-course-calendar__day.is-outside {
  background: #f5f7fb;
  opacity: 0.68;
}

.srr-course-calendar__day.is-today {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(199, 88, 44, 0.35);
  background: linear-gradient(180deg, #fff, #fff7f3);
}

.srr-course-calendar__day.is-today .srr-course-calendar__daynum {
  color: #7a2f17;
  font-weight: 700;
}

.srr-course-calendar__daynum {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  color: var(--muted);
}

.srr-course-calendar__day:focus-visible {
  outline: 2px solid rgba(199, 88, 44, 0.35);
  outline-offset: 2px;
}

.srr-course-calendar__event {
  border: 1px solid rgba(199, 88, 44, 0.25);
  background: rgba(199, 88, 44, 0.09);
  color: #572111;
  border-radius: 8px;
  padding: 0.3rem 0.38rem;
  text-align: left;
  font-size: 0.78rem;
  line-height: 1.25;
  cursor: pointer;
}

.srr-course-calendar__event:hover {
  background: rgba(199, 88, 44, 0.17);
}

.srr-course-list__item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  padding: 0.9rem;
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  box-shadow: 0 8px 20px rgba(15, 23, 32, 0.05);
}

.srr-course-list__item.is-no-media {
  grid-template-columns: 1fr;
}

.srr-course-list__media {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eef2f7;
  aspect-ratio: 1 / 1;
}

@media (max-width: 900px) {
  .srr-course-calendar__list-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .srr-course-calendar__list-filter,
  .srr-course-calendar__list-filter select {
    min-width: 0;
    width: 100%;
  }
}

.srr-course-list__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.srr-course-list__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0;
}

.srr-course-list__stat {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  padding: 0.45rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.srr-course-list__stat strong {
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.srr-course-list__stat span {
  color: var(--muted);
  font-size: 0.96rem;
  word-break: break-word;
}

.srr-course-list__content {
  display: grid;
  gap: 0.55rem;
}

.srr-course-list__title {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.25;
}

.srr-course-list__meta,
.srr-course-list__details,
.srr-course-list__short,
.srr-course-list__empty {
  margin: 0;
  color: var(--muted);
}

.srr-course-list__short {
  color: var(--ink);
  font-weight: 500;
  margin-top: 0.08rem;
  line-height: 1.45;
}

.srr-course-list__action {
  justify-self: start;
  margin-top: 0.25rem;
}

.srr-course-calendar.is-list-view .srr-course-calendar__weekdays {
  display: none !important;
}

.srr-course-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.srr-course-modal[hidden] {
  display: none;
}

.srr-course-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 22, 0.6);
}

.srr-course-modal__card {
  position: relative;
  box-sizing: border-box;
  width: min(1120px, calc(100vw - 1.5rem));
  max-width: calc(100vw - 1.5rem);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1rem;
  z-index: 1;
}

.srr-course-modal__media {
  margin-bottom: 0.7rem;
  margin-inline: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e8eef5;
  width: min(220px, 100%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.srr-course-modal__media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 760px) {
  .srr-course-modal__media {
    width: min(170px, 100%);
  }
}

.srr-course-modal__card > p {
  margin: 0.2rem 0;
}

[data-role="modal-datetime"],
[data-role="modal-location"],
[data-role="modal-instructor"],
[data-role="modal-free-places"],
[data-role="modal-price"] {
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbff;
}

.srr-course-modal__close {
  position: absolute;
  right: 0.55rem;
  top: 0.55rem;
  border: 1px solid var(--line);
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

[data-role="modal-shorttext"] {
  font-weight: 600;
}

[data-role="modal-longtext"] {
  white-space: pre-line;
}

.srr-course-modal__tiers-title {
  margin: 0.25rem 0 0.35rem;
  font-weight: 600;
  color: var(--ink);
}

.srr-course-modal__tiers-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.srr-course-modal__tiers-list li.is-current {
  color: #7a2f17;
  font-weight: 700;
}

body.srr-modal-open {
  overflow: hidden;
}

.srr-course-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  background: #fff;
  display: grid;
  gap: 0.5rem;
}

.srr-course-card h2 {
  font-size: 1.2rem;
  margin: 0;
}

.srr-course-booking {
  margin-top: 0.4rem;
  display: grid;
  gap: 0.6rem;
}

.srr-course-booking > * {
  min-width: 0;
}

.srr-course-booking fieldset {
  min-inline-size: 0;
}

.srr-course-booking label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.srr-course-booking input,
.srr-course-booking textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.srr-course-booking textarea {
  resize: vertical;
  min-height: 110px;
}

.srr-course-participants {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 0.6rem;
  background: #f8fbff;
  display: grid;
  gap: 0.4rem;
}

.srr-course-participants legend {
  font-weight: 700;
  padding: 0 0.25rem;
}

.srr-course-participants__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.srr-course-participants__item input {
  width: auto;
  margin: 0;
  padding: 0;
}

.srr-course-addons {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 0.6rem;
  background: #f8fbff;
  display: grid;
  gap: 0.45rem;
}

.srr-course-addons legend {
  font-weight: 700;
  padding: 0 0.25rem;
}

.srr-course-addons__list {
  display: grid;
  gap: 0.35rem;
}

.srr-course-addons__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: start;
  font-weight: 600;
}

.srr-course-addons__item small {
  display: block;
  color: var(--muted);
  font-weight: 500;
}

.srr-course-addons__empty[hidden] {
  display: none;
}

[data-role="course-total"] {
  font-weight: 700;
}

.srr-course-subscription {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 0.6rem 0.65rem;
  background: #f8fbff;
  display: grid;
  gap: 0.45rem;
}

.srr-course-subscription legend {
  font-weight: 700;
  padding: 0 0.25rem;
}

.srr-course-subscription__payment {
  display: grid;
  gap: 0.32rem;
  font-weight: 700;
}

.srr-course-subscription__payment-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 44px;
  padding: 0.58rem 2.35rem 0.58rem 0.76rem;
  border-radius: 12px;
  border: 1px solid #9eb8cd;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%231a3248' d='M1.646.646a.5.5 0 0 1 .708 0L7 5.293 11.646.646a.5.5 0 0 1 .708.708l-5 5a.5.5 0 0 1-.708 0l-5-5a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 14px 9px;
  box-shadow: 0 1px 2px rgba(12, 26, 41, 0.08);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.srr-course-subscription__payment-select:hover {
  border-color: #789bb7;
  box-shadow: 0 2px 8px rgba(18, 43, 68, 0.08);
}

.srr-course-subscription__payment-select:focus {
  outline: none;
  border-color: #3f7ca6;
  box-shadow: 0 0 0 3px rgba(74, 135, 178, 0.2), 0 2px 8px rgba(18, 43, 68, 0.12);
}

.srr-course-subscription__payment-select:disabled {
  color: #6b7785;
  border-color: #c3cfda;
  background-color: #f5f8fb;
  box-shadow: none;
  cursor: not-allowed;
}

.srr-course-subscription__range input[type="range"] {
  width: 100%;
}

.srr-course-series-slots__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.5rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid #9bb1c6;
  border-radius: 999px;
  background: #fff;
  color: #1d2f44;
  font-weight: 700;
  cursor: pointer;
}

.srr-course-series-slots__toggle:hover {
  border-color: #6f8daa;
  background: #f1f6fb;
}

.srr-course-series-slots__toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(68, 130, 176, 0.25);
}

.srr-course-series-slots__toggle[hidden] {
  display: none;
}

.srr-course-horse-assignment {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.65rem 0.75rem 0.75rem;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f9ff 100%);
  display: grid;
  gap: 0.55rem;
}

.srr-course-horse-assignment legend {
  font-weight: 800;
  padding: 0 0.28rem;
}

.srr-course-horse-assignment__hint {
  margin: 0;
  border: 1px solid #bfd9f1;
  background: #eaf5ff;
  color: #16324c;
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  font-size: 0.92rem;
  line-height: 1.35;
}

.srr-course-horse-assignment__grid {
  display: grid;
  gap: 0.5rem;
}

.srr-course-horse-assignment__field {
  display: grid;
  gap: 0.32rem;
  font-weight: 700;
}

.srr-course-horse-assignment__field select,
.srr-course-horse-assignment__field input {
  background: #fff;
}

.srr-course-horse-assignment__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 46px;
  padding: 0.62rem 2.45rem 0.62rem 0.78rem;
  border-radius: 12px;
  border: 1px solid #9eb8cd;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%231a3248' d='M1.646.646a.5.5 0 0 1 .708 0L7 5.293 11.646.646a.5.5 0 0 1 .708.708l-5 5a.5.5 0 0 1-.708 0l-5-5a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 14px 9px;
  box-shadow: 0 1px 2px rgba(12, 26, 41, 0.08);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.srr-course-horse-assignment__field select:hover {
  border-color: #789bb7;
  box-shadow: 0 2px 8px rgba(18, 43, 68, 0.08);
}

.srr-course-horse-assignment__field select:focus {
  outline: none;
  border-color: #3f7ca6;
  box-shadow: 0 0 0 3px rgba(74, 135, 178, 0.2), 0 2px 8px rgba(18, 43, 68, 0.12);
}

.srr-course-horse-assignment__field select:disabled {
  color: #6b7785;
  border-color: #c3cfda;
  background-color: #f5f8fb;
  box-shadow: none;
  cursor: not-allowed;
}

.srr-course-horse-assignment__field select.is-match {
  border-color: #5aa66f;
  background-color: #f2fcf5;
}

.srr-course-horse-assignment__field select.is-mismatch {
  border-color: #d06060;
  background-color: #fff4f4;
}

.srr-course-horse-assignment__segment {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.srr-course-horse-assignment__chip {
  appearance: none;
  border: 1px solid #aac6db;
  background: #fff;
  color: #18354f;
  border-radius: 999px;
  min-height: 38px;
  padding: 0.48rem 0.72rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.srr-course-horse-assignment__chip:hover {
  border-color: #7fa8c7;
  box-shadow: 0 2px 8px rgba(18, 43, 68, 0.1);
}

.srr-course-horse-assignment__chip:focus-visible {
  outline: none;
  border-color: #3f7ca6;
  box-shadow: 0 0 0 3px rgba(74, 135, 178, 0.22);
}

.srr-course-horse-assignment__chip.is-active {
  color: #fff;
  border-color: #1f5e8b;
  background: linear-gradient(180deg, #2d78aa 0%, #1e5d88 100%);
  box-shadow: 0 4px 10px rgba(23, 74, 110, 0.28);
}

.srr-course-horse-assignment__chip:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  box-shadow: none;
}

.srr-course-horse-assignment__note {
  margin: 0;
  color: #2f536f;
}

.srr-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.srr-course-horse-assignment__participants {
  display: grid;
  gap: 0.45rem;
}

.srr-course-horse-assignment__toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
  font-weight: 700;
  color: #193850;
}

.srr-course-horse-assignment__toggle input {
  width: auto;
  margin: 0;
  padding: 0;
}

.srr-course-horse-assignment__participant-intro {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.srr-course-horse-assignment__participant-card {
  border: 1px solid #c8deef;
  border-radius: 11px;
  padding: 0.55rem 0.6rem;
  background: #fdfefe;
  display: grid;
  gap: 0.4rem;
}

.srr-course-horse-assignment__participant-card h5 {
  margin: 0;
  font-size: 0.95rem;
  color: #173654;
}

.srr-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 0.8rem;
}

.srr-cookie-banner__inner {
  width: min(calc(100% - 1.6rem), 980px);
  margin: 0 auto;
  background: #0f1720;
  color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.85rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: space-between;
}

.srr-cookie-banner__inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.srr-cookie-banner__inner a {
  text-decoration: underline;
}

.srr-cookie-banner .srr-btn {
  white-space: nowrap;
}

.srr-single-back {
  margin-bottom: 0.9rem;
}

.srr-single-post h1 {
  margin-bottom: 0.4rem;
}

.srr-single-post p + p {
  margin-top: 0.8rem;
}

.srr-single-post img {
  max-width: 100%;
  height: auto;
}

.srr-silver-page {
  display: grid;
  gap: 1rem;
}

.srr-silver-page__lead {
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, #fffdf8, #f7efe3);
  color: var(--ink);
  font-weight: 600;
  max-width: 100%;
  overflow: hidden;
}

.srr-silver-page .section {
  margin: 0;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 8px 22px rgba(15, 23, 32, 0.08);
}

.srr-silver-page .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.srr-silver-page h2,
.srr-silver-page h3,
.srr-silver-page h4 {
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.srr-silver-page p {
  margin: 0;
  color: #263241;
  line-height: 1.62;
}

.srr-silver-page p + p {
  margin-top: 0.7rem;
}

.srr-silver-page .ImgBorder {
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(15, 23, 32, 0.12);
  background: #fff;
  max-width: 100%;
}

.srr-silver-page .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.srr-silver-page [class*="col-"] {
  width: auto;
  max-width: none;
  padding: 0;
}

.srr-silver-page .unit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.srr-silver-page .tab-content {
  margin-top: 0.6rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.srr-silver-page .orange {
  color: #ba5f28;
}

.srr-silver-page .section.is-legacy-hidden {
  display: none;
}

.srr-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.srr-team-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 12px 24px rgba(15, 23, 32, 0.12);
}

.srr-team-card__media {
  padding: 0.75rem 0.75rem 0.45rem;
  background: linear-gradient(145deg, #eff6ff, #fdf7ec);
}

.srr-team-card__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.srr-team-card__photo {
  width: min(100%, 180px);
  height: 180px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: block;
}

.srr-team-card__photo:first-child {
  justify-self: start;
}

.srr-team-card__photo:nth-child(2) {
  justify-self: end;
}

.srr-team-card__body {
  padding: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.srr-team-card__name {
  margin: 0;
}

.srr-team-card__facts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.srr-team-card__facts li {
  position: relative;
  padding-left: 1.05rem;
  color: #223244;
  font-weight: 600;
}

.srr-team-card__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.srr-team-card__body p {
  margin: 0;
  color: #314154;
}

.srr-silver-page .swiper-container {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  background: #fff;
  padding: 0.5rem;
  height: auto !important;
  scroll-snap-type: x mandatory;
}

.srr-silver-page .swiper-wrapper {
  display: flex;
  gap: 0.65rem;
}

.srr-silver-page .swiper-slide {
  flex: 0 0 min(88%, 420px);
  scroll-snap-align: start;
}

.srr-silver-page .swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.srr-silver-page--gallery {
  gap: 1.25rem;
}

.srr-silver-page__gallery-note {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.srr-gallery-year {
  display: grid;
  gap: 0.55rem;
}

.srr-gallery-year__title {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: var(--ink);
}

.srr-gallery-slider {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f6f9fd);
  box-shadow: 0 12px 30px rgba(15, 23, 32, 0.14);
  padding: 0.8rem 3rem 1.2rem;
}

.srr-gallery-slider__viewport {
  overflow: hidden;
}

.srr-gallery-slider__track {
  display: flex;
  transition: transform 0.35s ease;
}

.srr-gallery-slider__slide {
  min-width: 100%;
  margin: 0;
}

.srr-gallery-slider__item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.srr-gallery-slider__item img {
  width: 100%;
  height: min(68vh, 640px);
  object-fit: cover;
  display: block;
}

.srr-gallery-slider__nav {
  position: absolute;
  top: calc(50% - 26px);
  width: 42px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(15, 23, 32, 0.72);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.srr-gallery-slider__nav--prev {
  left: 0.65rem;
}

.srr-gallery-slider__nav--next {
  right: 0.65rem;
}

.srr-gallery-slider__dots {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.srr-gallery-slider__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 32, 0.24);
  cursor: pointer;
}

.srr-gallery-slider__dot.is-active {
  background: var(--accent);
}

.srr-animal-sections {
  display: grid;
  gap: 0.95rem;
}

.srr-animal-section {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 10px 22px rgba(15, 23, 32, 0.12);
  padding: 0.7rem 0.75rem;
}

.srr-animal-section h3 {
  margin: 0 0 0.5rem;
}

.srr-animal-section__slider {
  position: relative;
  padding: 0 1.9rem;
}

.srr-animal-section__viewport {
  overflow: hidden;
}

.srr-animal-section__track {
  display: flex;
  transition: transform 0.35s ease;
}

.srr-animal-section__slide {
  min-width: 100%;
  margin: 0;
}

.srr-animal-section__slide a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.srr-animal-section__slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.srr-animal-section__nav {
  position: absolute;
  top: calc(50% - 18px);
  width: 32px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(15, 23, 32, 0.72);
  color: #fff;
  line-height: 1;
  font-size: 1.3rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.srr-animal-section__nav--prev {
  left: 0;
}

.srr-animal-section__nav--next {
  right: 0;
}

.srr-animal-section__dots {
  margin-top: 0.45rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.srr-animal-section__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 32, 0.24);
  cursor: pointer;
}

.srr-animal-section__dot.is-active {
  background: var(--accent);
}

.srr-horse-slider {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 12px 24px rgba(15, 23, 32, 0.12);
  padding: 0.75rem 2.4rem 0.9rem;
}

.srr-horse-slider__viewport {
  overflow: hidden;
}

.srr-horse-slider__track {
  display: flex;
  transition: transform 0.35s ease;
}

.srr-horse-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
  align-items: start;
}

.srr-horse-slide.is-media-only {
  grid-template-columns: 1fr;
}

.srr-horse-slide.is-media-only .srr-horse-slide__body {
  display: none;
}

.srr-horse-slide__hero {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: block;
}

.srr-horse-slide__thumbs {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
}

.srr-horse-slide__thumbs img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: block;
}

.srr-horse-slide__body h3 {
  margin: 0 0 0.45rem;
  color: #b95f27;
}

.srr-horse-slide__body p + p {
  margin-top: 0.45rem;
}

.srr-horse-slide__body hr,
.srr-horse-slide__body .ImgBorder,
.srr-horse-slide__body .swiper-container,
.srr-horse-slide__body p:empty,
.srr-horse-slide__body div:empty,
.srr-horse-slide__body section:empty {
  display: none !important;
}

.srr-horse-slider__nav {
  position: absolute;
  top: calc(50% - 20px);
  width: 34px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(15, 23, 32, 0.72);
  color: #fff;
  line-height: 1;
  font-size: 1.35rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.srr-horse-slider__nav--prev {
  left: 0.35rem;
}

.srr-horse-slider__nav--next {
  right: 0.35rem;
}

.srr-horse-slider__dots {
  margin-top: 0.55rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.srr-horse-slider__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 32, 0.24);
  cursor: pointer;
}

.srr-horse-slider__dot.is-active {
  background: var(--accent);
}

.srr-horse-showcase {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 12px 24px rgba(15, 23, 32, 0.12);
  padding: 0.8rem 2.5rem 1rem;
  overflow: hidden;
}

.srr-horse-showcase__viewport {
  overflow: hidden;
}

.srr-horse-showcase__track {
  display: flex;
  transition: transform 0.35s ease;
}

.srr-horse-showcase__slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
}

.srr-horse-showcase__media,
.srr-horse-showcase__body {
  min-width: 0;
}

.srr-horse-showcase__hero {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #e9eef5;
}

.srr-horse-showcase__thumbs {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.38rem;
}

.srr-horse-showcase__thumb {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.srr-horse-showcase__thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(199, 88, 44, 0.25);
}

.srr-horse-showcase__thumb img {
  width: 100%;
  height: 62px;
  object-fit: cover;
  display: block;
}

.srr-horse-showcase__body h3 {
  margin: 0 0 0.45rem;
  color: #b95f27;
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
}

.srr-horse-showcase__body p {
  margin: 0.45rem 0 0;
  line-height: 1.55;
}

.srr-horse-showcase__nav {
  position: absolute;
  top: calc(50% - 20px);
  width: 34px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(15, 23, 32, 0.72);
  color: #fff;
  line-height: 1;
  font-size: 1.35rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.srr-horse-showcase__nav--prev {
  left: 0.35rem;
}

.srr-horse-showcase__nav--next {
  right: 0.35rem;
}

.srr-horse-showcase__dots {
  margin-top: 0.55rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.srr-horse-showcase__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 32, 0.24);
  cursor: pointer;
}

.srr-horse-showcase__dot.is-active {
  background: var(--accent);
}

.srr-story-collection {
  display: grid;
  gap: 0.95rem;
}

.srr-story-card {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 10px 20px rgba(15, 23, 32, 0.08);
  padding: 0.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.srr-story-card.is-reverse .srr-story-card__media {
  order: 2;
}

.srr-story-card.is-reverse .srr-story-card__body {
  order: 1;
}

.srr-story-card__body h3 {
  margin: 0 0 0.4rem;
}

.srr-story-card__body p {
  margin: 0.45rem 0 0;
  line-height: 1.56;
}

.srr-story-card__single,
.srr-story-card__single a {
  display: block;
  margin: 0;
}

.srr-story-card__single img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.srr-inline-slider {
  position: relative;
}

.srr-inline-slider__viewport {
  overflow: hidden;
  border-radius: 12px;
}

.srr-inline-slider__track {
  display: flex;
  transition: transform 0.35s ease;
}

.srr-inline-slider__slide {
  min-width: 100%;
  margin: 0;
}

.srr-inline-slider__slide a {
  display: block;
}

.srr-inline-slider__slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.srr-inline-slider__nav {
  position: absolute;
  top: calc(50% - 20px);
  width: 32px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(15, 23, 32, 0.72);
  color: #fff;
  line-height: 1;
  font-size: 1.2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.srr-inline-slider__nav--prev {
  left: 0.35rem;
}

.srr-inline-slider__nav--next {
  right: 0.35rem;
}

.srr-inline-slider__dots {
  margin-top: 0.45rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.srr-inline-slider__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 32, 0.24);
  cursor: pointer;
}

.srr-inline-slider__dot.is-active {
  background: var(--accent);
}

.srr-post-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.srr-post-gallery__item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.srr-post-gallery__item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.srr-home-slider {
  position: relative;
  margin: 0.9rem 0 2rem;
}

.srr-home-slider__viewport {
  position: relative;
  height: min(72vh, 680px);
  border-radius: 24px;
  overflow: hidden;
  width: min(calc(100% - 2.4rem), var(--content-max));
  margin-inline: auto;
}

.srr-home-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 1.4s ease;
  pointer-events: none;
}

.srr-home-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.srr-home-slide__inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  padding: clamp(1.4rem, 4vw, 3.2rem);
}

.srr-home-slide h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  max-width: 14ch;
}

.srr-home-slide p {
  margin-top: 0.8rem;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.92);
}

.srr-home-slide .srr-btn {
  margin-top: 1rem;
  width: fit-content;
}

.srr-home-slider__controls {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}

.srr-home-slider__arrow {
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.srr-home-slider__dots {
  display: flex;
  gap: 0.5rem;
}

.srr-home-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 23, 32, 0.28);
  cursor: pointer;
}

.srr-home-slider__dot.is-active {
  background: var(--accent);
}

.srr-home-welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.srr-home-welcome h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.7rem, 3.3vw, 2.7rem);
}

.srr-home-welcome p + p {
  margin-top: 0.9rem;
}

.srr-home-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.srr-home-collage img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  height: 220px;
  object-fit: cover;
}

.srr-home-collage img:first-child {
  grid-column: 1 / span 2;
  height: 290px;
}

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

.srr-home-panel {
  background: linear-gradient(160deg, #fff, #f2f6fb);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
}

.srr-home-panel p {
  margin-top: 0.5rem;
  color: var(--muted);
}

.srr-home-panel .srr-btn {
  margin-top: 0.8rem;
}

.srr-home-panel .srr-btn--ghost {
  border-color: #10263a;
  background: #10263a;
  color: #fff;
}

.srr-home-panel .srr-btn--ghost:hover,
.srr-home-panel .srr-btn--ghost:focus-visible {
  background: #173b59;
  border-color: #173b59;
}

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

.srr-home-news__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.srr-home-news__card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.srr-home-news__card img.srr-home-news__logo {
  object-fit: contain;
  padding: 1.2rem;
  background: #fff;
  object-position: center;
}

.srr-home-news__card h3,
.srr-home-news__card p {
  padding-inline: 0.9rem;
}

.srr-home-news__card h3 {
  font-size: 1.15rem;
  margin-top: 0.8rem;
}

.srr-home-news__card h3 a {
  text-decoration: none;
}

.srr-home-news__card p {
  margin: 0.45rem 0 0.9rem;
  color: var(--muted);
}

.srr-home-gallery {
  display: block;
}

.srr-gallery-slider--home .srr-gallery-slider__item img {
  height: clamp(220px, 44vw, 440px);
}

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

.srr-rental-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15, 23, 32, 0.08);
}

.srr-rental-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.srr-rental-card__body {
  padding: 1rem;
}

.srr-rental-card__body h2 {
  font-size: 1.3rem;
}

.srr-rental-card__body p + p {
  margin-top: 0.6rem;
}

.srr-rental-card__price {
  font-weight: 700;
  color: var(--accent-2);
}

.srr-rental-card__embed {
  border-top: 1px solid var(--line);
  background: #f7fafc;
}

.srr-rental-card__embed iframe {
  width: 100%;
  border: 0;
  height: 1200px;
  display: block;
}

.srr-fade-up {
  animation: ssrFadeUp 0.8s ease both;
}

.srr-delay-1 {
  animation-delay: 0.09s;
}

.srr-delay-2 {
  animation-delay: 0.18s;
}

@keyframes ssrFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .srr-hero__grid,
  .srr-story,
  .srr-bento {
    grid-template-columns: 1fr;
  }

  .srr-hero__main {
    min-height: 470px;
  }

  .srr-site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 0.7rem;
    height: auto;
    min-height: 0;
    padding: 0.75rem 0;
  }

  .srr-header-account {
    display: none;
  }

  .srr-header-mobile-controls {
    display: inline-flex;
    justify-self: end;
  }

  .srr-site-header {
    height: auto;
    min-height: 0;
  }

  .srr-nav {
    position: absolute;
    top: calc(100% + 0.2rem);
    left: 0;
    right: 0;
    width: 100%;
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(15, 23, 32, 0.2);
    z-index: 90;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, max-height 0.24s ease;
    align-items: stretch;
    justify-content: flex-start;
  }

  html[data-theme="dark"] .srr-nav {
    background: color-mix(in srgb, #101a28 94%, transparent);
    border-color: rgba(222, 235, 252, 0.2);
  }

  .srr-nav.is-open {
    opacity: 1;
    max-height: min(78dvh, 680px);
    pointer-events: auto;
    overflow-y: auto;
  }

  .srr-nav__list {
    width: 100%;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 0.55rem 0.8rem 0.9rem;
    overflow-y: auto;
    max-height: none;
  }

  .srr-nav__list > li {
    border-bottom: 1px solid var(--line);
    padding: 0.1rem 0;
  }

  .srr-nav__list > li.srr-mobile-only {
    display: block;
  }

  .srr-nav a {
    display: block;
    width: 100%;
    padding: 0.7rem 0.25rem;
    font-size: 0.88rem;
    border-bottom: 0;
  }

  .srr-nav .sub-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 0 0.45rem 0.8rem;
    display: none;
  }

  .srr-nav .menu-item-has-children:hover > .sub-menu,
  .srr-nav .menu-item-has-children:focus-within > .sub-menu {
    display: none;
  }

  .srr-nav .menu-item-has-children.is-expanded > .sub-menu {
    display: block;
  }

  .srr-submenu-toggle {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 0.36rem;
    width: 1.8rem;
    height: 1.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .srr-submenu-toggle span {
    transition: transform 0.2s ease;
  }

  .srr-nav .menu-item-has-children.is-expanded > .srr-submenu-toggle span {
    transform: rotate(180deg);
  }

  .srr-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 80;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(7, 11, 17, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  html[data-theme="dark"] .srr-nav-backdrop {
    background: rgba(3, 8, 14, 0.62);
  }

  body.srr-nav-open .srr-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.srr-nav-open {
    overflow: hidden;
  }

  .srr-logo {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
  }

  .srr-home-panels__grid,
  .srr-home-news {
    grid-template-columns: 1fr 1fr;
  }

  .srr-rental-grid {
    grid-template-columns: 1fr;
  }

  .srr-rental-card__embed iframe {
    height: 1000px;
  }
}

@media (max-width: 760px) {
  .srr-site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    padding: 0.62rem 0;
  }

  .srr-logo {
    width: 170px;
    min-width: 170px;
    max-width: 170px;
  }

  .srr-nav {
    width: 100%;
    top: calc(100% + 0.15rem);
  }

  .srr-nav__list {
    padding-top: 0.45rem;
  }

  .srr-nav a {
    font-size: 0.82rem;
  }

  .srr-submenu-toggle {
    top: 0.32rem;
  }

  .srr-home-panel .srr-btn {
    width: 100%;
  }

  .srr-hero {
    padding-top: 1rem;
  }

  .srr-hero__main {
    min-height: 420px;
    border-radius: 20px;
  }

  .srr-hero h1 {
    max-width: 100%;
  }

  .srr-metrics__grid {
    grid-template-columns: 1fr;
  }

  .srr-site-footer__grid {
    grid-template-columns: 1fr;
    padding: 1rem 0;
    min-height: auto;
  }

  .srr-footer-col--right {
    text-align: left;
  }

  .srr-post-grid {
    grid-template-columns: 1fr;
  }

  .srr-home-slider__viewport {
    height: 460px;
    border-radius: 18px;
  }

  .srr-shop-steps {
    grid-template-columns: 1fr;
  }

  .srr-shop-grid {
    grid-template-columns: 1fr;
  }

  .srr-voucher-form__fields {
    grid-template-columns: 1fr;
  }

  .srr-voucher-field--full {
    grid-column: auto;
  }

  .srr-home-welcome,
  .srr-home-panels__grid,
  .srr-home-news,
  .srr-home-gallery {
    grid-template-columns: 1fr;
  }

  .srr-silver-page .row,
  .srr-silver-page .unit {
    grid-template-columns: 1fr;
  }

  .srr-team-grid {
    grid-template-columns: 1fr;
  }

  .srr-team-card__photo {
    width: min(100%, 140px);
    height: 140px;
  }

  .srr-animal-section__slider {
    padding: 0 1.55rem;
  }

  .srr-animal-section__slide img {
    height: 190px;
  }

  .srr-animal-section__nav {
    width: 28px;
    height: 34px;
    top: calc(50% - 17px);
  }

  .srr-horse-slider {
    padding: 0.6rem 0.55rem 0.8rem;
  }

  .srr-horse-showcase {
    padding: 0.6rem 0.55rem 0.8rem;
  }

  .srr-horse-slide {
    grid-template-columns: 1fr;
  }

  .srr-horse-showcase__slide {
    grid-template-columns: 1fr;
  }

  .srr-horse-slide__body {
    display: none;
  }

  .srr-horse-showcase__body {
    display: block;
  }

  .srr-horse-slide__hero {
    height: 240px;
  }

  .srr-horse-showcase__hero {
    height: 250px;
  }

  .srr-horse-slide__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .srr-horse-showcase__thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .srr-horse-slide__thumbs img {
    height: 56px;
  }

  .srr-horse-showcase__thumb img {
    height: 50px;
  }

  .srr-horse-slider__nav {
    width: 28px;
    height: 34px;
    top: calc(50% - 17px);
  }

  .srr-horse-slider__nav--prev {
    left: 0.15rem;
  }

  .srr-horse-slider__nav--next {
    right: 0.15rem;
  }

  .srr-horse-showcase__nav {
    width: 28px;
    height: 34px;
    top: calc(50% - 17px);
  }

  .srr-horse-showcase__nav--prev {
    left: 0.15rem;
  }

  .srr-horse-showcase__nav--next {
    right: 0.15rem;
  }

  .srr-story-card {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .srr-story-card.is-reverse .srr-story-card__media,
  .srr-story-card.is-reverse .srr-story-card__body {
    order: initial;
  }

  .srr-inline-slider__slide img,
  .srr-story-card__single img {
    height: 240px;
  }

  .srr-inline-slider__nav {
    width: 30px;
    height: 36px;
    top: calc(50% - 18px);
  }

  .srr-gallery-slider {
    padding: 0.55rem 0.55rem 0.8rem;
  }

  .srr-gallery-slider__item img {
    height: 300px;
  }

  .srr-gallery-slider__nav {
    width: 36px;
    height: 44px;
    top: calc(50% - 22px);
  }

  .srr-gallery-slider__nav--prev {
    left: 0.3rem;
  }

  .srr-gallery-slider__nav--next {
    right: 0.3rem;
  }

  .srr-home-collage img:first-child {
    grid-column: 1;
    height: 230px;
  }

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

  .srr-course-list__item {
    grid-template-columns: 1fr;
  }

  .srr-course-list__item.is-no-media {
    grid-template-columns: 1fr;
  }

  .srr-course-list__media {
    max-width: 148px;
  }

  .srr-course-list__media img {
    min-height: 0;
  }

  .srr-course-list__stat {
    padding: 0.4rem 0.45rem;
  }

  .srr-course-list__stats {
    grid-template-columns: 1fr;
  }

  .srr-course-calendar__weekdays {
    display: none;
  }

  .srr-course-calendar__grid {
    grid-template-columns: 1fr;
  }

  .srr-course-calendar__frame {
    padding-inline: 0;
  }

  .srr-course-calendar__side-arrow {
    display: none;
  }

  .srr-course-calendar__day {
    min-height: 0;
  }

  .srr-course-calendar__day.is-outside {
    display: none;
  }

  .srr-rental-card__embed iframe {
    height: 820px;
  }

  .srr-course-horse-assignment__segment {
    grid-template-columns: 1fr;
  }

  .srr-cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 782px) {
  body.admin-bar .srr-site-header {
    top: 46px;
  }

  .srr-sm-dashboard {
    grid-template-columns: 1fr;
  }

  .srr-sm-horses-slider__toolbar {
    align-items: stretch;
  }

  .srr-sm-horses-slider__search {
    min-width: 100%;
  }

  .srr-sm-horse-card {
    grid-template-columns: 1fr;
  }

  .srr-sm-horse-card__media,
  .srr-sm-horse-card__media img,
  .srr-sm-horse-card__noimage {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .srr-sm-horse-card__facts {
    grid-template-columns: 1fr;
  }

  .srr-sm-auth-grid {
    grid-template-columns: 1fr;
  }

  .srr-sm-profile-form,
  .srr-sm-family-form--create,
  .srr-sm-family-form--edit,
  .srr-sm-family-grid,
  .srr-sm-family-facts {
    grid-template-columns: 1fr;
  }

  .srr-sm-vet-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .srr-vet-unit-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .srr-sm-vet-box-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .srr-sm-vet-subnav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
    overflow: visible;
  }

  .srr-sm-vet-subnav__item {
    width: 100%;
    text-align: left;
    border-radius: 12px;
    padding: 0.56rem 0.75rem;
  }
}

@media (max-width: 1600px) {
  .srr-sm-vet-box-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) {
  .srr-sm-vet-box-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .srr-sm-vet-box-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .srr-sm-vet-box-grid,
  .srr-vet-unit-tiles,
  .srr-sm-vet-stats {
    grid-template-columns: 1fr;
  }
}

body.page-satzung main.srr-section > .srr-container {
  width: calc(100% - 2.4rem);
  max-width: none;
}

body.page-satzung .srr-single-post {
  max-width: none;
}

body.page-satzung .srr-silver-page .section {
  width: 100%;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

body.page-satzung .srr-silver-page .container {
  max-width: none;
  width: 100%;
  padding: 0;
}

body.page-satzung .srr-silver-page .row {
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

body.page-satzung .srr-silver-page .row > [class*="col-"] {
  width: 100%;
  max-width: 100%;
}

body.page-satzung .srr-silver-page .ImgBorder {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

body.page-satzung .srr-silver-page .orange.text-center {
  text-align: left;
}

body.page-satzung .srr-silver-page p {
  max-width: none;
}

body.page-satzung .srr-satzung-header {
  margin: 0 0 0.9rem;
  padding: 0;
}

body.page-satzung .srr-satzung-header h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.7vw, 2rem);
  color: var(--ink);
}

body.page-satzung .srr-satzung-header p {
  margin-top: 0.4rem;
  color: var(--muted);
  font-weight: 600;
}

body.page-satzung .srr-satzung-content {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  padding: 0 !important;
}

.srr-sponsors {
  display: grid;
  gap: 1.15rem;
}

.srr-sponsors__title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(1.55rem, 3.1vw, 2.5rem);
  color: var(--accent);
  margin: 0;
}

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

.srr-sponsors-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 160px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 10px 22px rgba(15, 23, 32, 0.1);
  padding: 0.8rem;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.srr-sponsors-grid__item:hover,
.srr-sponsors-grid__item:focus-visible {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 16px 32px rgba(15, 23, 32, 0.16);
}

.srr-sponsors-grid__item img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.95);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.srr-sponsors-grid__item:hover img,
.srr-sponsors-grid__item:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

html[data-theme="dark"] .srr-sponsors-grid__item {
  background: linear-gradient(180deg, #162436, #132130);
  box-shadow: 0 10px 24px rgba(2, 8, 18, 0.45);
}

@media (max-width: 1100px) {
  .srr-sponsors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.page-satzung main.srr-section > .srr-container {
    width: calc(100% - 1.2rem);
  }

  .srr-sponsors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media (max-width: 520px) {
  .srr-sponsors-grid {
    grid-template-columns: 1fr;
  }
}

.metaslider,
.metaslider .flexslider,
.metaslider .nivoSlider,
.metaslider .coin-slider,
.metaslider .rslides,
.metaslider .slides,
.metaslider .slides > li,
.metaslider .slides img,
.metaslider .slide,
.metaslider .slide img {
  border-radius: 9px;
}

.metaslider,
.metaslider .flexslider,
.metaslider .nivoSlider,
.metaslider .coin-slider,
.metaslider .rslides,
.metaslider .slides,
.metaslider .slides > li,
.metaslider .slide {
  overflow: hidden;
}
