:root {
  --sf-ink: #173042;
  --sf-ink-strong: #0b2638;
  --sf-blue: #2b6f86;
  --sf-blue-dark: #1e5367;
  --sf-sage: #78a28b;
  --sf-sage-light: #e9f1ec;
  --sf-ice: #f3f7f8;
  --sf-snow: #ffffff;
  --sf-sand: #f3ede4;
  --sf-coral: #df725a;
  --sf-muted: #667986;
  --sf-line: #dce6e9;
  --sf-shadow: 0 22px 60px rgba(15, 45, 62, 0.1);
  --sf-shadow-soft: 0 12px 34px rgba(15, 45, 62, 0.08);
  --sf-radius: 22px;
  --sf-radius-sm: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--sf-ice);
  color: var(--sf-ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.no-scroll {
  overflow: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--sf-ink-strong);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
}

a {
  color: var(--sf-blue-dark);
}

a:hover {
  color: var(--sf-coral);
}

.container {
  max-width: 1240px;
}

.sf-site-header {
  position: relative;
  z-index: 1200;
  background: var(--sf-snow);
  box-shadow: 0 1px 0 rgba(23, 48, 66, 0.08);
}

.sf-utility-bar {
  background: var(--sf-ink-strong);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.sf-utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 38px;
}

.sf-trust-list,
.sf-account-list {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sf-trust-list span,
.sf-account-list a,
.sf-account-user {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.sf-trust-list i {
  color: #b6dfca;
}

.sf-account-list a:hover {
  color: #fff;
}

.sf-main-nav {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
}

.sf-main-nav.is-sticky {
  position: sticky;
  top: 0;
}

.sf-nav-inner {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 84px;
}

.sf-logo {
  display: inline-flex;
  align-items: center;
}

.sf-logo img {
  width: auto;
  max-width: 164px;
  max-height: 58px;
}

.sf-nav-menu {
  min-width: 0;
}

.sf-nav-menu .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sf-nav-menu .nav-menu > li {
  position: relative;
  margin: 0;
}

.sf-nav-menu .nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--sf-ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: 0.2s ease;
}

.sf-nav-menu .nav-menu > li > a:hover,
.sf-nav-menu .nav-menu > li > a.active {
  background: var(--sf-sage-light);
  color: var(--sf-blue-dark);
}

.sf-nav-menu .nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  min-width: 230px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--sf-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--sf-shadow-soft);
  list-style: none;
}

.sf-nav-menu li:hover > .nav-dropdown {
  display: block;
}

.sf-nav-menu .nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--sf-ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.sf-nav-menu .nav-dropdown a:hover,
.sf-nav-menu .nav-dropdown a.active {
  background: var(--sf-ice);
  color: var(--sf-blue-dark);
}

.sf-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sf-nav-cta,
.sf-button,
.main-btn,
.btn-primary,
.rez-btn-primary,
.vt-btn.is-ready {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--sf-coral);
  border-radius: 999px;
  background: var(--sf-coral);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(223, 114, 90, 0.2);
  transition: 0.2s ease;
}

.sf-nav-cta:hover,
.sf-button:hover,
.main-btn:hover,
.btn-primary:hover,
.rez-btn-primary:hover,
.vt-btn.is-ready:hover {
  border-color: #c95f4a;
  background: #c95f4a;
  color: #fff;
  transform: translateY(-1px);
}

.sf-help-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--sf-line);
  border-radius: 50%;
  background: #fff;
  color: var(--sf-blue-dark);
  cursor: pointer;
}

.sf-help-button:hover {
  border-color: var(--sf-sage);
  background: var(--sf-sage-light);
}

.sf-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--sf-line);
  border-radius: 50%;
  background: #fff;
  color: var(--sf-ink);
}

.sf-nav-toggle span,
.sf-nav-toggle::before,
.sf-nav-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 10px;
  background: currentColor;
  content: "";
}

.sf-nav-close {
  display: none;
}

.sf-home-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 70px;
  background:
    radial-gradient(circle at 12% 16%, rgba(120, 162, 139, 0.2), transparent 28%),
    linear-gradient(180deg, #f7faf9 0%, #eef4f5 100%);
}

.sf-home-hero::after {
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(43, 111, 134, 0.07);
  border-radius: 50%;
  content: "";
}

.sf-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 58px;
  align-items: center;
}

.sf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--sf-blue-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sf-eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--sf-coral);
  content: "";
}

.sf-hero-copy h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(44px, 5.3vw, 76px);
  line-height: 0.99;
}

.sf-hero-copy h1 span {
  color: var(--sf-blue);
}

.sf-hero-copy > p {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--sf-muted);
  font-size: 18px;
  line-height: 1.75;
}

.sf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.sf-button--secondary {
  border-color: var(--sf-ink);
  background: transparent;
  color: var(--sf-ink);
  box-shadow: none;
}

.sf-button--secondary:hover {
  border-color: var(--sf-ink);
  background: var(--sf-ink);
  color: #fff;
}

.sf-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  color: var(--sf-ink);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.sf-hero-points li::before {
  margin-right: 7px;
  color: var(--sf-sage);
  content: "✓";
}

.sf-hero-media {
  position: relative;
  min-height: 570px;
}

.sf-hero-image {
  position: absolute;
  inset: 0 0 36px 40px;
  overflow: hidden;
  border-radius: 46px 12px 46px 12px;
  box-shadow: var(--sf-shadow);
}

.sf-hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 38, 56, 0.2));
  content: "";
}

.sf-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-sport-figures {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.sf-sport-figure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(11, 38, 56, 0.58);
  color: #fff;
  font-size: 25px;
  box-shadow: 0 10px 28px rgba(11, 38, 56, 0.2);
  backdrop-filter: blur(8px);
}

.sf-sport-figure:nth-child(2) {
  transform: translateY(-12px);
}

.sf-sport-figure:nth-child(3) {
  transform: translateY(-3px);
}

.sf-sport-figure:nth-child(4) {
  transform: translateY(-16px);
}

.sf-hero-card {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 245px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--sf-shadow-soft);
  backdrop-filter: blur(12px);
}

.sf-hero-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--sf-ink-strong);
  font-size: 30px;
  line-height: 1;
}

.sf-hero-card span {
  color: var(--sf-muted);
  font-size: 13px;
  font-weight: 650;
}

.sf-section {
  padding: 86px 0;
}

.sf-section--white {
  background: #fff;
}

.sf-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 36px;
}

.sf-section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.sf-section-head p {
  margin: 0;
  color: var(--sf-muted);
  font-size: 17px;
}

.sf-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sf-audience-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--sf-radius);
  background: var(--sf-ink);
  box-shadow: var(--sf-shadow-soft);
}

.sf-audience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.sf-audience-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 38, 56, 0.02) 32%, rgba(11, 38, 56, 0.92) 100%);
  content: "";
}

.sf-audience-card:hover img {
  transform: scale(1.035);
}

.sf-audience-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 28px;
  color: #fff;
}

.sf-audience-content small {
  display: block;
  margin-bottom: 8px;
  color: #c9e3d5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sf-audience-content h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
}

.sf-audience-content p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.sf-audience-content a {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.sf-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--sf-line);
  border-radius: var(--sf-radius-sm);
  background: var(--sf-line);
}

.sf-stat {
  padding: 22px;
  background: #fff;
  text-align: center;
}

.sf-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sf-blue-dark);
  font-size: 26px;
}

.sf-stat span {
  color: var(--sf-muted);
  font-size: 13px;
  font-weight: 650;
}

.sf-courses-section,
.top-courses-area {
  padding: 86px 0;
  background: #eef4f5;
}

.sf-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sf-course-card {
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--sf-line);
  border-radius: var(--sf-radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 45, 62, 0.05);
  transition: 0.25s ease;
}

.sf-course-card:hover {
  box-shadow: var(--sf-shadow-soft);
  transform: translateY(-4px);
}

.sf-course-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #dce7eb;
}

.sf-course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sf-course-card:hover .sf-course-image img {
  transform: scale(1.035);
}

.sf-course-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--sf-blue-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.sf-course-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.sf-course-body h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.2;
}

.sf-course-body h3 a {
  color: inherit;
  text-decoration: none;
}

.sf-course-body > p {
  margin: 0 0 20px;
  color: var(--sf-muted);
  font-size: 14px;
}

.sf-course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.sf-course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--sf-ice);
  color: var(--sf-muted);
  font-size: 12px;
  font-weight: 700;
}

.sf-course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--sf-line);
}

.sf-course-price {
  color: var(--sf-ink-strong);
  font-size: 18px;
  font-weight: 850;
}

.sf-text-link {
  color: var(--sf-blue-dark);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.sf-text-link:hover {
  color: var(--sf-coral);
}

.sf-newsletter {
  padding: 72px 0;
  background: #fff;
}

.sf-newsletter-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: 330px;
  border-radius: 30px;
  background: var(--sf-ink-strong);
  color: #fff;
  box-shadow: var(--sf-shadow);
}

.sf-newsletter-copy {
  position: relative;
  z-index: 1;
  padding: 48px;
}

.sf-newsletter-copy h2 {
  margin: 0 0 15px;
  color: #fff;
  font-size: clamp(32px, 4vw, 50px);
}

.sf-newsletter-copy p {
  max-width: 560px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.72);
}

.sf-newsletter-form {
  display: flex;
  max-width: 560px;
  gap: 10px;
}

.sf-newsletter-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sf-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.sf-newsletter-form button {
  flex: 0 0 auto;
}

.sf-newsletter-image {
  min-height: 330px;
}

.sf-newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner .sf-profile-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 22px;
}

.sfpb-sport-figures {
  position: absolute;
  right: max(5vw, 28px);
  bottom: 23px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(42px, 5vw, 72px);
  pointer-events: none;
}

.sfpb-sport-figures i:nth-child(2) {
  transform: translateY(-22px);
}

.sfpb-sport-figures i:nth-child(3) {
  transform: translateY(-5px);
}

.sfpb-spacer {
  display: none;
}

.sfpb-title-block {
  width: min(1180px, 100%);
  text-align: left;
}

.sfpb-title-block h2,
.page-banner .banner-content h2 {
  margin: 0;
  color: #fff !important;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

.sfpb-sub {
  margin: 0 0 9px;
  color: #bfe0d0 !important;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sfpb-user-center {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.sfpb-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  font-size: 35px;
}

.sfpb-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sfpb-typ,
.sfpb-reg {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.sfpb-reg {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.container.py-4,
.container.py-5,
section.container {
  position: relative;
}

.za-pills-outer,
.za-section-label,
.za-grid,
.da-layout,
.rez-layout,
.profile-layout,
.vt-shell {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.za-pills-outer {
  padding: 20px 0 8px;
}

.za-pills-wrap {
  display: flex;
  overflow-x: auto;
  gap: 9px;
  padding: 4px 0 12px;
}

.za-pill {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--sf-line);
  border-radius: 999px;
  background: #fff;
  color: var(--sf-ink);
  font-size: 14px;
  font-weight: 750;
}

.za-pill:hover,
.za-pill.active {
  border-color: var(--sf-blue);
  background: var(--sf-blue);
  color: #fff;
}

.za-section-label {
  margin: 24px 0 18px;
  color: var(--sf-ink-strong);
  font-size: 28px;
  font-weight: 850;
}

.za-grid {
  gap: 24px !important;
}

.za-card,
.da-card,
.rez-card,
.pot-card,
.profil-card,
.clen-card,
.sfk-card,
.ma-card,
.budget-card,
.vt-shell,
.vt-main,
.vt-side-card {
  border: 1px solid var(--sf-line) !important;
  border-radius: var(--sf-radius) !important;
  background: #fff !important;
  box-shadow: 0 8px 26px rgba(15, 45, 62, 0.055) !important;
}

.za-card:hover {
  box-shadow: var(--sf-shadow-soft) !important;
  transform: translateY(-3px);
}

.za-card-img,
.za-card-image {
  border-radius: var(--sf-radius) var(--sf-radius) 0 0;
}

.rez-card-header,
.pot-card-header,
.profil-card-header,
.vt-head,
.vt-calendar-head {
  border-color: var(--sf-line) !important;
  background: #f7faf9 !important;
  color: var(--sf-ink-strong) !important;
}

.form-control,
.form-select,
.rez-input,
.vt-field-input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="tel"],
input[type="number"],
select,
textarea {
  border-color: #ccdadd;
  border-radius: 12px;
}

.form-control:focus,
.form-select:focus,
.rez-input:focus,
.vt-field-input:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: var(--sf-blue);
  box-shadow: 0 0 0 4px rgba(43, 111, 134, 0.12);
  outline: none;
}

.alert {
  border-radius: 14px;
}

.btn,
.rez-btn-secondary,
.sf-help-btn {
  border-radius: 999px;
  font-weight: 750;
}

.rez-checkbox,
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--sf-blue);
}

.rez-ucastnik-row,
.rez-partner-info,
.rez-cena-ucastnik-blok,
.vt-choice-block,
.vt-choice-card,
.vt-day,
.vt-slot,
.vt-selected,
.vt-next-card,
.vt-step-panel {
  border-color: var(--sf-line) !important;
}

.rez-ucastnik-row:hover,
.vt-choice-card:hover,
.vt-slot:hover {
  border-color: #a9c5cf !important;
}

.vt-kicker,
.vt-step.is-active strong,
.vt-selected-sub,
.rez-cena-celkem,
.pot-val strong {
  color: var(--sf-blue-dark) !important;
}

.vt-toolbar-btn.is-primary,
.vt-chip.is-active,
.vt-choice-card.is-active,
.vt-slot.is-active,
.vt-day.is-selected,
.vt-step.is-active {
  border-color: var(--sf-blue) !important;
  background: #eaf3f5 !important;
  color: var(--sf-blue-dark) !important;
  box-shadow: inset 0 0 0 1px var(--sf-blue) !important;
}

.vt-day-badge,
.rez-badge-sfkids,
.pot-badge--ok {
  background: var(--sf-sage) !important;
  color: #fff !important;
}

.sf-footer {
  padding: 68px 0 0;
  background: var(--sf-ink-strong);
  color: rgba(255, 255, 255, 0.72);
}

.sf-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 54px;
  padding-bottom: 50px;
}

.sf-footer-logo img {
  width: auto;
  max-width: 170px;
  max-height: 62px;
  margin-bottom: 20px;
}

.sf-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
}

.sf-footer p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.sf-footer-links {
  display: grid;
  gap: 9px;
}

.sf-footer a,
.sf-footer span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-decoration: none;
}

.sf-footer a:hover {
  color: #fff;
}

.sf-footer-social {
  display: flex;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.sf-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.sf-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-area {
  background-image: none !important;
  background-color: var(--sf-ink-strong) !important;
}

.footer-area .footer-widget,
.footer-area .footer-copyright {
  background: transparent !important;
}

.back-to-top {
  right: 22px;
  bottom: 22px;
  border-radius: 50%;
  background: var(--sf-coral) !important;
}

@media (max-width: 1199px) {
  .sf-nav-inner {
    grid-template-columns: 160px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .sf-nav-menu .nav-menu > li > a {
    padding: 0 9px;
    font-size: 13px;
  }

  .sf-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .sf-hero-media {
    min-height: 500px;
  }

  .sf-course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .sf-trust-list span:nth-child(n + 2) {
    display: none;
  }

  .sf-nav-inner {
    grid-template-columns: minmax(150px, 1fr) auto;
    min-height: 72px;
  }

  .sf-nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1205;
    width: min(390px, 90vw);
    height: 100vh;
    padding: 92px 24px 30px;
    background: #fff;
    box-shadow: -22px 0 50px rgba(15, 45, 62, 0.18);
    transform: translateX(105%);
    transition: transform 0.25s ease;
  }

  .sf-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--sf-line);
    border-radius: 50%;
    background: #fff;
    color: var(--sf-blue-dark);
    box-shadow: 0 6px 18px rgba(15, 45, 62, 0.1);
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
  }

  .sf-nav-close:hover,
  .sf-nav-close:focus {
    border-color: var(--sf-blue);
    background: var(--sf-ice);
    color: var(--sf-blue-dark);
    outline: 0;
  }

  .sf-nav-menu.is-open {
    transform: translateX(0);
  }

  .sf-nav-menu .nav-menu {
    display: block;
  }

  .sf-nav-menu .nav-menu > li > a {
    display: flex;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 15px;
  }

  .sf-nav-menu .nav-dropdown {
    position: static;
    display: block;
    padding: 0 0 5px 14px;
    border: 0;
    box-shadow: none;
  }

  .sf-nav-actions {
    grid-column: 2;
  }

  .sf-nav-cta {
    display: none;
  }

  .sf-nav-toggle {
    display: inline-block;
  }

  .sf-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 1201;
    display: none;
    background: rgba(11, 38, 56, 0.58);
  }

  .sf-mobile-overlay.is-open {
    display: block;
  }

  .sf-hero-grid {
    grid-template-columns: 1fr;
  }

  .sf-hero-copy {
    max-width: 760px;
  }

  .sf-hero-media {
    min-height: 500px;
  }

  .sf-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sf-audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sf-audience-card:last-child {
    grid-column: 1 / -1;
    min-height: 390px;
  }

  .sf-newsletter-card {
    grid-template-columns: 1fr;
  }

  .sf-newsletter-image {
    display: none;
  }

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

@media (max-width: 767px) {
  .sf-utility-inner {
    min-height: 34px;
  }

  .sf-account-user,
  .sf-account-list a span {
    display: none;
  }

  .sf-logo img {
    max-width: 145px;
  }

  .sf-home-hero {
    padding: 34px 0 54px;
  }

  .sf-hero-copy h1 {
    font-size: 44px;
  }

  .sf-hero-copy > p {
    font-size: 16px;
  }

  .sf-hero-actions {
    display: grid;
  }

  .sf-button {
    width: 100%;
  }

  .sf-hero-media {
    min-height: 390px;
  }

  .sf-hero-image {
    inset: 0 0 30px 18px;
    border-radius: 28px 8px 28px 8px;
  }

  .sf-sport-figures {
    right: 14px;
    bottom: 14px;
    gap: 7px;
  }

  .sf-sport-figure {
    width: 43px;
    height: 43px;
    font-size: 20px;
  }

  .sf-hero-card {
    width: 210px;
    padding: 16px 18px;
  }

  .sf-section,
  .sf-courses-section,
  .top-courses-area {
    padding: 58px 0;
  }

  .sf-audience-grid,
  .sf-course-grid {
    grid-template-columns: 1fr;
  }

  .sf-audience-card,
  .sf-audience-card:last-child {
    grid-column: auto;
    min-height: 400px;
  }

  .sf-stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .sf-newsletter {
    padding: 48px 0;
  }

  .sf-newsletter-copy {
    padding: 34px 24px;
  }

  .sf-newsletter-form {
    display: grid;
  }

  .sf-page-hero,
  .page-banner .sf-profile-banner,
  .page-banner-bg {
    min-height: 210px;
  }

  .sfpb-title-block h2,
  .page-banner .banner-content h2 {
    font-size: 38px;
  }

  .sfpb-sport-figures {
    right: 18px;
    bottom: 16px;
    gap: 10px;
    font-size: 36px;
    opacity: 0.5;
  }

  .sfpb-sport-figures i:nth-child(3) {
    display: none;
  }

  .sf-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sf-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .sf-trust-list span {
    font-size: 11px;
  }

  .sf-account-list {
    gap: 10px;
  }

  .sf-hero-copy h1 {
    font-size: 38px;
  }

  .sf-hero-media {
    min-height: 330px;
  }

  .sf-hero-card {
    width: 185px;
  }

  .sf-stats-strip {
    grid-template-columns: 1fr;
  }
}

.login-register {
  padding: 64px 0 80px !important;
  background:
    radial-gradient(circle at 85% 10%, rgba(120, 162, 139, 0.16), transparent 26%),
    var(--sf-ice);
}

.login-register-content {
  overflow: hidden;
  padding: 34px !important;
  border: 1px solid var(--sf-line);
  border-radius: var(--sf-radius);
  background: #fff;
  box-shadow: var(--sf-shadow-soft);
}

.login-register-content > .title {
  margin: 0 0 24px !important;
  color: var(--sf-ink-strong) !important;
  font-size: 31px !important;
}

.login-register-form .single-form {
  margin-top: 18px !important;
}

.login-register-form label,
.contact-form label,
.single-form label {
  margin-bottom: 7px;
  color: var(--sf-ink);
  font-size: 13px;
  font-weight: 750;
}

.login-register-form .form-control,
.contact-form .form-control {
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid #ccdadd;
  background: #fff;
  color: var(--sf-ink);
}

.login-register-form textarea.form-control,
.contact-form textarea.form-control {
  min-height: 140px;
  padding-top: 14px;
}

.login-register-form .main-btn,
.contact-form .main-btn {
  width: 100%;
  min-height: 52px;
  padding: 0 20px;
}

.login-register-form .main-btn-2 {
  border-color: var(--sf-ink);
  background: #fff;
  color: var(--sf-ink);
  box-shadow: none;
}

.login-register-form .main-btn-2:hover {
  background: var(--sf-ink);
  color: #fff;
}

.checkbox label {
  color: var(--sf-muted);
  line-height: 1.55;
}

.about-area,
.about-area-2,
.contact-area,
.teachers-area,
.testimonials-area,
.campus-visit-area-3,
.counter-area-2,
.features-area-2,
.newsletter-area-3 {
  background-color: var(--sf-ice);
}

.about-content,
.contact-form-wrapper,
.single-contact-info,
.single-teacher,
.single-testimonial-content,
.single-campus,
.single-features-item {
  border-radius: var(--sf-radius-sm);
}

.about-content .title,
.contact-title,
.section-title .title,
.section-title-2 .title,
.campus-title .title,
.testimonials-title .title {
  color: var(--sf-ink-strong) !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-weight: 850 !important;
  letter-spacing: -0.025em;
}

.about-content p,
.section-title p,
.section-title-2 p,
.contact-form p,
.single-contact-info p {
  color: var(--sf-muted) !important;
}

.about-image img,
.campus-image img,
.teacher-image img,
.testimonials-image img {
  border-radius: var(--sf-radius);
}

.single-contact-info {
  height: 100%;
  padding: 24px !important;
  border: 1px solid var(--sf-line);
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 45, 62, 0.05);
}

.single-contact-info .info-icon {
  color: var(--sf-blue) !important;
}

.contact-form-wrapper,
.newsletter-wrapper {
  border-radius: var(--sf-radius) !important;
  box-shadow: var(--sf-shadow-soft);
}

@media (max-width: 767px) {
  .login-register {
    padding: 42px 0 58px !important;
  }

  .login-register-content {
    padding: 24px 20px !important;
  }

  .login-register-content > .title {
    font-size: 27px !important;
  }
}

/* ======================================================================
   UX patch 2026-07-29: kompaktní rozvržení, brand Ski Fanatic, filtry
   ====================================================================== */
:root {
  --sf-ink: #101d5a;
  --sf-ink-strong: #07145f;
  --sf-blue: #28b8df;
  --sf-blue-dark: #07145f;
  --sf-sage: #28b8df;
  --sf-sage-light: #eaf8fc;
  --sf-ice: #f5f7fb;
  --sf-snow: #ffffff;
  --sf-sand: #f0f1f8;
  --sf-coral: #ef3f70;
  --sf-muted: #626d88;
  --sf-line: #dfe3ef;
  --sf-shadow: 0 24px 64px rgba(7, 20, 95, 0.12);
  --sf-shadow-soft: 0 12px 34px rgba(7, 20, 95, 0.08);
  --sf-radius: 22px;
  --sf-radius-sm: 14px;
}

body {
  color: var(--sf-ink);
  background: var(--sf-ice);
  font-family: "DM Sans", Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", Inter, "Segoe UI", Arial, sans-serif;
}

.container {
  width: min(calc(100% - 48px), 1280px);
  max-width: 1280px;
  margin-inline: auto;
  padding-right: 0;
  padding-left: 0;
}

.sf-site-header {
  position: sticky;
  top: 0;
  z-index: 1500;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 20, 95, 0.08);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.sf-utility-bar {
  background: var(--sf-ink-strong);
  font-size: 12px;
}

.sf-utility-inner {
  min-height: 34px;
}

.sf-trust-list,
.sf-account-list {
  gap: 22px;
}

.sf-trust-list i {
  color: var(--sf-blue);
}

.sf-main-nav {
  background: rgba(255, 255, 255, 0.96);
}

.sf-nav-inner {
  grid-template-columns: 190px minmax(0, 1fr) auto;
  min-height: 78px;
  gap: 30px;
}

.sf-logo img {
  max-width: 170px;
  max-height: 54px;
}

.sf-nav-menu .nav-menu {
  gap: 24px;
}

.sf-nav-menu .nav-menu > li > a {
  position: relative;
  min-height: 78px;
  padding: 0;
  border-radius: 0;
  color: var(--sf-ink-strong);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.sf-nav-menu .nav-menu > li > a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--sf-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.sf-nav-menu .nav-menu > li > a:hover,
.sf-nav-menu .nav-menu > li > a.active {
  background: transparent;
  color: var(--sf-ink-strong);
}

.sf-nav-menu .nav-menu > li > a:hover::after,
.sf-nav-menu .nav-menu > li > a.active::after {
  transform: scaleX(1);
}

.sf-nav-menu .nav-menu > li > a > i {
  margin-right: 6px;
  color: var(--sf-blue-dark);
  font-size: 12px;
  opacity: 0.8;
}

.sf-nav-cta,
.sf-button,
.main-btn,
.btn-primary,
.rez-btn-primary,
.vt-btn.is-ready {
  border-color: var(--sf-coral);
  background: var(--sf-coral);
  box-shadow: 0 12px 28px rgba(239, 63, 112, 0.2);
}

.sf-help-button {
  border-color: var(--sf-line);
  color: var(--sf-ink-strong);
}

/* Starý template rezervoval 140 px pro absolutní hlavičku. Nová hlavička je v toku. */
.page-banner {
  padding-top: 0 !important;
}

.banner-content {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.page-banner .sf-profile-banner {
  padding: 34px 24px;
}

.sfpb-title-block {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.sfpb-title-block h2,
.page-banner .banner-content h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.sfpb-user-center {
  margin-top: 13px;
}

.sfpb-avatar {
  width: 42px;
  height: 42px;
  font-size: 31px;
}

.sfpb-sport-figures {
  right: max(4vw, 26px);
  bottom: 18px;
  gap: 13px;
  font-size: clamp(34px, 4vw, 56px);
  opacity: 0.76;
}

.sf-home-hero {
  padding: 62px 0 72px;
  background:
    radial-gradient(circle at 8% 12%, rgba(40, 184, 223, 0.18), transparent 30%),
    radial-gradient(circle at 92% 84%, rgba(239, 63, 112, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fb 100%);
}

.sf-home-hero::after {
  display: none;
}

.sf-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  gap: 64px;
}

.sf-eyebrow {
  color: var(--sf-ink-strong);
}

.sf-eyebrow::before {
  background: var(--sf-coral);
}

.sf-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.02;
}

.sf-hero-copy h1 span {
  color: var(--sf-blue-dark);
  text-decoration: underline;
  text-decoration-color: rgba(40, 184, 223, 0.7);
  text-decoration-thickness: 7px;
  text-underline-offset: 8px;
}

.sf-hero-copy > p {
  max-width: 650px;
  font-size: 18px;
}

.sf-hero-media {
  min-height: 520px;
}

.sf-hero-image {
  inset: 0 0 28px 26px;
  border-radius: 32px;
}

.sf-hero-image::after {
  background: linear-gradient(180deg, transparent 48%, rgba(7, 20, 95, 0.28));
}

.sf-hero-mascots {
  position: absolute;
  right: -12px;
  bottom: -12px;
  z-index: 3;
  width: min(49%, 300px);
  pointer-events: none;
  filter: drop-shadow(0 20px 26px rgba(7, 20, 95, 0.2));
}

.sf-hero-mascots img {
  display: block;
  width: 100%;
  height: auto;
}

.sf-hero-card {
  bottom: 0;
  width: 225px;
  border-color: rgba(7, 20, 95, 0.08);
}

.sf-hero-card strong {
  color: var(--sf-ink-strong);
}

.sf-hero-points li::before {
  color: var(--sf-blue);
}

.sf-section,
.sf-courses-section,
.top-courses-area {
  padding: 72px 0;
}

.sf-section-head {
  gap: 64px;
  margin-bottom: 32px;
}

.sf-section-head h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.sf-registration-benefits {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background: #fff;
}

.sf-registration-benefits::before {
  position: absolute;
  top: -180px;
  right: -110px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(40, 184, 223, 0.08);
  border-radius: 50%;
  content: "";
}

.sf-registration-benefits__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: 64px;
  align-items: center;
}

.sf-registration-benefits__copy h2 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.06;
}

.sf-registration-benefits__lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--sf-muted);
  font-size: 17px;
}

.sf-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sf-benefit-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--sf-line);
  border-radius: 18px;
  background: var(--sf-ice);
}

.sf-benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--sf-ink-strong);
  color: #fff;
  font-size: 19px;
}

.sf-benefit-card:nth-child(2) .sf-benefit-card__icon,
.sf-benefit-card:nth-child(4) .sf-benefit-card__icon {
  background: var(--sf-coral);
}

.sf-benefit-card h3 {
  margin: 0 0 5px;
  font-size: 17px;
  line-height: 1.25;
}

.sf-benefit-card p {
  margin: 0;
  color: var(--sf-muted);
  font-size: 13px;
  line-height: 1.55;
}

.sf-registration-benefits__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
}

.sf-registration-benefits__visual {
  position: relative;
  min-height: 480px;
  padding: 86px 24px 20px;
  border: 1px solid var(--sf-line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 15%, rgba(40, 184, 223, 0.22), transparent 34%),
    radial-gradient(circle at 85% 75%, rgba(239, 63, 112, 0.16), transparent 34%),
    #f8fbff;
  box-shadow: var(--sf-shadow-soft);
}

.sf-registration-benefits__visual img {
  position: absolute;
  right: 8px;
  bottom: 0;
  left: 8px;
  width: calc(100% - 16px);
  max-height: 390px;
  margin: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 24px rgba(7, 20, 95, 0.16));
}

.sf-registration-benefits__bubble {
  position: absolute;
  top: 24px;
  right: 24px;
  left: 24px;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 18px 18px 18px 4px;
  background: var(--sf-ink-strong);
  color: #fff;
  box-shadow: 0 14px 30px rgba(7, 20, 95, 0.18);
}

.sf-registration-benefits__bubble span {
  display: block;
  margin-bottom: 4px;
  color: #9ee7f8;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sf-registration-benefits__bubble strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.sf-courses-section,
.top-courses-area {
  background: #f1f6fa;
}

.sf-course-image {
  height: 220px;
}

.sf-course-category {
  color: var(--sf-ink-strong);
}

.sf-audience-card {
  min-height: 430px;
}

.sf-stats-strip {
  border-color: var(--sf-line);
  background: var(--sf-line);
}

.sf-stat strong {
  color: var(--sf-ink-strong);
}

/* Katalog: desktop bez horizontálního scrollu, mobilní select. */
.za-filter-panel {
  margin: 28px 0 30px;
  padding: 22px;
  border: 1px solid var(--sf-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 20, 95, 0.045);
}

.za-filter-panel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.za-filter-panel__head strong {
  display: block;
  color: var(--sf-ink-strong);
  font-size: 20px;
}

.za-filter-panel__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--sf-coral);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.za-filter-panel__hint {
  max-width: 480px;
  color: var(--sf-muted);
  font-size: 13px;
  text-align: right;
}

.za-pills-outer {
  padding: 0;
}

.za-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  overflow: visible;
  gap: 9px;
  padding: 0;
}

.za-pill {
  flex: 0 1 auto;
  min-height: 42px;
  padding: 0 16px;
  border-color: var(--sf-line);
  color: var(--sf-ink-strong);
}

.za-pill:hover,
.za-pill.active {
  border-color: var(--sf-ink-strong);
  background: var(--sf-ink-strong);
  color: #fff;
}

.za-filter-select-wrap {
  display: none;
}

.za-filter-select-wrap label {
  display: block;
  margin-bottom: 7px;
  color: var(--sf-ink-strong);
  font-size: 13px;
  font-weight: 800;
}

.za-filter-select {
  width: 100%;
  min-height: 50px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--sf-line);
  border-radius: 13px;
  background: #fff;
  color: var(--sf-ink-strong);
  font-weight: 750;
}

.za-section-label {
  margin-top: 0;
  padding-left: 14px;
  border-left: 4px solid var(--sf-coral);
  color: var(--sf-ink-strong);
}

.za-grid {
  transition: opacity 0.18s ease;
}

.sf-footer {
  background: var(--sf-ink-strong);
}

@media (max-width: 1260px) {
  .sf-nav-inner {
    grid-template-columns: 165px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .sf-nav-menu .nav-menu {
    gap: 14px;
  }

  .sf-nav-menu .nav-menu > li > a {
    font-size: 13px;
  }

  .sf-nav-menu .nav-menu > li > a > i {
    display: none;
  }
}

@media (max-width: 1100px) {
  .sf-nav-menu .nav-menu {
    gap: 10px;
  }

  .sf-nav-cta {
    padding: 0 16px;
  }

  .sf-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .sf-registration-benefits__grid {
    gap: 34px;
  }
}

@media (max-width: 991px) {
  .container {
    width: min(calc(100% - 36px), 1280px);
  }

  .sf-nav-inner {
    grid-template-columns: minmax(145px, 1fr) auto;
    min-height: 70px;
  }

  .sf-nav-menu {
    padding-top: 82px;
  }

  .sf-nav-menu .nav-menu > li > a {
    min-height: 50px;
    padding: 0 12px;
    font-size: 15px;
  }

  .sf-nav-menu .nav-menu > li > a::after {
    display: none;
  }

  .sf-nav-menu .nav-menu > li > a > i {
    display: inline-block;
  }

  .sf-hero-grid,
  .sf-registration-benefits__grid {
    grid-template-columns: 1fr;
  }

  .sf-registration-benefits__visual {
    min-height: 430px;
  }

  .sf-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sf-hero-media {
    min-height: 470px;
  }

  .sfp-sport-figures {
    opacity: 0.45;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 28px), 1280px);
  }

  .sf-utility-inner {
    min-height: 32px;
  }

  .sf-home-hero {
    padding: 38px 0 50px;
  }

  .sf-hero-copy h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .sf-hero-copy h1 span {
    text-decoration-thickness: 5px;
    text-underline-offset: 6px;
  }

  .sf-hero-media {
    min-height: 360px;
  }

  .sf-hero-image {
    inset: 0 0 20px 0;
    border-radius: 24px;
  }

  .sf-hero-mascots {
    right: -8px;
    width: min(54%, 235px);
  }

  .sf-hero-card {
    width: 190px;
    padding: 15px 16px;
  }

  .sf-registration-benefits,
  .sf-section,
  .sf-courses-section,
  .top-courses-area {
    padding: 52px 0;
  }

  .sf-benefit-grid {
    grid-template-columns: 1fr;
  }

  .sf-benefit-card {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 15px;
  }

  .sf-benefit-card__icon {
    width: 44px;
    height: 44px;
  }

  .sf-registration-benefits__visual {
    min-height: 390px;
    border-radius: 24px;
  }

  .sf-registration-benefits__bubble {
    top: 16px;
    right: 16px;
    left: 16px;
  }

  .page-banner .sf-profile-banner,
  .sf-page-hero,
  .page-banner-bg {
    min-height: 165px;
  }

  .page-banner .sf-profile-banner {
    padding: 26px 14px;
  }

  .sfpb-title-block {
    width: min(100%, calc(100% - 28px));
  }

  .sfpb-title-block h2,
  .page-banner .banner-content h2 {
    font-size: 31px;
  }

  .sfpb-sport-figures {
    right: 12px;
    bottom: 10px;
    font-size: 30px;
    opacity: 0.32;
  }

  .za-filter-panel {
    margin: 20px 0 24px;
    padding: 16px;
  }

  .za-filter-panel__head {
    display: block;
    margin-bottom: 14px;
  }

  .za-filter-panel__hint {
    display: none;
  }

  .za-pills-wrap {
    display: none;
  }

  .za-filter-select-wrap {
    display: block;
  }

  .za-section-label {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .sf-trust-list span:nth-child(n + 2) {
    display: none;
  }

  .sf-logo img {
    max-width: 136px;
  }

  .sf-help-button {
    width: 40px;
    height: 40px;
  }

  .sf-nav-toggle {
    width: 40px;
    height: 40px;
  }

  .sf-hero-media {
    min-height: 320px;
  }

  .sf-hero-mascots {
    width: 58%;
  }

  .sf-registration-benefits__visual {
    min-height: 350px;
  }

  .sf-registration-benefits__bubble strong {
    font-size: 16px;
  }
}

/* ===== Homepage live courses ===== */
.sf-course-status {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(4, 28, 61, 0.16);
}

.sf-course-status.is-open {
  color: #065f46;
  background: #dff8ea;
}

.sf-course-status.is-full {
  color: #9f1239;
  background: #ffe4ec;
}

.sf-course-meta {
  align-items: flex-start;
}

.sf-course-meta span {
  min-width: 0;
}

.sf-course-meta i {
  flex: 0 0 auto;
  margin-top: 2px;
}

.sf-courses-empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border: 1px solid #dbe5ee;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(4, 28, 61, 0.06);
}

.sf-courses-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #07135f;
  background: #eef4ff;
  font-size: 22px;
}

.sf-courses-empty h3 {
  margin: 0 0 6px;
  color: #07135f;
  font-size: 21px;
}

.sf-courses-empty p {
  margin: 0;
  color: #5e6d82;
  line-height: 1.65;
}

/* ===== Modern about page ===== */
.sf-about-modern {
  overflow: hidden;
  color: #07135f;
  background: #fff;
}

.sf-about-modern .container {
  width: min(100% - 40px, 1180px);
}

.sf-about-hero {
  padding: 86px 0 94px;
  background:
    radial-gradient(circle at 8% 14%, rgba(36, 185, 224, 0.14), transparent 30%),
    radial-gradient(circle at 94% 20%, rgba(240, 58, 103, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbfd 0%, #eef5f8 100%);
}

.sf-about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: 72px;
  align-items: center;
}

.sf-about-hero__copy h2 {
  max-width: 760px;
  margin: 12px 0 24px;
  color: #07135f;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.sf-about-lead {
  max-width: 710px;
  margin: 0;
  color: #4e6078;
  font-size: 18px;
  line-height: 1.75;
}

.sf-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.sf-button--outline {
  color: #07135f;
  border-color: #a9bac8;
  background: transparent;
  box-shadow: none;
}

.sf-button--outline:hover {
  color: #fff;
  border-color: #07135f;
  background: #07135f;
}

.sf-about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border: 1px solid #d6e2ea;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 45px rgba(4, 28, 61, 0.06);
}

.sf-about-facts div {
  min-width: 0;
  padding: 20px;
  border-left: 1px solid #d6e2ea;
}

.sf-about-facts div:first-child {
  border-left: 0;
}

.sf-about-facts strong,
.sf-about-facts span {
  display: block;
}

.sf-about-facts strong {
  margin-bottom: 6px;
  font-size: 17px;
  color: #07135f;
}

.sf-about-facts span {
  color: #68788c;
  font-size: 13px;
  line-height: 1.5;
}

.sf-about-hero__visual {
  position: relative;
  min-height: 610px;
  border-radius: 48px;
  background:
    linear-gradient(150deg, rgba(7, 19, 95, 0.98), rgba(20, 56, 103, 0.93));
  box-shadow: 0 32px 80px rgba(4, 28, 61, 0.22);
  isolation: isolate;
}

.sf-about-hero__visual::before {
  content: '';
  position: absolute;
  inset: 24px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 34px;
}

.sf-about-hero__shape {
  position: absolute;
  left: -52px;
  bottom: 72px;
  width: 150px;
  height: 150px;
  border-radius: 38px;
  background: #24b9e0;
  transform: rotate(24deg);
  box-shadow: 0 20px 45px rgba(36, 185, 224, 0.28);
}

.sf-about-hero__person {
  position: absolute;
  right: -12px;
  bottom: 0;
  z-index: 1;
  width: min(96%, 510px);
  max-height: 590px;
  object-fit: contain;
  object-position: bottom right;
}

.sf-about-hero__quote {
  position: absolute;
  left: 34px;
  top: 34px;
  z-index: 2;
  width: min(290px, calc(100% - 68px));
  padding: 18px 20px;
  border-radius: 18px;
  color: #07135f;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(4, 28, 61, 0.16);
  backdrop-filter: blur(12px);
}

.sf-about-hero__quote span,
.sf-about-hero__quote strong {
  display: block;
}

.sf-about-hero__quote span {
  margin-bottom: 5px;
  color: #f03a67;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sf-about-hero__quote strong {
  font-size: 18px;
  line-height: 1.35;
}

.sf-about-audience,
.sf-about-history {
  padding: 96px 0;
}

.sf-section-head--compact {
  margin-bottom: 34px;
}

.sf-about-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sf-about-audience__card {
  overflow: hidden;
  border: 1px solid #dbe5ee;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(4, 28, 61, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sf-about-audience__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 58px rgba(4, 28, 61, 0.13);
}

.sf-about-audience__card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #07135f;
}

.sf-about-audience__card > div {
  padding: 24px 26px 28px;
}

.sf-about-audience__card span {
  display: inline-block;
  margin-bottom: 10px;
  color: #24aeda;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sf-about-audience__card h3 {
  margin: 0 0 12px;
  color: #07135f;
  font-size: 24px;
  line-height: 1.15;
}

.sf-about-audience__card p {
  min-height: 78px;
  margin: 0 0 18px;
  color: #5c6e83;
  line-height: 1.65;
}

.sf-about-audience__card a {
  color: #07135f;
  font-weight: 800;
}

.sf-about-values {
  padding: 94px 0;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(36, 185, 224, 0.24), transparent 28%),
    linear-gradient(135deg, #07135f 0%, #082e53 100%);
}

.sf-about-values__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}

.sf-about-values .sf-eyebrow {
  color: #54d6f4;
}

.sf-about-values__copy h2 {
  margin: 12px 0 20px;
  color: #fff;
  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.sf-about-values__copy > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.sf-about-values__copy blockquote {
  margin: 30px 0 0;
  padding: 22px 24px;
  border-left: 4px solid #f03a67;
  border-radius: 0 18px 18px 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 21px;
  font-weight: 800;
}

.sf-about-values__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sf-about-values__cards article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.sf-about-values__cards article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 16px;
  color: #07135f;
  background: #fff;
  font-size: 18px;
}

.sf-about-values__cards article:nth-child(even) > span {
  color: #fff;
  background: #f03a67;
}

.sf-about-values__cards h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
}

.sf-about-values__cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.sf-about-history {
  background: #f4f8fa;
}

.sf-about-history__head {
  max-width: 760px;
  margin-bottom: 42px;
}

.sf-about-history__head h2 {
  margin: 12px 0 0;
  color: #07135f;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.sf-about-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sf-about-timeline article {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border: 1px solid #d8e4eb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(4, 28, 61, 0.06);
}

.sf-about-timeline article::before {
  content: '';
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: #f03a67;
}

.sf-about-timeline article:nth-child(even)::before {
  background: #24b9e0;
}

.sf-about-timeline strong {
  display: block;
  margin-bottom: 18px;
  color: #07135f;
  font-size: 31px;
  letter-spacing: -0.04em;
}

.sf-about-timeline h3 {
  margin: 0 0 12px;
  color: #07135f;
  font-size: 20px;
  line-height: 1.25;
}

.sf-about-timeline p {
  margin: 0;
  color: #5f7084;
  line-height: 1.65;
}

.sf-about-cta {
  padding: 78px 0;
  background: #fff;
}

.sf-about-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 44px 48px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(36, 185, 224, 0.22), transparent 30%),
    #07135f;
  box-shadow: 0 26px 65px rgba(4, 28, 61, 0.19);
}

.sf-about-cta .sf-eyebrow {
  color: #54d6f4;
}

.sf-about-cta h2 {
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(31px, 3.2vw, 45px);
  line-height: 1.08;
}

.sf-about-cta p {
  max-width: 730px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.sf-about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.sf-about-cta .sf-button--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.sf-about-cta .sf-button--outline:hover {
  color: #07135f;
  border-color: #fff;
  background: #fff;
}

@media (max-width: 1099px) {
  .sf-about-hero__grid,
  .sf-about-values__grid {
    grid-template-columns: 1fr;
  }

  .sf-about-hero__visual {
    width: min(100%, 650px);
    min-height: 580px;
  }

  .sf-about-audience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-about-audience__card:last-child {
    grid-column: 1 / -1;
  }

  .sf-about-audience__card:last-child > img {
    aspect-ratio: 2 / 1;
  }

  .sf-about-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-about-cta__inner {
    grid-template-columns: 1fr;
  }

  .sf-about-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .sf-about-modern .container {
    width: min(100% - 28px, 1180px);
  }

  .sf-about-hero,
  .sf-about-audience,
  .sf-about-values,
  .sf-about-history,
  .sf-about-cta {
    padding: 62px 0;
  }

  .sf-about-hero__grid {
    gap: 42px;
  }

  .sf-about-hero__copy h2 {
    font-size: 43px;
  }

  .sf-about-lead {
    font-size: 16px;
  }

  .sf-about-facts {
    grid-template-columns: 1fr;
  }

  .sf-about-facts div,
  .sf-about-facts div:first-child {
    border-top: 1px solid #d6e2ea;
    border-left: 0;
  }

  .sf-about-facts div:first-child {
    border-top: 0;
  }

  .sf-about-hero__visual {
    min-height: 470px;
    border-radius: 30px;
  }

  .sf-about-hero__visual::before {
    inset: 14px;
    border-radius: 22px;
  }

  .sf-about-hero__person {
    right: -38px;
    width: 110%;
    max-height: 445px;
  }

  .sf-about-hero__quote {
    left: 20px;
    top: 20px;
  }

  .sf-about-hero__shape {
    left: -40px;
    bottom: 50px;
    width: 112px;
    height: 112px;
  }

  .sf-about-audience__grid,
  .sf-about-values__cards,
  .sf-about-timeline {
    grid-template-columns: 1fr;
  }

  .sf-about-audience__card:last-child {
    grid-column: auto;
  }

  .sf-about-audience__card:last-child > img,
  .sf-about-audience__card > img {
    aspect-ratio: 16 / 10;
  }

  .sf-about-audience__card p {
    min-height: 0;
  }

  .sf-about-values__grid {
    gap: 36px;
  }

  .sf-about-values__cards article {
    min-height: 0;
  }

  .sf-about-timeline article {
    min-height: 0;
  }

  .sf-about-cta__inner {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .sf-about-cta__actions,
  .sf-about-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sf-about-cta__actions .sf-button,
  .sf-about-hero__actions .sf-button {
    width: 100%;
  }

  .sf-courses-empty {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .sf-courses-empty .sf-button {
    width: 100%;
  }
}

/* ===== Mascot visual system 2026-07-29 ===== */
.sf-hero-image--mascot {
  background: #07135f;
}

.sf-hero-image--mascot::after {
  display: none;
}

.sf-hero-image--mascot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sfpb-sport-figures {
  display: none;
}

.sf-registration-benefits__visual {
  overflow: hidden;
  padding: 94px 18px 18px;
  background: linear-gradient(145deg, #f6fbff 0%, #fff4f8 100%);
}
.sf-page-hero,
.page-banner .sf-profile-banner,
.page-banner-bg {
  background: #07175f !important;
}
.sf-registration-benefits__visual img {
  right: 18px;
  bottom: 18px;
  left: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 116px);
  max-height: none;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.sf-about-hero__visual {
  overflow: hidden;
  background: linear-gradient(145deg, #07135f 0%, #123e6b 100%);
}

.sf-about-hero__shape {
  display: none !important;
}

.sf-about-hero__person--mascot {
  right: 22px;
  bottom: 22px;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
  max-height: none;
  border-radius: 28px;
  object-fit: cover;
  object-position: center;
}

.sf-about-audience__card > img,
.sf-audience-card > img {
  object-fit: cover;
  object-position: center;
}

.sf-course-image img {
  object-fit: cover;
  object-position: center;
}

.za-card-img {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.da-hero {
  min-height: 430px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 1099px) {
  .sf-about-hero__person--mascot {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
  }
}

@media (max-width: 767px) {
  .sf-page-hero,
  .page-banner .sf-profile-banner,
  .page-banner-bg {
    background-position: 64% center !important;
  }

  .sf-hero-image--mascot {
    min-height: 390px;
  }

  .sf-registration-benefits__visual {
    min-height: 430px;
  }

  .sf-registration-benefits__visual img {
    height: calc(100% - 112px);
  }

  .sf-about-hero__visual {
    min-height: 500px;
  }

  .sf-about-hero__person--mascot {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    max-height: none;
  }

  .da-hero {
    min-height: 280px;
  }
}

/* Detail aktivity: vzdušnější rozvržení a bezpečný rezervační tok */
.za-card-foot {
  flex-wrap: wrap;
}

.za-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

.za-card-actions .za-btn-info,
.za-card-actions .za-btn-zapis,
.za-card-actions .za-btn-nahradnik {
  white-space: nowrap;
}

.da-page {
  padding: clamp(34px, 5vw, 72px) 0 110px;
  background:
    radial-gradient(circle at 8% 4%, rgba(42, 183, 220, .08), transparent 28%),
    linear-gradient(180deg, #f7fafc 0%, #eef4f8 100%);
}

.da-page__container {
  max-width: 1180px;
}

.da-main {
  display: grid;
  gap: 24px;
}

.da-page .da-hero {
  height: clamp(310px, 39vw, 470px);
  min-height: 0;
  margin: 0;
  border: 1px solid rgba(7, 23, 95, .08);
  border-radius: 30px;
  box-shadow: 0 28px 64px rgba(7, 23, 95, .14);
}

.da-page .da-hero::after {
  background: linear-gradient(180deg, rgba(7, 23, 95, .02), rgba(7, 23, 95, .16));
}

.da-meta-row--facts {
  display: flex;
  gap: 10px;
  margin: 0;
}

.da-meta-row--facts .da-meta-item {
  min-height: 46px;
  padding: 10px 15px;
  background: #fff;
  border: 1px solid #dbe5ee;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(7, 23, 95, .05);
  color: #33445c;
  font-size: 13px;
  font-weight: 700;
}

.da-meta-row--facts .da-meta-item i {
  color: #24b7db;
}

.da-content-card {
  padding: clamp(26px, 3.6vw, 44px);
  background: #fff;
  border: 1px solid #dbe5ee;
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(7, 23, 95, .06);
}

.da-content-card--lead {
  background:
    radial-gradient(circle at 96% 5%, rgba(244, 58, 112, .09), transparent 30%),
    #fff;
}

.da-content-card__head {
  max-width: 720px;
  margin-bottom: 24px;
}

.da-content-card__eyebrow {
  display: block;
  margin-bottom: 9px;
  color: #f43a70;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.da-content-card__head h2 {
  margin: 0;
  color: #07175f;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.da-richtext {
  max-width: 760px;
  color: #40516a;
  font-size: 16px;
  line-height: 1.82;
}

.da-content-card--lead .da-richtext {
  font-size: 17px;
}

.da-richtext > :first-child {
  margin-top: 0;
}

.da-richtext > :last-child {
  margin-bottom: 0;
}

.da-richtext p {
  margin: 0 0 18px;
}

.da-richtext strong,
.da-richtext b {
  color: #07175f;
}

.da-richtext h2,
.da-richtext h3,
.da-richtext h4 {
  margin: 30px 0 12px;
  color: #07175f;
  line-height: 1.25;
}

.da-richtext ul,
.da-richtext ol {
  margin: 18px 0;
  padding-left: 22px;
}

.da-richtext li + li {
  margin-top: 8px;
}

.da-richtext--program {
  padding: 22px 24px;
  background: #f5f9fc;
  border-left: 4px solid #24b7db;
  border-radius: 0 16px 16px 0;
}

.da-page .da-logistika-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.da-page .da-logistika-item {
  min-height: 132px;
  padding: 20px;
  background: #f6f9fc;
  border: 1px solid #e0e8ef;
  border-radius: 18px;
}

.da-page .da-logistika-item .label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: #07175f;
  font-size: 12px;
  font-weight: 800;
}

.da-page .da-logistika-item .label i {
  color: #24b7db;
  font-size: 15px;
}

.da-page .da-logistika-item .value {
  color: #40516a;
  font-size: 15px;
  line-height: 1.7;
}

.da-page .da-accordion {
  display: grid;
  gap: 10px;
}

.da-page .da-accordion-btn {
  padding: 17px 18px;
  background: #f7fafc;
  border: 1px solid #dbe5ee;
  border-radius: 15px;
  color: #07175f;
}

.da-page .da-accordion-btn.open {
  background: #eef8fb;
  border-color: #9edceb;
}

.da-accordion-btn__label {
  display: flex;
  align-items: center;
  gap: 11px;
}

.da-accordion-btn__label i {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #07175f;
  border-radius: 10px;
}

.da-page .da-accordion-body {
  margin-top: -2px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid #dbe5ee;
  border-top: 0;
  border-radius: 0 0 15px 15px;
}

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

.da-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  color: #07175f;
  background: #f6f9fc;
  border: 1px solid #dbe5ee;
  border-radius: 18px;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.da-contact-item:hover {
  color: #07175f;
  border-color: #9edceb;
  box-shadow: 0 12px 28px rgba(7, 23, 95, .08);
  transform: translateY(-2px);
}

.da-contact-item__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #07175f;
  border-radius: 14px;
}

.da-contact-item small,
.da-contact-item strong {
  display: block;
}

.da-contact-item small {
  margin-bottom: 3px;
  color: #718096;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.da-contact-item strong {
  overflow-wrap: anywhere;
  font-size: 14px;
}

.da-page .da-foto-grid {
  gap: 14px;
}

.da-page .da-foto-item {
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(7, 23, 95, .08);
}

.da-page .da-sticky-card {
  top: 126px;
  padding: 26px;
  border: 1px solid #d8e3ec;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(7, 23, 95, .12);
}

.da-sticky-card__head {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e9f0;
}

.da-sticky-card__head > span {
  display: block;
  margin-bottom: 7px;
  color: #f43a70;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.da-sticky-card__head h2 {
  margin: 0;
  color: #07175f;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.da-page .da-price-main {
  color: #07175f;
}

.da-page .da-doplnek {
  padding: 12px 0;
  border-color: #e5ebf1;
}

.da-page .da-btn-zapis {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  background: #f43a70;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(244, 58, 112, .22);
}

.da-page .da-btn-zapis:hover {
  background: #df2d62;
}

.da-page .da-btn-zapis.obsazeno {
  background: #8c98a8;
  box-shadow: none;
}

.da-login-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 15px;
  color: #53647b;
  background: #eef7fa;
  border: 1px solid #cde8ef;
  border-radius: 16px;
}

.da-login-note > i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #07175f;
  border-radius: 11px;
}

.da-login-note strong,
.da-login-note span {
  display: block;
}

.da-login-note strong {
  margin-bottom: 3px;
  color: #07175f;
  font-size: 13px;
}

.da-login-note span {
  font-size: 12px;
  line-height: 1.55;
}

.da-sticky-card__note {
  margin: 12px 0 0;
  color: #7a8798;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.da-sticky-card__note a {
  color: #07175f;
  font-weight: 800;
}

@media (max-width: 991px) {
  .da-page {
    padding-top: 28px;
  }

  .da-page .da-sticky-card {
    display: none;
  }

  .da-mobile-bar {
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  }

  .da-mobile-bar .da-btn-zapis {
    margin-top: 0;
    background: #f43a70;
    border-radius: 999px;
  }
}

@media (max-width: 767px) {
  .za-card-actions {
    width: 100%;
  }

  .za-card-actions .za-btn-info,
  .za-card-actions .za-btn-zapis,
  .za-card-actions .za-btn-nahradnik {
    flex: 1 1 0;
  }

  .da-page .da-hero {
    height: 270px;
    min-height: 0;
    border-radius: 22px;
  }

  .da-meta-row--facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .da-meta-row--facts .da-meta-item {
    border-radius: 15px;
  }

  .da-content-card {
    padding: 24px 20px;
    border-radius: 21px;
  }

  .da-content-card__head {
    margin-bottom: 18px;
  }

  .da-richtext,
  .da-content-card--lead .da-richtext {
    font-size: 15px;
    line-height: 1.75;
  }

  .da-page .da-logistika-grid,
  .da-contact-grid {
    grid-template-columns: 1fr;
  }

  .da-page .da-logistika-item {
    min-height: 0;
  }

  .da-page .da-foto-grid {
    grid-template-columns: 1fr 1fr;
  }

  .da-page .da-sticky-card {
    padding: 22px 20px;
    border-radius: 21px;
  }
}

@media (max-width: 420px) {
  .za-card-actions {
    flex-direction: column;
  }

  .za-card-actions .za-btn-info,
  .za-card-actions .za-btn-zapis,
  .za-card-actions .za-btn-nahradnik {
    width: 100%;
  }

  .da-page .da-foto-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Final UI polish 2026-07-29 ===== */
:root {
  --sf-navy: #07175f;
  --sf-navy-soft: #102a70;
  --sf-cyan: #24b7db;
  --sf-pink: #f43a70;
  --sf-pink-dark: #df2d62;
  --sf-bg: #f4f7fb;
  --sf-surface: #ffffff;
  --sf-text: #13213b;
  --sf-text-muted: #65748b;
  --sf-border: #dce5ef;
  --sf-shadow-card: 0 18px 46px rgba(7, 23, 95, 0.08);
  --sf-shadow-hover: 0 24px 56px rgba(7, 23, 95, 0.13);
}

body {
  background: var(--sf-bg);
  color: var(--sf-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--sf-navy);
}

.sf-main-nav {
  border-bottom: 1px solid rgba(7, 23, 95, 0.07);
}

.sf-nav-inner {
  min-height: 72px;
}

.sf-nav-menu .nav-menu > li > a {
  min-height: 42px;
  padding-inline: 12px;
  color: var(--sf-navy);
}

.sf-nav-menu .nav-menu > li > a:hover,
.sf-nav-menu .nav-menu > li > a.active {
  background: #edf8fb;
  color: var(--sf-navy);
}

.sf-nav-cta,
.sf-button,
.main-btn,
.btn-primary,
.rez-btn-primary,
.vt-btn.is-ready {
  border-color: var(--sf-pink);
  background: var(--sf-pink);
  box-shadow: 0 12px 26px rgba(244, 58, 112, 0.2);
}

.sf-nav-cta:hover,
.sf-button:hover,
.main-btn:hover,
.btn-primary:hover,
.rez-btn-primary:hover,
.vt-btn.is-ready:hover {
  border-color: var(--sf-pink-dark);
  background: var(--sf-pink-dark);
}

.sf-button--secondary,
.btn-outline-primary,
.rez-btn-secondary {
  border-color: #cbd8e6;
  background: #fff;
  color: var(--sf-navy);
  box-shadow: none;
}

.sf-button--secondary:hover,
.btn-outline-primary:hover,
.rez-btn-secondary:hover {
  border-color: var(--sf-cyan);
  background: #eefaff;
  color: var(--sf-navy);
}

.btn,
.sf-button,
.sf-nav-cta,
.rez-btn-primary,
.rez-btn-secondary {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.card,
.rez-card,
.pot-card,
.vt-main,
.vt-side-card {
  border-color: var(--sf-border) !important;
  border-radius: 20px !important;
  box-shadow: var(--sf-shadow-card) !important;
}

.card-header,
.rez-card-header,
.pot-card-header {
  border-color: #e7edf4 !important;
}

.form-control,
.form-select,
.rez-input,
.vt-field-input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  min-height: 48px;
  border-color: #ccd8e5;
  border-radius: 13px;
  background-color: #fff;
  color: var(--sf-text);
  box-shadow: none;
}

textarea {
  min-height: 120px;
}

.form-control:focus,
.form-select:focus,
.rez-input:focus,
.vt-field-input:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: var(--sf-cyan);
  box-shadow: 0 0 0 4px rgba(36, 183, 219, 0.13);
  outline: 0;
}

.alert {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(7, 23, 95, 0.06);
}

.table {
  overflow: hidden;
  border-color: var(--sf-border);
  border-radius: 16px;
}

.table thead th {
  border-bottom-color: #dce5ef;
  background: #eef4fa;
  color: var(--sf-navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-banner .sf-profile-banner {
  min-height: 190px;
  padding-block: 30px;
}

.sfpb-title-block {
  padding-inline: 12px;
}

.sfpb-title-block h2,
.page-banner .banner-content h2 {
  font-size: clamp(30px, 3.5vw, 46px);
}

.sfpb-sub {
  color: #84e3f5 !important;
}

.sfpb-user-center {
  padding: 10px 14px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(7, 23, 95, 0.28);
  backdrop-filter: blur(8px);
}

.sf-catalog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding: 22px 24px;
  border: 1px solid #dbe6ef;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(7, 23, 95, 0.07);
}

.sf-catalog-cta > div {
  display: grid;
  gap: 3px;
}

.sf-catalog-cta span {
  color: var(--sf-pink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sf-catalog-cta strong {
  color: var(--sf-navy);
  font-size: 17px;
}

.sf-catalog-cta .sf-button {
  flex: 0 0 auto;
  gap: 10px;
  min-height: 50px;
  padding-inline: 22px;
  border-color: var(--sf-navy);
  background: var(--sf-navy);
  color: #fff;
}

.sf-catalog-cta .sf-button:hover {
  border-color: var(--sf-pink);
  background: var(--sf-pink);
}

.sf-course-card,
.za-card,
.sf-audience-card,
.sf-benefit-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sf-course-card:hover,
.za-card:hover,
.sf-audience-card:hover,
.sf-benefit-card:hover {
  border-color: #c9d8e7;
  box-shadow: var(--sf-shadow-hover);
  transform: translateY(-4px);
}

.sf-course-image,
.za-card-img {
  overflow: hidden;
}

.sf-course-image img,
.za-card-img img {
  transition: transform 0.4s ease;
}

.sf-course-card:hover .sf-course-image img,
.za-card:hover .za-card-img img {
  transform: scale(1.035);
}

.sf-dashboard {
  padding: 46px 0 70px;
  background:
    radial-gradient(circle at 7% 4%, rgba(36, 183, 219, 0.09), transparent 24%),
    radial-gradient(circle at 96% 92%, rgba(244, 58, 112, 0.07), transparent 22%),
    var(--sf-bg);
}

.sf-dashboard-flashes {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.sf-dashboard-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
  padding: 30px 32px;
  border: 1px solid rgba(7, 23, 95, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 251, 255, 0.96) 70%, rgba(236, 247, 252, 0.92) 100%);
  box-shadow: var(--sf-shadow-card);
}

.sf-dashboard-eyebrow,
.sf-dashboard-panel__kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--sf-pink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sf-dashboard-welcome h1 {
  margin: 0 0 8px;
  color: var(--sf-navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.sf-dashboard-welcome p {
  max-width: 660px;
  margin: 0;
  color: var(--sf-text-muted);
  font-size: 15px;
}

.sf-dashboard-welcome__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.sf-dashboard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.sf-dashboard-btn--primary {
  border-color: var(--sf-pink);
  background: var(--sf-pink);
  color: #fff;
  box-shadow: 0 13px 28px rgba(244, 58, 112, 0.2);
}

.sf-dashboard-btn--primary:hover {
  border-color: var(--sf-pink-dark);
  background: var(--sf-pink-dark);
  color: #fff;
  transform: translateY(-2px);
}

.sf-dashboard-btn--secondary {
  border-color: #cbd8e6;
  background: #fff;
  color: var(--sf-navy);
}

.sf-dashboard-btn--secondary:hover {
  border-color: var(--sf-cyan);
  background: #eefaff;
  color: var(--sf-navy);
  transform: translateY(-2px);
}

.sf-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.sf-dashboard-stat {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--sf-border);
  border-radius: 20px;
  background: #fff;
  color: var(--sf-text);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(7, 23, 95, 0.06);
  transition: 0.2s ease;
}

.sf-dashboard-stat:hover {
  border-color: #bfd4e4;
  color: var(--sf-text);
  box-shadow: var(--sf-shadow-hover);
  transform: translateY(-3px);
}

.sf-dashboard-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  color: #fff;
  font-size: 19px;
}

.sf-dashboard-stat.is-blue .sf-dashboard-stat__icon {
  background: linear-gradient(135deg, #287bd1, #24b7db);
}

.sf-dashboard-stat.is-navy .sf-dashboard-stat__icon {
  background: linear-gradient(135deg, #07175f, #20408c);
}

.sf-dashboard-stat.is-pink .sf-dashboard-stat__icon {
  background: linear-gradient(135deg, #f43a70, #ff6a96);
}

.sf-dashboard-stat.is-cyan .sf-dashboard-stat__icon {
  background: linear-gradient(135deg, #0d8fac, #46cde8);
}

.sf-dashboard-stat__content {
  display: grid;
  min-width: 0;
}

.sf-dashboard-stat__content small {
  overflow: hidden;
  color: var(--sf-text-muted);
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sf-dashboard-stat__content strong {
  margin-block: 1px;
  color: var(--sf-navy);
  font-size: 30px;
  line-height: 1;
}

.sf-dashboard-stat__content em {
  color: #8290a3;
  font-size: 11px;
  font-style: normal;
}

.sf-dashboard-stat__arrow {
  color: #a9b5c3;
  font-size: 11px;
}

.sf-dashboard-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.sf-dashboard-grid--main {
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.75fr);
  margin-bottom: 24px;
}

.sf-dashboard-grid--bottom {
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
}

.sf-dashboard-panel {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--sf-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--sf-shadow-card);
}

.sf-dashboard-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e8eef4;
}

.sf-dashboard-panel__head h2 {
  margin: 0;
  color: var(--sf-navy);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.sf-dashboard-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: #fff0f5;
  color: var(--sf-pink);
  font-size: 11px;
  font-weight: 850;
}

.sf-dashboard-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  color: var(--sf-navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.sf-dashboard-panel__link:hover {
  color: var(--sf-pink);
}

.sf-dashboard-empty {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 180px;
  padding: 26px;
  border: 1px dashed #cfdbe7;
  border-radius: 20px;
  background: #f8fbfd;
}

.sf-dashboard-empty--compact {
  min-height: 140px;
}

.sf-dashboard-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 19px;
  background: #e9f9fd;
  color: #118fae;
  font-size: 22px;
}

.sf-dashboard-empty h3 {
  margin: 0 0 5px;
  color: var(--sf-navy);
  font-size: 18px;
}

.sf-dashboard-empty p {
  margin: 0;
  color: var(--sf-text-muted);
  font-size: 14px;
}

.sf-dashboard-empty .sf-dashboard-btn {
  margin-left: auto;
  flex: 0 0 auto;
}

.sf-dashboard-news-list {
  display: grid;
  gap: 12px;
}

.sf-dashboard-news {
  position: relative;
  display: grid;
  grid-template-columns: 5px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
  border: 1px solid #e1e9f1;
  border-radius: 18px;
  background: #fbfcfe;
}

.sf-dashboard-news.is-new {
  border-color: #bfe5ee;
  background: #f3fbfd;
}

.sf-dashboard-news__marker {
  width: 5px;
  height: 100%;
  min-height: 62px;
  border-radius: 999px;
  background: #8da0b4;
}

.sf-dashboard-news__marker.is-kriticka {
  background: #df2d62;
}

.sf-dashboard-news__marker.is-vysoka {
  background: #f59e0b;
}

.sf-dashboard-news__marker.is-normalni {
  background: #24b7db;
}

.sf-dashboard-news__marker.is-nizka {
  background: #7a8ca1;
}

.sf-dashboard-news__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 5px;
  color: #7a889b;
  font-size: 11px;
  font-weight: 750;
}

.sf-dashboard-news__body h3 {
  margin: 0 0 6px;
  color: var(--sf-navy);
  font-size: 17px;
}

.sf-dashboard-news__body p {
  margin: 0;
  color: var(--sf-text-muted);
  font-size: 13px;
  line-height: 1.65;
}

.sf-dashboard-news__badge {
  align-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--sf-pink);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
}

.sf-dashboard-quick-links {
  display: grid;
  gap: 10px;
}

.sf-dashboard-quick-links > a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 13px;
  border: 1px solid #e0e8f0;
  border-radius: 16px;
  color: var(--sf-text);
  text-decoration: none;
  transition: 0.18s ease;
}

.sf-dashboard-quick-links > a:hover {
  border-color: #bcdceb;
  background: #f3fbfd;
  color: var(--sf-text);
  transform: translateX(3px);
}

.sf-dashboard-quick-links > a > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #eef5fa;
  color: var(--sf-navy);
}

.sf-dashboard-quick-links strong,
.sf-dashboard-quick-links small {
  display: block;
}

.sf-dashboard-quick-links strong {
  margin-bottom: 2px;
  color: var(--sf-navy);
  font-size: 14px;
}

.sf-dashboard-quick-links small {
  color: var(--sf-text-muted);
  font-size: 11px;
  line-height: 1.45;
}

.sf-dashboard-quick-links > a > i {
  color: #9aa8b8;
  font-size: 11px;
}

.sf-dashboard-attention {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 15px;
  border: 1px solid #f8d6df;
  border-radius: 16px;
  background: #fff5f8;
  color: #8b2346;
}

.sf-dashboard-attention > i {
  margin-top: 3px;
  color: var(--sf-pink);
}

.sf-dashboard-attention strong,
.sf-dashboard-attention span {
  display: block;
}

.sf-dashboard-attention strong {
  margin-bottom: 2px;
  font-size: 13px;
}

.sf-dashboard-attention span {
  font-size: 11px;
  line-height: 1.5;
}

.sf-dashboard-reservation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sf-dashboard-reservation {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 270px;
  padding: 18px;
  border: 1px solid #dfe7ef;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  transition: 0.2s ease;
}

.sf-dashboard-reservation:hover {
  border-color: #bdd4e5;
  box-shadow: 0 16px 34px rgba(7, 23, 95, 0.09);
  transform: translateY(-3px);
}

.sf-dashboard-reservation__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.sf-dashboard-status {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
}

.sf-dashboard-status.is-info {
  background: #eaf6ff;
  color: #1668a6;
}

.sf-dashboard-status.is-warning {
  background: #fff6df;
  color: #9a6400;
}

.sf-dashboard-status.is-success {
  background: #eaf8ee;
  color: #16723a;
}

.sf-dashboard-status.is-muted {
  background: #eef1f4;
  color: #647286;
}

.sf-dashboard-reservation__number {
  overflow: hidden;
  color: #8794a6;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sf-dashboard-reservation h3 {
  margin: 0 0 16px;
  color: var(--sf-navy);
  font-size: 17px;
  line-height: 1.35;
}

.sf-dashboard-reservation dl {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.sf-dashboard-reservation dl > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px dashed #e1e8ef;
}

.sf-dashboard-reservation dt,
.sf-dashboard-reservation dd {
  margin: 0;
  font-size: 11px;
}

.sf-dashboard-reservation dt {
  color: #718095;
  font-weight: 650;
}

.sf-dashboard-reservation dt i {
  width: 15px;
  color: var(--sf-cyan);
}

.sf-dashboard-reservation dd {
  color: var(--sf-navy);
  font-weight: 800;
  text-align: right;
}

.sf-dashboard-reservation dd.is-due {
  color: var(--sf-pink);
}

.sf-dashboard-reservation dd.is-paid {
  color: #168746;
}

.sf-dashboard-reservation > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--sf-navy);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.sf-dashboard-reservation > a:hover {
  color: var(--sf-pink);
}

.sf-dashboard-members-list {
  display: grid;
  gap: 10px;
}

.sf-dashboard-member {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 28px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e0e8ef;
  border-radius: 16px;
  background: #fbfcfe;
}

.sf-dashboard-member__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--sf-navy), #22519f);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.sf-dashboard-member__main {
  min-width: 0;
}

.sf-dashboard-member__name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 2px;
}

.sf-dashboard-member__name strong {
  overflow: hidden;
  color: var(--sf-navy);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sf-dashboard-member__sfkids {
  padding: 3px 7px;
  border-radius: 999px;
  background: #fff0f5;
  color: var(--sf-pink);
  font-size: 8px;
  font-weight: 850;
}

.sf-dashboard-member__main > small {
  display: block;
  color: #8794a5;
  font-size: 9px;
}

.sf-dashboard-member__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}

.sf-dashboard-member__skills span {
  padding: 3px 7px;
  border-radius: 999px;
  background: #edf4f9;
  color: #4b6079;
  font-size: 8px;
  font-weight: 750;
}

.sf-dashboard-member > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #8997a8;
  text-decoration: none;
}

.sf-dashboard-member > a:hover {
  background: #edf8fb;
  color: var(--sf-navy);
}

.sf-footer {
  border-top: 5px solid var(--sf-pink);
}

.sf-footer-grid {
  gap: 52px;
}

.sf-footer-links a {
  transition: color 0.18s ease, transform 0.18s ease;
}

.sf-footer-links a:hover {
  color: #75dff2;
  transform: translateX(3px);
}

@media (max-width: 1199px) {
  .sf-dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-dashboard-grid--main,
  .sf-dashboard-grid--bottom {
    grid-template-columns: 1fr;
  }

  .sf-dashboard-reservation-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }
}

@media (max-width: 991px) {
  .sf-nav-inner {
    min-height: 68px;
  }

  .sf-dashboard {
    padding-top: 32px;
  }

  .sf-dashboard-welcome {
    align-items: flex-start;
    flex-direction: column;
  }

  .sf-dashboard-welcome__actions {
    width: 100%;
  }

  .sf-dashboard-welcome__actions .sf-dashboard-btn {
    flex: 1 1 220px;
  }

  .sf-catalog-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .page-banner .sf-profile-banner {
    min-height: 170px;
    padding: 24px 18px;
  }

  .sfpb-user-center {
    padding: 8px 11px;
  }

  .sf-dashboard {
    padding: 24px 0 50px;
  }

  .sf-dashboard-welcome,
  .sf-dashboard-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .sf-dashboard-welcome h1 {
    font-size: 28px;
  }

  .sf-dashboard-welcome__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sf-dashboard-welcome__actions .sf-dashboard-btn {
    width: 100%;
  }

  .sf-dashboard-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sf-dashboard-stat {
    padding: 15px;
  }

  .sf-dashboard-stat__icon {
    width: 46px;
    height: 46px;
  }

  .sf-dashboard-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .sf-dashboard-panel__head h2 {
    font-size: 21px;
  }

  .sf-dashboard-empty,
  .sf-dashboard-empty--compact {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
  }

  .sf-dashboard-empty .sf-dashboard-btn {
    width: 100%;
    margin-left: 0;
  }

  .sf-dashboard-news {
    grid-template-columns: 4px minmax(0, 1fr);
  }

  .sf-dashboard-news__badge {
    display: none;
  }

  .sf-dashboard-reservation-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .sf-dashboard-reservation {
    min-height: 0;
  }

  .sf-catalog-cta {
    padding: 20px;
  }

  .sf-catalog-cta .sf-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .sf-dashboard-stat {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .sf-dashboard-stat__arrow {
    display: none;
  }

  .sf-dashboard-quick-links > a {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .sf-dashboard-quick-links > a > span {
    width: 40px;
    height: 40px;
  }

  .sf-dashboard-quick-links > a > i {
    display: none;
  }
}


/* Patch 2026-07-29: katalog, navigace, tlačítka a rezervační formulář. */
.sf-nav-menu .nav-menu > li > a,
.sf-nav-menu .nav-menu > li > a:hover,
.sf-nav-menu .nav-menu > li > a.active {
  text-decoration: none !important;
}

.sf-nav-menu .nav-menu > li > a::after {
  bottom: 0;
}

.sf-nav-menu .nav-menu > li > a:hover,
.sf-nav-menu .nav-menu > li > a.active {
  background: transparent;
}

.sf-button:not(.sf-button--outline):not(.sf-button--secondary),
.sf-nav-cta,
.btn-primary,
.rez-btn-primary,
.vt-btn.is-ready {
  color: #fff !important;
}

.sf-button.sf-button--outline,
.sf-button.sf-button--secondary,
.btn-outline-primary,
.rez-btn-secondary {
  border-color: #a9bac8;
  background: #fff;
  color: var(--sf-navy) !important;
  box-shadow: none;
}

.sf-button.sf-button--outline:hover,
.sf-button.sf-button--secondary:hover,
.btn-outline-primary:hover,
.rez-btn-secondary:hover {
  border-color: var(--sf-navy);
  background: var(--sf-navy);
  color: #fff !important;
}

.za-pill[data-kat="__all__"] {
  padding-inline: 20px;
}

.rez-ucastnik-row-disabled .rez-ucastnik-label {
  cursor: not-allowed;
}

/* Patch 2026-07-29: finální marketingové a mobilní doladění titulní stránky. */
.sf-hero-copy h1 span {
  color: var(--sf-pink);
  text-decoration-color: rgba(36, 183, 219, 0.72);
}

.sf-hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 24px;
}

.sf-hero-proof > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid rgba(7, 23, 95, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 28px rgba(7, 23, 95, 0.05);
}

.sf-hero-proof strong {
  color: var(--sf-navy);
  font-size: 21px;
  font-weight: 900;
  white-space: nowrap;
}

.sf-hero-proof span {
  color: var(--sf-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.sf-registration-benefits__visual--party {
  min-height: 470px;
  background:
    radial-gradient(circle at 18% 18%, rgba(36, 183, 219, 0.2), transparent 32%),
    radial-gradient(circle at 86% 78%, rgba(244, 58, 112, 0.15), transparent 34%),
    #f8fbff;
}

.sf-registration-benefits__visual--party img {
  right: 18px;
  bottom: 8px;
  left: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 104px);
  border-radius: 0;
  object-fit: contain;
  object-position: center bottom;
}

.sf-course-card {
  position: relative;
  border-top: 4px solid var(--sf-cyan);
}

.sf-course-card.is-inline {
  border-top-color: var(--sf-pink);
}

.sf-course-card.is-snowboard {
  border-top-color: #5575dd;
}

.sf-course-card.is-ice {
  border-top-color: var(--sf-cyan);
}

.sf-course-card.is-camp {
  border-top-color: #62ae43;
}

.sf-course-card.is-ski {
  border-top-color: var(--sf-navy);
}

.sf-course-body {
  padding: 22px;
}

.sf-course-body h3 {
  min-height: 55px;
  margin-bottom: 10px;
  font-size: 21px;
}

.sf-course-body > p {
  display: -webkit-box;
  min-height: 65px;
  overflow: hidden;
  margin-bottom: 16px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.sf-course-meta {
  margin-bottom: 16px;
}

.sf-course-footer {
  align-items: stretch;
  flex-direction: column;
  gap: 13px;
}

.sf-course-price {
  min-height: 24px;
  font-size: 18px;
}

.sf-course-price.is-missing {
  color: #6c7c8e;
  font-size: 14px;
  font-weight: 800;
}

.sf-course-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 9px;
}

.sf-course-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid #b9c8d7;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.sf-course-action--detail {
  background: #fff;
  color: var(--sf-navy);
}

.sf-course-action--detail:hover {
  border-color: var(--sf-cyan);
  background: #eefaff;
  color: var(--sf-navy);
}

.sf-course-action--primary {
  border-color: var(--sf-navy);
  background: var(--sf-navy);
  color: #fff;
}

.sf-course-action--primary:hover {
  border-color: var(--sf-pink);
  background: var(--sf-pink);
  color: #fff;
  transform: translateY(-1px);
}

.sf-course-action--disabled {
  border-color: #e1e6ec;
  background: #eef1f4;
  color: #8a96a5;
  cursor: not-allowed;
}

.sf-stats-strip {
  box-shadow: 0 16px 38px rgba(7, 23, 95, 0.06);
}

.sf-stat strong {
  font-size: 28px;
  font-weight: 900;
}

.sf-home-mobile-cta {
  display: none;
}

@media (max-width: 991px) {
  .sf-hero-proof {
    max-width: none;
  }

  .sf-course-body h3,
  .sf-course-body > p {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .sf-home-hero {
    padding-bottom: 40px;
  }

  .sf-hero-copy > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .sf-hero-points {
    display: grid;
    gap: 9px;
  }

  .sf-hero-proof {
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }

  .sf-hero-proof > div {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 12px;
  }

  .sf-hero-proof strong {
    font-size: 19px;
  }

  .sf-hero-media {
    min-height: 330px;
  }

  .sf-hero-image--mascot {
    min-height: 330px;
  }

  .sf-hero-card {
    width: 170px;
  }

  .sf-hero-card strong {
    font-size: 23px;
  }

  .sf-course-grid .sf-course-card:nth-child(n + 4) {
    display: none;
  }

  .sf-course-image {
    height: 175px;
  }

  .sf-course-body {
    padding: 18px;
  }

  .sf-course-body h3 {
    min-height: 0;
    font-size: 20px;
  }

  .sf-course-body > p {
    min-height: 0;
    margin-bottom: 14px;
    -webkit-line-clamp: 2;
  }

  .sf-course-actions {
    grid-template-columns: 1fr 1.25fr;
  }

  .sf-registration-benefits__grid {
    gap: 34px;
  }

  .sf-benefit-grid {
    gap: 10px;
  }

  .sf-benefit-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    padding: 13px;
    border-radius: 15px;
  }

  .sf-benefit-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 17px;
  }

  .sf-benefit-card h3 {
    font-size: 15px;
  }

  .sf-benefit-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  .sf-registration-benefits__visual--party {
    min-height: 360px;
  }

  .sf-registration-benefits__visual--party img {
    height: calc(100% - 96px);
  }

  .sf-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .sf-home-mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 60px;
    padding: 10px 14px 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(7, 23, 95, 0.96);
    color: #fff;
    box-shadow: 0 18px 42px rgba(7, 23, 95, 0.34);
    text-decoration: none;
    backdrop-filter: blur(12px);
  }

  .sf-home-mobile-cta span {
    color: #cceef6;
    font-size: 10px;
    font-weight: 750;
  }

  .sf-home-mobile-cta strong {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .sf-course-actions {
    grid-template-columns: 1fr;
  }

  .sf-registration-benefits__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sf-registration-benefits__actions .sf-button,
  .sf-registration-benefits__actions .sf-text-link {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .sf-home-mobile-cta span {
    display: none;
  }
}

/* ================================================================
   V5.3 — vycentrovaná hlavička stránek a rezervací
   ================================================================ */
.page-banner {
  width: 100%;
}

.page-banner .sf-profile-banner {
  display: grid !important;
  place-items: center;
  min-height: 220px;
  padding: 38px clamp(20px, 5vw, 72px) !important;
  text-align: center;
  isolation: isolate;
}

.page-banner .sf-profile-banner::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.09), transparent 58%);
  pointer-events: none;
}

.page-banner .sf-profile-banner .sfpb-spacer {
  display: none !important;
}

.page-banner .sf-profile-banner .sfpb-title-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center !important;
}

.page-banner .sf-profile-banner .sfpb-sub {
  width: 100%;
  margin: 0 0 8px;
  text-align: center;
}

.page-banner .sf-profile-banner .sfpb-title-block h2 {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  color: #fff !important;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  text-align: center !important;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.page-banner .sf-profile-banner .sfpb-user-center {
  display: inline-flex;
  align-items: center;
  justify-content: center !important;
  gap: 10px;
  width: auto;
  max-width: 100%;
  margin: 16px auto 0;
  padding: 7px 14px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(4, 24, 70, 0.34);
  box-shadow: 0 10px 30px rgba(3, 18, 55, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: left;
}

.page-banner .sf-profile-banner .sfpb-avatar {
  width: 38px;
  height: 38px;
  border-width: 1px;
  font-size: 27px;
}

.page-banner .sf-profile-banner .sfpb-typ {
  margin: 0 0 1px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-banner .sf-profile-banner .sfpb-reg {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
}

.page-banner .sf-profile-banner .sfpb-sport-figures {
  display: none !important;
}

@media (max-width: 767px) {
  .page-banner .sf-profile-banner {
    min-height: 178px;
    padding: 26px 16px !important;
  }

  .page-banner .sf-profile-banner .sfpb-title-block {
    width: 100%;
  }

  .page-banner .sf-profile-banner .sfpb-title-block h2 {
    max-width: 620px;
    font-size: clamp(23px, 7vw, 30px);
    line-height: 1.18;
    letter-spacing: -0.025em;
  }

  .page-banner .sf-profile-banner .sfpb-sub {
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .page-banner .sf-profile-banner .sfpb-user-center {
    margin-top: 13px;
    padding: 6px 12px 6px 7px;
  }

  .page-banner .sf-profile-banner .sfpb-avatar {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .page-banner .sf-profile-banner {
    min-height: 164px;
    padding-inline: 12px !important;
  }

  .page-banner .sf-profile-banner .sfpb-title-block h2 {
    font-size: 22px;
  }
}

/* ================================================================
   PROFIL INSTRUKTORA — UI REVIZE 2026-07-30
   ================================================================ */
.sf-instructor-profile {
  --sf-ip-navy: #08175e;
  --sf-ip-blue: #1e87b5;
  --sf-ip-cyan: #28b8da;
  --sf-ip-pink: #f23d72;
  --sf-ip-text: #17233b;
  --sf-ip-muted: #667085;
  --sf-ip-line: #dbe4ee;
  --sf-ip-soft: #f6f8fc;
  --sf-ip-success: #15955c;
}

.sf-instructor-card {
  overflow: hidden;
  border: 1px solid rgba(8, 23, 94, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(8, 23, 94, 0.08);
}

.sf-instructor-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px 26px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(40, 184, 218, 0.28), transparent 28%),
    linear-gradient(135deg, #071454 0%, #0a226f 58%, #123c83 100%);
}

.sf-instructor-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  font-size: 22px;
}

.sf-instructor-header-copy {
  min-width: 0;
}

.sf-instructor-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--sf-ip-pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sf-instructor-header .sf-instructor-kicker {
  color: #86e8f7;
}

.sf-instructor-header h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.15;
}

.sf-instructor-header p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.sf-instructor-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.sf-instructor-status-number {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.sf-instructor-body {
  padding: 26px;
}

.sf-instructor-basics {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.sf-instructor-field-card,
.sf-instructor-photo-card {
  min-width: 0;
  border: 1px solid var(--sf-ip-line);
  border-radius: 18px;
  background: var(--sf-ip-soft);
}

.sf-instructor-field-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
}

.sf-instructor-field-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #e7f7fb;
  color: var(--sf-ip-blue);
  font-size: 17px;
}

.sf-instructor-field-content {
  flex: 1;
  min-width: 0;
}

.sf-instructor-profile .form-label {
  margin-bottom: 7px;
  color: var(--sf-ip-text);
  font-size: 13px;
  font-weight: 750;
}

.sf-instructor-profile .form-control {
  min-height: 46px;
  border: 1px solid #cdd8e5;
  border-radius: 12px;
  background: #fff;
  color: var(--sf-ip-text);
  font-size: 14px;
  box-shadow: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.sf-instructor-profile .form-control:focus {
  border-color: var(--sf-ip-cyan);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(40, 184, 218, 0.13);
}

.sf-instructor-field-content > small {
  display: block;
  margin-top: 8px;
  color: var(--sf-ip-muted);
  font-size: 12px;
  line-height: 1.55;
}

.sf-instructor-photo-card {
  padding: 20px;
}

.sf-instructor-photo-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.sf-instructor-photo-label {
  display: block;
  margin-bottom: 4px;
  color: var(--sf-ip-text);
  font-size: 14px;
  font-weight: 800;
}

.sf-instructor-photo-head p {
  margin: 0;
  color: var(--sf-ip-muted);
  font-size: 12px;
  line-height: 1.5;
}

.sf-instructor-required {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: #edf3f8;
  color: #536174;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.sf-instructor-photo-layout {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.sf-instructor-photo-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 146px;
  overflow: hidden;
  border: 1px dashed #b7c5d5;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #edf2f7);
  color: #8a98aa;
  text-align: center;
}

.sf-instructor-photo-preview i {
  margin-bottom: 8px;
  font-size: 28px;
}

.sf-instructor-photo-preview span {
  font-size: 11px;
  font-weight: 700;
}

.sf-instructor-photo-preview.has-photo {
  border-style: solid;
  background: #e7edf4;
}

.sf-instructor-photo-preview img {
  width: 100%;
  height: 100%;
  min-height: 146px;
  object-fit: cover;
}

.sf-instructor-photo-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.sf-instructor-current-file {
  min-width: 0;
  margin-bottom: 9px;
}

.sf-instructor-current-file span {
  display: block;
  color: var(--sf-ip-muted);
  font-size: 11px;
}

.sf-instructor-current-file strong {
  display: block;
  overflow: hidden;
  color: var(--sf-ip-text);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sf-file-upload {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 12px 14px;
  overflow: hidden;
  border: 1px dashed #9fb2c6;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.sf-file-upload:hover {
  border-color: var(--sf-ip-cyan);
  background: #f7fdff;
  transform: translateY(-1px);
}

.sf-file-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.sf-file-upload-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #e8f8fb;
  color: var(--sf-ip-blue);
  font-size: 17px;
}

.sf-file-upload-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sf-file-upload-copy strong {
  color: var(--sf-ip-text);
  font-size: 13px;
}

.sf-file-upload-copy small {
  color: var(--sf-ip-muted);
  font-size: 11px;
}

.sf-photo-delete {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  align-self: flex-start;
  margin-top: 9px;
  color: #d73552;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.sf-photo-delete:hover {
  color: #aa1e39;
  text-decoration: underline;
}

.sf-qualifications {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--sf-ip-line);
}

.sf-qualifications-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.sf-qualifications-head h3 {
  margin: 0 0 4px;
  color: var(--sf-ip-navy);
  font-size: 24px;
  font-weight: 800;
}

.sf-qualifications-head p {
  margin: 0;
  color: var(--sf-ip-muted);
  font-size: 13px;
  line-height: 1.6;
}

.sf-qualification-count {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 999px;
  background: #edf3fb;
  color: var(--sf-ip-navy);
  font-size: 11px;
  font-weight: 800;
}

.sf-qualification-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.sf-qualification-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--sf-ip-line);
  border-radius: 15px;
  background: #fff;
}

.sf-qualification-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #fff2d7;
  color: #c98713;
}

.sf-qualification-main {
  min-width: 0;
}

.sf-qualification-title-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.sf-qualification-title-row h4 {
  margin: 0;
  color: var(--sf-ip-text);
  font-size: 15px;
  font-weight: 800;
}

.sf-qualification-area {
  padding: 4px 8px;
  border-radius: 999px;
  background: #e8f8ee;
  color: #167044;
  font-size: 10px;
  font-weight: 800;
}

.sf-qualification-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 5px;
  color: var(--sf-ip-muted);
  font-size: 11px;
}

.sf-qualification-meta span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.sf-qualification-file {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 8px;
  color: var(--sf-ip-blue);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.sf-qualification-file:hover {
  color: var(--sf-ip-navy);
  text-decoration: underline;
}

.sf-qualification-delete,
.sf-qualification-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1c4cc;
  border-radius: 10px;
  background: #fff;
  color: #d73552;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.sf-qualification-delete {
  width: 36px;
  height: 36px;
}

.sf-qualification-delete:hover,
.sf-qualification-remove:hover {
  border-color: #d73552;
  background: #fff1f4;
  color: #b3213d;
}

.sf-qualification-empty {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid #f0dca6;
  border-radius: 15px;
  background: #fff9e8;
}

.sf-qualification-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #fff1c6;
  color: #a66c00;
}

.sf-qualification-empty strong {
  display: block;
  color: #684b00;
  font-size: 13px;
}

.sf-qualification-empty p {
  margin: 3px 0 0;
  color: #8a6c20;
  font-size: 12px;
}

.sf-qualification-editor {
  padding: 18px;
  border: 1px solid var(--sf-ip-line);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8faff 0%, #f4f7fb 100%);
}

.sf-qualification-editor-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.sf-qualification-editor-head h4 {
  margin: 0;
  color: var(--sf-ip-navy);
  font-size: 18px;
  font-weight: 800;
}

.sf-editor-hint {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #5c6a7d;
  font-size: 11px;
  font-weight: 700;
}

.sf-qualification-form-row {
  position: relative;
  padding: 16px;
  border: 1px solid #d8e2ed;
  border-radius: 15px;
  background: #fff;
}

.sf-qualification-form-row + .sf-qualification-form-row {
  margin-top: 12px;
}

.sf-qualification-form-grid {
  display: grid;
  grid-template-columns: minmax(190px, 1.45fr) minmax(130px, 0.75fr) minmax(145px, 0.75fr) minmax(190px, 1.1fr) 38px;
  gap: 12px;
  align-items: end;
}

.sf-form-field {
  min-width: 0;
}

.sf-form-field--note {
  margin-top: 12px;
}

.sf-qualification-remove {
  width: 38px;
  height: 46px;
}

.sf-qualification-editor-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
}

.sf-add-qualification {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--sf-ip-navy);
  border-radius: 12px;
  background: #fff;
  color: var(--sf-ip-navy);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.sf-add-qualification:hover {
  background: var(--sf-ip-navy);
  color: #fff;
  transform: translateY(-1px);
}

.sf-qualification-editor-actions > span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--sf-ip-muted);
  font-size: 11px;
}

#profil-C > form > .d-flex.justify-content-end {
  margin-top: 18px !important;
}

#profil-C > form > .d-flex.justify-content-end .main-btn {
  min-width: 235px;
  min-height: 50px;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(242, 61, 114, 0.2);
}

@media (max-width: 1199px) {
  .sf-instructor-basics {
    grid-template-columns: 1fr;
  }

  .sf-qualification-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-qualification-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 767px) {
  .sf-instructor-card {
    border-radius: 16px;
  }

  .sf-instructor-header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
    padding: 20px 17px;
  }

  .sf-instructor-header-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .sf-instructor-status {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 5px;
    justify-content: flex-start;
    min-width: 0;
    padding: 8px 11px;
  }

  .sf-instructor-status-number {
    font-size: 16px;
  }

  .sf-instructor-body {
    padding: 17px;
  }

  .sf-instructor-field-card,
  .sf-instructor-photo-card {
    border-radius: 15px;
  }

  .sf-instructor-field-card {
    padding: 16px;
  }

  .sf-instructor-photo-card {
    padding: 16px;
  }

  .sf-instructor-photo-head,
  .sf-qualifications-head,
  .sf-qualification-editor-head,
  .sf-qualification-editor-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .sf-instructor-photo-layout {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

  .sf-instructor-photo-preview,
  .sf-instructor-photo-preview img {
    min-height: 124px;
  }

  .sf-file-upload {
    min-height: 62px;
    padding: 10px;
  }

  .sf-qualification-item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .sf-qualification-delete {
    grid-column: 2;
    justify-self: end;
  }

  .sf-qualification-editor {
    padding: 14px;
  }

  .sf-qualification-form-row {
    padding: 14px;
  }

  .sf-qualification-form-grid {
    grid-template-columns: 1fr;
  }

  .sf-qualification-remove {
    top: 10px;
    right: 10px;
  }

  .sf-qualification-editor-actions > span {
    line-height: 1.5;
  }

  #profil-C > form > .d-flex.justify-content-end,
  #profil-C > form > .d-flex.justify-content-end .main-btn {
    width: 100%;
  }
}

@media (max-width: 479px) {
  .sf-instructor-photo-layout {
    grid-template-columns: 1fr;
  }

  .sf-instructor-photo-preview,
  .sf-instructor-photo-preview img {
    min-height: 210px;
    max-height: 260px;
  }
}

/* SF AUDIENCE PHOTO CARDS PATCH V3 START */
.sf-audience-card {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 95, 0.1);
  border-radius: var(--sf-radius);
  background: #07175f;
  box-shadow: 0 18px 42px rgba(7, 23, 95, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sf-audience-card:hover {
  box-shadow: 0 24px 54px rgba(7, 23, 95, 0.18);
  transform: translateY(-5px);
}

.sf-audience-card::before,
.sf-audience-card::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.sf-audience-card > img {
  display: block;
  width: 100%;
  height: 285px;
  min-height: 285px;
  flex: 0 0 285px;
  margin: 0;
  object-fit: cover;
  opacity: 1;
  visibility: visible;
  transition: transform 0.45s ease;
}

.sf-audience-card:nth-child(1) > img {
  object-position: 50% 50%;
}

.sf-audience-card:nth-child(2) > img {
  object-position: 50% 48%;
}

.sf-audience-card:nth-child(3) > img {
  object-position: 50% 56%;
}

.sf-audience-card:hover > img {
  transform: scale(1.025);
}

.sf-audience-content {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 2;
  display: flex;
  min-height: 255px;
  flex: 1;
  flex-direction: column;
  padding: 26px 28px 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(36, 183, 219, 0.16), transparent 42%),
    linear-gradient(145deg, #07175f 0%, #102b78 100%);
  color: #fff;
}

.sf-audience-content small {
  margin-bottom: 9px;
  color: #c8eadb;
}

.sf-audience-content h3 {
  margin-bottom: 11px;
  color: #fff;
  font-size: 27px;
  line-height: 1.16;
}

.sf-audience-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.58;
}

.sf-audience-content a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

.sf-audience-content a:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 991px) {
  .sf-audience-card,
  .sf-audience-card:last-child {
    min-height: 520px;
  }

  .sf-audience-card:last-child {
    grid-column: 1 / -1;
  }

  .sf-audience-card:last-child > img {
    height: 320px;
    min-height: 320px;
    flex-basis: 320px;
    object-position: 50% 56%;
  }
}

@media (max-width: 767px) {
  .sf-audience-card,
  .sf-audience-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .sf-audience-card > img,
  .sf-audience-card:last-child > img {
    height: 280px;
    min-height: 280px;
    flex-basis: 280px;
  }

  .sf-audience-content {
    min-height: 0;
    padding: 24px;
  }

  .sf-audience-content h3 {
    font-size: 25px;
  }
}

@media (max-width: 480px) {
  .sf-audience-card > img,
  .sf-audience-card:last-child > img {
    height: 235px;
    min-height: 235px;
    flex-basis: 235px;
  }
}
/* SF AUDIENCE PHOTO CARDS PATCH V3 END */

/* SF ABOUT AUDIENCE PHOTO HEIGHT PATCH START */
.sf-about-audience__card > img {
  display: block;
  width: 100%;
  height: 240px;
  min-height: 240px;
  max-height: 240px;
  aspect-ratio: auto;
  object-fit: cover;
}

.sf-about-audience__card--public > img {
  object-position: 50% 50%;
}

.sf-about-audience__card--schools > img {
  object-position: 50% 52%;
}

.sf-about-audience__card--firms > img {
  object-position: 50% 45%;
}

@media (max-width: 1099px) {
  .sf-about-audience__card:last-child > img,
  .sf-about-audience__card > img {
    height: 240px;
    min-height: 240px;
    max-height: 240px;
    aspect-ratio: auto;
  }
}

@media (max-width: 767px) {
  .sf-about-audience__card:last-child > img,
  .sf-about-audience__card > img {
    height: 230px;
    min-height: 230px;
    max-height: 230px;
  }
}

@media (max-width: 480px) {
  .sf-about-audience__card:last-child > img,
  .sf-about-audience__card > img {
    height: 210px;
    min-height: 210px;
    max-height: 210px;
  }
}
/* SF ABOUT AUDIENCE PHOTO HEIGHT PATCH END */

/* SF ABOUT AUDIENCE UNIFY PATCH START */
.sf-about-audience {
  background: #fff;
}

.sf-about-audience__grid {
  align-items: stretch;
  gap: 22px;
}

.sf-about-audience__card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 95, 0.11);
  border-radius: 24px;
  background: #07175f;
  box-shadow: 0 18px 42px rgba(7, 23, 95, 0.1);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.sf-about-audience__card:hover {
  border-color: rgba(36, 183, 219, 0.48);
  box-shadow: 0 26px 58px rgba(7, 23, 95, 0.16);
  transform: translateY(-5px);
}

.sf-about-audience__card > img,
.sf-about-audience__card:last-child > img {
  display: block;
  width: 100%;
  height: 240px;
  min-height: 240px;
  max-height: 240px;
  flex: 0 0 240px;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.sf-about-audience__card:nth-child(1) > img {
  object-position: 50% 50%;
}

.sf-about-audience__card:nth-child(2) > img {
  object-position: 50% 52%;
}

.sf-about-audience__card:nth-child(3) > img {
  object-position: 50% 45%;
}

.sf-about-audience__card:hover > img {
  transform: scale(1.025);
}

.sf-about-audience__card > div {
  position: relative;
  display: flex;
  min-height: 280px;
  flex: 1;
  flex-direction: column;
  padding: 27px 28px 29px;
  background:
    radial-gradient(circle at 100% 0, rgba(36, 183, 219, 0.15), transparent 43%),
    linear-gradient(145deg, #07175f 0%, #12337d 100%);
}

.sf-about-audience__card > div::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.sf-about-audience__card span {
  display: block;
  margin-bottom: 10px;
  color: #9de7f6;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sf-about-audience__card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 25px;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.sf-about-audience__card p {
  min-height: 0;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.65;
}

.sf-about-audience__card a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.sf-about-audience__card a:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 1099px) {
  .sf-about-audience__card {
    min-height: 500px;
  }

  .sf-about-audience__card:last-child {
    grid-column: 1 / -1;
  }

  .sf-about-audience__card:last-child > img,
  .sf-about-audience__card > img {
    height: 240px;
    min-height: 240px;
    max-height: 240px;
    flex-basis: 240px;
    aspect-ratio: auto;
  }

  .sf-about-audience__card:last-child > div {
    min-height: 250px;
  }
}

@media (max-width: 767px) {
  .sf-about-audience__grid {
    gap: 16px;
  }

  .sf-about-audience__card,
  .sf-about-audience__card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .sf-about-audience__card:last-child > img,
  .sf-about-audience__card > img {
    height: 225px;
    min-height: 225px;
    max-height: 225px;
    flex-basis: 225px;
  }

  .sf-about-audience__card > div,
  .sf-about-audience__card:last-child > div {
    min-height: 0;
    padding: 24px;
  }

  .sf-about-audience__card h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .sf-about-audience__card:last-child > img,
  .sf-about-audience__card > img {
    height: 205px;
    min-height: 205px;
    max-height: 205px;
    flex-basis: 205px;
  }

  .sf-about-audience__card > div {
    padding: 22px;
  }
}
/* SF ABOUT AUDIENCE UNIFY PATCH END */

/* SF ABOUT TEAM VISUAL V2 START */
.sf-about-hero__visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 95, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at 92% 8%, rgba(244, 58, 112, 0.14), transparent 34%),
    radial-gradient(circle at 6% 94%, rgba(36, 183, 219, 0.16), transparent 36%),
    linear-gradient(145deg, #f5fbfe 0%, #fff7fa 100%);
  box-shadow: 0 30px 72px rgba(7, 23, 95, 0.16);
  isolation: isolate;
}

.sf-about-hero__visual::before {
  position: absolute;
  top: -74px;
  right: -58px;
  z-index: 0;
  width: 230px;
  height: 230px;
  border: 42px solid rgba(244, 58, 112, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.sf-about-hero__visual::after {
  position: absolute;
  bottom: -88px;
  left: -70px;
  z-index: 0;
  width: 250px;
  height: 250px;
  border: 46px solid rgba(36, 183, 219, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.sf-about-hero__person--team {
  position: absolute;
  inset: 18px;
  z-index: 1;
  display: block;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  max-height: none;
  border: 6px solid rgba(255, 255, 255, 0.96);
  border-radius: 31px;
  object-fit: cover;
  object-position: 50% 48%;
  box-shadow: 0 22px 48px rgba(7, 23, 95, 0.2);
}

.sf-about-hero__quote {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 3;
  width: min(335px, calc(100% - 68px));
  padding: 17px 20px 18px;
  border: 0;
  border-radius: 18px 18px 18px 5px;
  background: #f43a70;
  color: #fff;
  box-shadow: 0 16px 36px rgba(244, 58, 112, 0.3);
  backdrop-filter: none;
}

.sf-about-hero__quote::after {
  position: absolute;
  bottom: -9px;
  left: 23px;
  width: 18px;
  height: 18px;
  background: #f43a70;
  content: "";
  transform: rotate(45deg);
}

.sf-about-hero__quote span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sf-about-hero__quote strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

@media (max-width: 1099px) {
  .sf-about-hero__visual {
    width: min(100%, 700px);
    min-height: 590px;
  }

  .sf-about-hero__person--team {
    object-position: 50% 48%;
  }
}

@media (max-width: 767px) {
  .sf-about-hero__visual {
    min-height: 455px;
    border-radius: 28px;
  }

  .sf-about-hero__person--team {
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border-width: 4px;
    border-radius: 22px;
  }

  .sf-about-hero__quote {
    top: 24px;
    left: 24px;
    width: min(310px, calc(100% - 48px));
    padding: 14px 16px 15px;
  }

  .sf-about-hero__quote strong {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .sf-about-hero__visual {
    min-height: 420px;
  }

  .sf-about-hero__quote {
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
  }
}
/* SF ABOUT TEAM VISUAL V2 END */

/* SF PUBLIC COURSE REGISTRATION UX V1 START */
.da-course-terms {
  scroll-margin-top: 110px;
}

.da-course-terms__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.da-course-terms__heading,
.da-course-terms__action {
  display: inline-flex;
  align-items: center;
}

.da-course-terms__heading {
  gap: 12px;
  min-width: 0;
}

.da-course-terms__heading > span:last-child {
  display: grid;
  gap: 3px;
}

.da-course-terms__heading strong {
  color: #07175f;
  font-size: 15px;
  font-weight: 850;
}

.da-course-terms__heading small {
  color: #667085;
  font-size: 12px;
  font-weight: 650;
}

.da-course-terms__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: #07175f;
  color: #fff;
}

.da-course-terms__action {
  gap: 10px;
  flex: 0 0 auto;
  color: #2b6f86;
  font-size: 12px;
  font-weight: 800;
}

.da-course-terms__toggle .chevron {
  transition: transform 0.2s ease;
}

.da-course-terms__toggle.open .chevron {
  transform: rotate(180deg);
}

.da-course-terms__body {
  display: none;
  padding: 16px !important;
}

.da-course-terms__body.open {
  display: block;
}

.da-course-terms__notice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;
  padding: 11px 13px;
  border: 1px solid #b7e4c7;
  border-radius: 11px;
  background: #f0faf4;
  color: #175c3a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.da-course-terms__notice i {
  margin-top: 2px;
  color: #087443;
}

.da-course-terms__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.da-course-term {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #e0e8ef;
  border-radius: 12px;
  background: #f8fafc;
}

.da-course-term__number {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #eaf3f5;
  color: #174d62;
  font-size: 11px;
  font-weight: 850;
}

.da-course-term__main {
  min-width: 0;
}

.da-course-term__main strong,
.da-course-term__main small {
  display: block;
}

.da-course-term__main strong {
  color: #101828;
  font-size: 12px;
  font-weight: 800;
}

.da-course-term__main small {
  margin-top: 3px;
  overflow: hidden;
  color: #667085;
  font-size: 10px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.da-course-term__main small i {
  margin-right: 5px;
  color: #2b6f86;
}

.da-course-term__time {
  padding: 5px 7px;
  border-radius: 8px;
  background: #fff;
  color: #344054;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.rez-course-backbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 11px 14px;
  border: 1px solid #dbe5ee;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(7, 23, 95, 0.05);
}

.rez-course-backbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #07175f;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.rez-course-backbar a:hover {
  color: #2b6f86;
}

.rez-course-backbar > span {
  color: #667085;
  font-size: 11px;
}

.rez-course-terms-card--compact {
  overflow: hidden;
  margin-bottom: 18px !important;
}

.rez-course-summary {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(36, 183, 219, 0.1), transparent 34%),
    #fff;
}

.rez-course-summary__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #07175f;
  color: #fff;
  font-size: 16px;
}

.rez-course-summary__content {
  min-width: 0;
}

.rez-course-summary__eyebrow,
.rez-course-summary__content > strong {
  display: block;
}

.rez-course-summary__eyebrow {
  margin-bottom: 2px;
  color: #2b6f86;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rez-course-summary__content > strong {
  color: #101828;
  font-size: 13px;
  font-weight: 800;
}

.rez-course-summary__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 8px;
}

.rez-course-summary__facts span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #667085;
  font-size: 11px;
  font-weight: 700;
}

.rez-course-summary__facts i {
  color: #2b6f86;
}

.rez-course-summary__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid #b9c8d7;
  border-radius: 11px;
  background: #fff;
  color: #07175f;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.rez-course-summary__link:hover,
.rez-course-summary__link:focus {
  border-color: #24b7db;
  background: #eefaff;
  color: #07175f;
}

.rez-course-terms-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-left: 4px solid #ba7517;
  background: #fff9eb;
}

.rez-course-terms-warning > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: #f6c75c;
  color: #614300;
}

.rez-course-terms-warning strong,
.rez-course-terms-warning small {
  display: block;
}

.rez-course-terms-warning strong {
  color: #4d3908;
  font-size: 13px;
}

.rez-course-terms-warning small {
  margin-top: 3px;
  color: #694d05;
  font-size: 11px;
}

.rez-card--participants .rez-card-header {
  padding: 18px 20px !important;
  background: linear-gradient(135deg, #f7fafc 0%, #eef8fb 100%) !important;
  color: #07175f !important;
  font-size: 16px;
  font-weight: 850;
}

.rez-card--participants .rez-card-body {
  padding: 18px 20px 22px;
}

.rez-participant-intro {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #cde5ec;
  border-radius: 13px;
  background: #f1f9fb;
}

.rez-participant-intro > span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: #2b6f86;
  color: #fff;
  font-size: 12px;
}

.rez-participant-intro strong,
.rez-participant-intro small {
  display: block;
}

.rez-participant-intro strong {
  color: #174d62;
  font-size: 12px;
  font-weight: 850;
}

.rez-participant-intro small {
  margin-top: 2px;
  color: #526b79;
  font-size: 10px;
  line-height: 1.45;
}

.rez-card--participants .rez-ucastnik-row {
  position: relative;
  margin-bottom: 10px;
  padding: 15px 16px;
  border: 1px solid #dbe5ee !important;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(7, 23, 95, 0.035);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.rez-card--participants .rez-ucastnik-row:not(.rez-ucastnik-row-disabled):hover {
  border-color: #9edceb !important;
  box-shadow: 0 11px 26px rgba(7, 23, 95, 0.08);
  transform: translateY(-1px);
}

.rez-card--participants .rez-ucastnik-row.is-selected,
.rez-card--participants .rez-ucastnik-row:has(.clen-checkbox:checked) {
  border-color: #2b6f86 !important;
  background: linear-gradient(135deg, #eef8fb 0%, #f7fcfd 100%);
  box-shadow: 0 0 0 3px rgba(43, 111, 134, 0.11), 0 12px 26px rgba(7, 23, 95, 0.08);
}

.rez-card--participants .rez-ucastnik-check {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-width: 0;
}

.rez-card--participants .rez-ucastnik-label {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  cursor: pointer;
}

.rez-card--participants .rez-ucastnik-jmeno {
  color: #101828;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.rez-card--participants .rez-ucastnik-meta {
  margin-top: 4px;
  color: #667085;
  font-size: 11px;
  line-height: 1.45;
}

.rez-card--participants .clen-checkbox,
.rez-gdpr-label input[type="checkbox"],
#rez-budget-checkbox,
.rez-sticky-card .doplnek-checkbox {
  width: 26px !important;
  min-width: 26px !important;
  height: 26px !important;
  min-height: 26px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 26px;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #aebdca !important;
  border-radius: 8px !important;
  background-color: #fff !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 15px 15px !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.rez-card--participants .clen-checkbox:checked,
.rez-gdpr-label input[type="checkbox"]:checked,
#rez-budget-checkbox:checked,
.rez-sticky-card .doplnek-checkbox:checked {
  border-color: #07175f !important;
  background-color: #07175f !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4 4L19 7'/%3E%3C/svg%3E") !important;
  transform: scale(1.04);
}

.rez-card--participants .clen-checkbox:focus-visible,
.rez-gdpr-label input[type="checkbox"]:focus-visible,
#rez-budget-checkbox:focus-visible,
.rez-sticky-card .doplnek-checkbox:focus-visible {
  outline: 3px solid rgba(36, 183, 219, 0.28) !important;
  outline-offset: 3px;
}

.rez-card--participants .rez-ucastnik-row-disabled {
  border-color: #e5e9ee !important;
  background: #f7f8fa;
  box-shadow: none;
  cursor: not-allowed;
}

.rez-card--participants .rez-ucastnik-row-disabled .rez-ucastnik-check {
  opacity: 0.62;
}

.rez-card--participants .rez-ucastnik-row-disabled .clen-checkbox {
  background-color: #e6eaef !important;
  cursor: not-allowed;
}

.rez-card--participants .rez-section-divider {
  margin: 20px 0 10px;
  padding: 0;
  border: 0;
  color: #7b8899;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rez-gdpr-label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #475467;
  font-size: 12px;
  line-height: 1.55;
  cursor: pointer;
}

.rez-gdpr-label input[type="checkbox"] {
  width: 23px !important;
  min-width: 23px !important;
  height: 23px !important;
  min-height: 23px !important;
  flex-basis: 23px;
}

.rez-btn-submit {
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #f43a70;
  border-radius: 14px;
  background: #f43a70;
  color: #fff;
  box-shadow: 0 13px 28px rgba(244, 58, 112, 0.22);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.rez-btn-submit:not(:disabled):hover {
  border-color: #d9255c;
  background: #d9255c;
  box-shadow: 0 15px 32px rgba(244, 58, 112, 0.3);
  transform: translateY(-1px);
}

.rez-btn-submit:disabled {
  border-color: #d8e0e7;
  background: #e9edf1;
  color: #7d8996;
  box-shadow: none;
  cursor: not-allowed;
}

@media (max-width: 767px) {
  .da-course-terms__list {
    grid-template-columns: 1fr;
  }

  .da-course-terms__action span {
    display: none;
  }

  .rez-course-backbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .rez-course-summary {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 11px;
    padding: 14px;
  }

  .rez-course-summary__icon {
    width: 40px;
    height: 40px;
  }

  .rez-course-summary__link {
    grid-column: 1 / -1;
    width: 100%;
  }

  .rez-card--participants .rez-card-header,
  .rez-card--participants .rez-card-body {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }

  .rez-card--participants .rez-ucastnik-row {
    padding: 14px;
  }
}

@media (max-width: 420px) {
  .da-course-terms__toggle {
    gap: 10px;
  }

  .da-course-terms__heading strong {
    font-size: 13px;
  }

  .da-course-terms__heading small {
    font-size: 10px;
  }

  .da-course-term {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .da-course-term__time {
    grid-column: 2;
    justify-self: start;
  }

  .rez-course-summary__facts {
    display: grid;
    gap: 5px;
  }
}
/* SF PUBLIC COURSE REGISTRATION UX V1 END */
