:root {
  --smlt-navy: #17345c;
  --smlt-blue: #4568a4;
  --smlt-blue-soft: #edf4ff;
  --smlt-yellow: #ffc20e;
  --smlt-red: #d9535e;
  --smlt-ink: #243955;
  --smlt-muted: #66788e;
  --smlt-border: #dce6f1;
  --smlt-bg: #f7faff;
  --smlt-white: #fff;
  --smlt-shadow: 0 16px 45px rgba(23, 52, 92, .10);
}

.smlt-actions,
.sm-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
  direction: rtl;
}

.smlt-action,
.sm-action.smlt-action {
  width: 100%;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  padding: 16px 18px;
  border: 1px solid var(--smlt-border);
  border-radius: 17px;
  background: var(--smlt-white);
  color: var(--smlt-navy);
  text-align: right;
  font: inherit;
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.smlt-action:hover,
.smlt-action:focus-visible {
  border-color: var(--smlt-blue);
  box-shadow: 0 10px 28px rgba(23, 52, 92, .12);
  transform: translateY(-2px);
  outline: 3px solid rgba(69, 104, 164, .2);
  outline-offset: 2px;
}

.smlt-action.is-active {
  border-color: var(--smlt-blue);
  background: var(--smlt-blue-soft);
}

.smlt-action.has-note {
  border-color: #e3bd37;
  background: #fffaf0;
}

.smlt-action.is-saving { opacity: .65; pointer-events: none; }
.smlt-action-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--smlt-blue-soft);
  color: var(--smlt-blue);
  font-size: 23px;
  font-weight: 700;
}
.smlt-action strong,
.smlt-action small { display: block; }
.smlt-action strong { font-size: 17px; line-height: 1.35; font-weight: 700; }
.smlt-action small { margin-top: 4px; color: var(--smlt-muted); font-size: 14px; line-height: 1.45; font-weight: 400; }

.smlt-note-dialog {
  width: min(680px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 0;
  border-radius: 24px;
  color: var(--smlt-ink);
  box-shadow: 0 30px 100px rgba(10, 26, 49, .32);
}
.smlt-note-dialog::backdrop { background: rgba(13, 30, 52, .55); backdrop-filter: blur(3px); }
.smlt-note-shell { padding: 26px; }
.smlt-note-shell header { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.smlt-note-shell h2 { margin: 4px 0 0; color: var(--smlt-navy); font-size: clamp(25px, 4vw, 34px); }
.smlt-note-shell p { font-size: 17px; line-height: 1.7; }
.smlt-note-shell label { display: block; margin-bottom: 8px; font-size: 17px; font-weight: 700; }
.smlt-note-shell textarea {
  width: 100%;
  min-height: 230px;
  box-sizing: border-box;
  padding: 15px;
  border: 2px solid var(--smlt-border);
  border-radius: 14px;
  color: var(--smlt-ink);
  background: #fff;
  font: 400 18px/1.7 inherit;
  resize: vertical;
}
.smlt-note-shell textarea:focus { border-color: var(--smlt-blue); outline: 3px solid rgba(69, 104, 164, .18); }
.smlt-dialog-close {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 0;
  border-radius: 50%;
  background: #eef3f8;
  color: var(--smlt-navy);
  font-size: 28px;
  cursor: pointer;
}
.smlt-note-meta { display: flex; justify-content: space-between; min-height: 28px; margin-top: 7px; color: var(--smlt-muted); font-size: 14px; }
.smlt-note-status { color: #267247; font-weight: 700; }
.smlt-note-shell footer { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; }
.smlt-primary-button,
.smlt-secondary-button,
.smlt-primary-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 12px;
  border: 1px solid var(--smlt-navy);
  font: 700 16px/1.2 inherit;
  text-decoration: none;
  cursor: pointer;
}
.smlt-primary-button,
.smlt-primary-link { background: var(--smlt-navy); color: #fff; }
.smlt-secondary-button { background: #fff; color: var(--smlt-navy); }

.smlt-smart-search {
  width: min(100%, 1080px);
  box-sizing: border-box;
  margin: 30px auto;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--smlt-border);
  border-top: 5px solid var(--smlt-yellow);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff 55%, #fff9df 100%);
  box-shadow: var(--smlt-shadow);
  color: var(--smlt-ink);
  text-align: right;
}
.smlt-search-heading { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.smlt-eyebrow { color: var(--smlt-blue); font-size: 15px; font-weight: 700; }
.smlt-smart-search h2 { margin: 6px 0 8px; color: var(--smlt-navy); font-size: clamp(27px, 4vw, 42px); line-height: 1.2; }
.smlt-smart-search > p { max-width: 820px; margin: 0 0 20px; color: var(--smlt-muted); font-size: 18px; line-height: 1.7; }
.smlt-spark { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--smlt-yellow); color: var(--smlt-navy); font-size: 26px; }
.smlt-search-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: stretch; }
.smlt-search-form textarea {
  width: 100%;
  min-height: 74px;
  box-sizing: border-box;
  padding: 15px 17px;
  border: 2px solid #cbd9e9;
  border-radius: 14px;
  background: #fff;
  color: var(--smlt-ink);
  font: 400 17px/1.55 inherit;
  resize: vertical;
}
.smlt-search-form textarea:focus { border-color: var(--smlt-blue); outline: 3px solid rgba(69, 104, 164, .18); }
.smlt-search-form button {
  min-width: 170px;
  padding: 12px 22px;
  border: 0;
  border-radius: 14px;
  background: var(--smlt-navy);
  color: #fff;
  font: 700 17px/1.3 inherit;
  cursor: pointer;
}
.smlt-search-form button:hover,
.smlt-search-form button:focus-visible { background: var(--smlt-blue); outline: 3px solid rgba(69, 104, 164, .2); outline-offset: 2px; }
.smlt-smart-search.is-searching .smlt-search-form button { opacity: .65; pointer-events: none; }
.smlt-search-status { min-height: 26px; margin: 15px 0 4px; color: var(--smlt-navy); font-size: 16px; font-weight: 700; }
.smlt-search-results { display: grid; gap: 14px; }
.smlt-result-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 17px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--smlt-border);
  border-radius: 17px;
  background: #fff;
}
.smlt-result-number { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: var(--smlt-blue-soft); color: var(--smlt-blue); font-size: 18px; font-weight: 700; }
.smlt-result-lesson { color: var(--smlt-blue); font-size: 14px; font-weight: 700; }
.smlt-result-card h3 { margin: 3px 0 6px; font-size: 21px; line-height: 1.35; }
.smlt-result-card h3 a { color: var(--smlt-navy); text-decoration: none; }
.smlt-result-card p { margin: 6px 0; color: var(--smlt-muted); font-size: 16px; line-height: 1.6; }
.smlt-result-card .smlt-result-why { color: var(--smlt-ink); }
.smlt-result-card details { margin-top: 9px; color: var(--smlt-muted); font-size: 15px; }
.smlt-result-card summary { color: var(--smlt-blue); cursor: pointer; font-weight: 700; }
.smlt-result-link,
.smlt-card-link { color: var(--smlt-blue); font-size: 15px; font-weight: 700; white-space: nowrap; }
.smlt-disclaimer { margin: 6px 0 0; color: var(--smlt-muted); font-size: 13px; line-height: 1.55; }

.smlt-my-area {
  width: min(1120px, calc(100% - 28px));
  margin: 30px auto 70px;
  color: var(--smlt-ink);
  text-align: right;
}
.smlt-area-hero {
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--smlt-border);
  border-top: 5px solid var(--smlt-yellow);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #f1f6ff);
  box-shadow: var(--smlt-shadow);
}
.smlt-area-hero h1 { margin: 6px 0 10px; color: var(--smlt-navy); font-size: clamp(34px, 6vw, 56px); line-height: 1.15; }
.smlt-area-hero > p { margin: 0; color: var(--smlt-muted); font-size: 19px; line-height: 1.65; }
.smlt-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.smlt-stats div { padding: 17px; border: 1px solid var(--smlt-border); border-radius: 16px; background: rgba(255,255,255,.85); }
.smlt-stats strong { display: block; color: var(--smlt-blue); font-size: 30px; }
.smlt-stats span { color: var(--smlt-muted); font-size: 15px; }
.smlt-my-area section:not(.smlt-smart-search) { margin-top: 42px; }
.smlt-my-area section h2 { margin: 0 0 15px; color: var(--smlt-navy); font-size: clamp(25px, 4vw, 34px); }
.smlt-track-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.smlt-track-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--smlt-border);
  border-top: 5px solid var(--smlt-blue);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(23, 52, 92, .07);
  color: var(--smlt-ink);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.smlt-track-card-chair { border-top-color: var(--smlt-yellow); }
.smlt-track-card-short { border-top-color: var(--smlt-red); }
.smlt-track-card:hover,
.smlt-track-card:focus-visible { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(23, 52, 92, .12); outline: none; }
.smlt-track-card strong { color: var(--smlt-navy); font-size: 22px; line-height: 1.35; }
.smlt-track-card span { color: var(--smlt-muted); font-size: 16px; line-height: 1.6; }
.smlt-track-card b { margin-top: auto; color: var(--smlt-blue); font-size: 15px; }
.smlt-section-intro { margin: -6px 0 17px; color: var(--smlt-muted); font-size: 17px; }
.smlt-dashboard-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.smlt-dashboard-card { min-height: 160px; display: flex; flex-direction: column; padding: 20px; border: 1px solid var(--smlt-border); border-radius: 18px; background: #fff; box-shadow: 0 9px 28px rgba(23, 52, 92, .07); }
.smlt-card-top { display: flex; justify-content: space-between; gap: 10px; color: var(--smlt-blue); font-size: 14px; font-weight: 700; }
.smlt-card-flags { display: flex; gap: 7px; color: var(--smlt-red); }
.smlt-dashboard-card h3 { margin: 12px 0; color: var(--smlt-navy); font-size: 20px; line-height: 1.4; }
.smlt-dashboard-card h3 a { color: inherit; text-decoration: none; }
.smlt-dashboard-card blockquote { margin: 0 0 13px; padding: 11px 13px; border-right: 3px solid var(--smlt-yellow); background: #fffaf0; color: var(--smlt-muted); font-size: 15px; line-height: 1.6; white-space: pre-line; }
.smlt-card-link { margin-top: auto; }
.smlt-empty { grid-column: 1 / -1; padding: 24px; border: 1px dashed #bfd0e4; border-radius: 15px; background: var(--smlt-bg); color: var(--smlt-muted); font-size: 17px; }
.smlt-login-box { width: min(760px, calc(100% - 28px)); margin: 50px auto; padding: 40px; border: 1px solid var(--smlt-border); border-top: 5px solid var(--smlt-yellow); border-radius: 22px; background: #fff; box-shadow: var(--smlt-shadow); color: var(--smlt-ink); text-align: right; }
.smlt-login-box h1,
.smlt-login-box h2 { color: var(--smlt-navy); }
.smlt-login-box p { font-size: 18px; line-height: 1.65; }
.smlt-link-state { display: inline-flex; margin-inline-start: 7px; color: var(--smlt-red); font-size: 13px; letter-spacing: 2px; }
.smlt-error { padding: 14px; border: 1px solid #e7b5ba; border-radius: 12px; background: #fff1f2; color: #8c2630; }
.smlt-account-entry {
  cursor: pointer;
  text-decoration: none;
  transition: color .18s ease, box-shadow .18s ease;
}
.smlt-account-entry:hover { color: var(--smlt-blue); }
.smlt-account-entry:focus-visible {
  outline: 3px solid var(--smlt-yellow);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Progress markers must not add an extra grid row to lesson cards. */
.lesson-card {
  position: relative;
  box-sizing: border-box;
}
.lesson-card > .smlt-link-state {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  margin: 0;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  line-height: 1.2;
}

/* The lesson shell belongs below the app bar. This also protects old cached markup. */
#sm-course-page > .sm-appbar { height: auto !important; }
#sm-course-page .sm-appbar > .sm-shell { display: none !important; }

/* Give the personal area the same modern, full-width frame as the course. */
body.smlt-modern-page {
  background: #f7faff !important;
}
body.smlt-modern-page #theme-header,
body.smlt-modern-page #main-nav,
body.smlt-modern-page .breadcrumb,
body.smlt-modern-page .page-title,
body.smlt-modern-page .post-title,
body.smlt-modern-page .post-meta,
body.smlt-modern-page #sidebar,
body.smlt-modern-page .share-post,
body.smlt-modern-page .post-tags,
body.smlt-modern-page #theme-footer,
body.smlt-modern-page #footer-widget-area {
  display: none !important;
}
body.smlt-modern-page #main-content,
body.smlt-modern-page .container,
body.smlt-modern-page .content,
body.smlt-modern-page .post,
body.smlt-modern-page .post-inner,
body.smlt-modern-page .entry,
body.smlt-modern-page .entry-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.smlt-my-area-page {
  width: min(1180px, calc(100vw - 30px));
  margin: 18px auto 70px;
  color: var(--smlt-ink);
  font-family: inherit;
}
.smlt-course-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  box-sizing: border-box;
  padding: 12px 16px;
  border: 1px solid var(--smlt-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(23, 52, 92, .07);
}
.smlt-header-brand,
.smlt-header-account,
.smlt-header-nav a {
  color: var(--smlt-navy);
  text-decoration: none;
}
.smlt-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.smlt-header-brand small {
  display: block;
  margin-top: 2px;
  color: var(--smlt-red);
  font-size: 11px;
  font-weight: 700;
}
.smlt-header-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: #fff url('https://smartmovement.co.il/wp-content/uploads/2018/05/logo.png') center / contain no-repeat;
}
.smlt-header-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.smlt-header-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 10px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}
.smlt-header-nav a:hover,
.smlt-header-nav a:focus-visible,
.smlt-header-nav a.is-current {
  background: var(--smlt-blue-soft);
  outline: none;
}
.smlt-header-account {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--smlt-border);
  border-radius: 13px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
}

/* Independent chair and short-course experiences. */
.smlt-track-label {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid var(--smlt-border);
  border-radius: 12px;
  background: var(--smlt-blue-soft);
  color: var(--smlt-navy);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.smlt-track-library-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 10px;
  padding: 8px 12px;
  border: 1px solid var(--smlt-border);
  border-radius: 12px;
  color: var(--smlt-navy);
  background: #fff;
  text-decoration: none;
  font-weight: 700;
}
.smlt-track-library-link:hover,
.smlt-track-library-link:focus-visible {
  border-color: var(--smlt-blue);
  background: var(--smlt-blue-soft);
  outline: 3px solid rgba(66, 107, 174, .18);
}
.smlt-track-chair .sm-lesson,
.smlt-track-short .sm-lesson {
  min-height: 58px;
}
.smlt-track-chair .sm-lesson-name,
.smlt-track-short .sm-lesson-name {
  font-size: 15px;
  line-height: 1.45;
}
#sm-course-page .smlt-short-course-video details[open] > summary {
  display: none !important;
}
.smlt-short-course-video .sm-short-inner {
  padding-top: 0;
}
.smlt-track-short .sm-video-card[hidden],
.smlt-track-short .sm-next-path[hidden],
.smlt-track-chair .sm-next-path[hidden] {
  display: none !important;
}
.smlt-no-access {
  max-width: 760px;
  margin: 40px auto;
  padding: 42px;
  border: 1px solid var(--smlt-border);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, var(--smlt-blue-soft));
  color: var(--smlt-navy);
  text-align: center;
}
.smlt-no-access a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  margin-top: 12px;
  padding: 8px 20px;
  border-radius: 12px;
  background: var(--smlt-navy);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.smlt-short-library {
  width: min(1180px, calc(100vw - 30px));
  margin: 18px auto 70px;
  color: var(--smlt-ink);
}
.smlt-short-library > main {
  margin-top: 16px;
}
.smlt-short-hero {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--smlt-border);
  border-top: 4px solid var(--smlt-yellow);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff 50%, #fff8dc);
  box-shadow: 0 12px 36px rgba(23, 52, 92, .08);
}
.smlt-short-hero h1 {
  margin: 8px 0 12px;
  color: var(--smlt-navy);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
}
.smlt-short-hero p {
  max-width: 850px;
  margin: 0;
  color: var(--smlt-muted);
  font-size: 18px;
  line-height: 1.75;
}
.smlt-short-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.smlt-short-library .smlt-smart-search {
  margin-top: 18px;
}
.smlt-short-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}
.smlt-short-groups button {
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid var(--smlt-border);
  border-radius: 12px;
  background: #fff;
  color: var(--smlt-navy);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.smlt-short-groups button[aria-pressed="true"] {
  border-color: var(--smlt-blue);
  background: var(--smlt-blue);
  color: #fff;
}
.smlt-short-groups button:focus-visible {
  outline: 3px solid rgba(66, 107, 174, .25);
  outline-offset: 2px;
}
.smlt-short-card[hidden] {
  display: none !important;
}
.smlt-short-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 16px;
  align-items: start;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--smlt-border);
  border-top: 4px solid var(--smlt-blue);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 52, 92, .05);
}
.smlt-short-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--smlt-blue-soft);
  color: var(--smlt-blue);
  font-weight: 700;
}
.smlt-short-meta {
  color: var(--smlt-blue);
  font-size: 13px;
  font-weight: 700;
}
.smlt-short-card h2 {
  margin: 5px 0 9px;
  font-size: 21px;
  line-height: 1.35;
}
.smlt-short-card h2 a {
  color: var(--smlt-navy);
  text-decoration: none;
}
.smlt-short-card p {
  margin: 0;
  color: var(--smlt-muted);
  line-height: 1.65;
}
.smlt-short-card .smlt-card-link {
  grid-column: 2;
  justify-self: start;
}

@media (max-width: 860px) {
  .smlt-short-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .smlt-short-library { width: calc(100vw - 20px); margin-top: 10px; }
  .smlt-short-hero { padding: 26px 20px; border-radius: 18px; }
  .smlt-short-card { grid-template-columns: 1fr; min-height: 0; padding: 18px; }
  .smlt-short-card .smlt-card-link { grid-column: 1; }
  .smlt-short-groups { grid-template-columns: 1fr; }
  .smlt-no-access { padding: 28px 20px; }
}
.smlt-my-area-page .smlt-my-area {
  width: 100%;
  margin: 28px auto 0;
}

/* Keep the modern information pages aligned with the rest of the course. */
.sm-info-page {
  --smlt-info-page-width: min(1180px, calc(100vw - 30px));
  width: var(--smlt-info-page-width) !important;
  max-width: none !important;
  margin-right: calc((100% - var(--smlt-info-page-width)) / 2) !important;
  margin-left: calc((100% - var(--smlt-info-page-width)) / 2) !important;
}
.sm-info-page .sm-top { flex-wrap: nowrap; }
.sm-info-page .sm-nav { min-width: 0; }
.sm-info-page .sm-nav a { white-space: nowrap; }

@media (min-width: 1051px) {
  .sm-info-page .sm-nav { gap: 4px; }
  .sm-info-page .sm-nav a {
    padding-right: 6px;
    padding-left: 6px;
  }
}

/* Restore the intended about-page split layout and show the portrait naturally. */
.sm-info-page .sm-about-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 340px !important;
  gap: 42px !important;
  align-items: center !important;
}
.sm-info-page .sm-about-copy { min-width: 0; }
.sm-info-page .sm-photo-holder {
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 3 / 4;
  margin: 0 !important;
  overflow: hidden;
}
.sm-info-page .sm-photo-holder img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 24% !important;
}

@media (min-width: 851px) and (max-width: 1050px) {
  .sm-info-page .sm-top { flex-wrap: wrap; }
  .sm-info-page .sm-nav {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }
}

@media (max-width: 900px) {
  .sm-info-page .sm-about-hero {
    grid-template-columns: 1fr !important;
  }
  .sm-info-page .sm-photo-holder {
    width: min(100%, 420px) !important;
    margin-inline: auto !important;
  }
}

@media (max-width: 820px) {
  .smlt-actions,
  .sm-actions { grid-template-columns: 1fr; }
  .smlt-action,
  .sm-action.smlt-action { min-height: 72px; }
  .smlt-search-form { grid-template-columns: 1fr; }
  .smlt-search-form button { min-height: 52px; }
  .smlt-result-card { grid-template-columns: auto 1fr; }
  .smlt-result-link { grid-column: 2; justify-self: start; }
  .smlt-dashboard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .smlt-course-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .smlt-header-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 3px 0 2px;
    scrollbar-width: thin;
  }
}

@media (max-width: 560px) {
  .smlt-smart-search,
  .smlt-area-hero,
  .smlt-login-box { border-radius: 18px; }
  .smlt-search-heading { align-items: flex-start; }
  .smlt-spark { width: 46px; height: 46px; flex: 0 0 46px; }
  .smlt-result-card { grid-template-columns: 1fr; }
  .smlt-result-number { width: 34px; height: 34px; }
  .smlt-result-link { grid-column: 1; }
  .smlt-stats,
  .smlt-dashboard-grid { grid-template-columns: 1fr; }
  .smlt-note-shell { padding: 20px; }
  .smlt-note-shell footer { flex-direction: column-reverse; }
  .smlt-note-shell footer button { width: 100%; }
  .smlt-my-area-page { width: calc(100vw - 20px); margin-top: 10px; }
  .smlt-course-header { gap: 10px; padding: 10px; border-radius: 16px; }
  .smlt-header-brand { font-size: 16px; }
  .smlt-header-logo { width: 40px; height: 40px; flex-basis: 40px; }
  .smlt-header-account { padding-inline: 9px; font-size: 14px; }
}

@media print {
  body * { visibility: hidden !important; }
  .smlt-note-dialog,
  .smlt-note-dialog * { visibility: visible !important; }
  .smlt-note-dialog { position: absolute; inset: 0; width: 100%; max-height: none; box-shadow: none; }
  .smlt-note-dialog::backdrop,
  .smlt-dialog-close,
  .smlt-note-shell footer { display: none !important; }
  .smlt-note-shell textarea { min-height: 500px; border: 0; overflow: visible; }
}
