.klcc-ts-oh {
  --klcc-ts-oh-gap-left: clamp(12px, 1.4vw, 20px);
  --klcc-ts-oh-gap-right: clamp(28px, 3vw, 44px);
  --klcc-ts-oh-divider-side-space: clamp(16px, 1.8vw, 26px);
  --klcc-ts-oh-divider-col: #204a8a;
  --klcc-ts-oh-cta-active-col: #8b2fc9;
  --klcc-ts-oh-cta-hover-col: #6ab023;
  --klcc-ts-oh-text-title: #111111;
  --klcc-ts-oh-text-body: #333333;
  --klcc-ts-oh-container: 1300px;
  --klcc-ts-oh-cta-size: clamp(1.35rem, 1.9vw, 1.833125rem);
  --klcc-ts-oh-content-size: clamp(1.05rem, 1.35vw, 1.333125rem);
  --klcc-ts-oh-desc-size: clamp(1.2rem, 1.85vw, 1.833125rem);
  --klcc-ts-oh-corner-radius: 32px;

  font-family: "Museo Sans", sans-serif;
  padding: 72px 0;
}

.klcc-ts-oh.no-bottom-padding {
  padding-bottom: 0;
}

@media (min-width: 1024px) and (max-width: 1365px) {
  .klcc-ts-oh {
    padding: 36px 0px 36px 36px;

  }
}

.klcc-ts-oh * {
  box-sizing: border-box;
}

.klcc-ts-oh__container {
  width: min(var(--klcc-ts-oh-container), 100%);
  margin: 0 auto;
}

.klcc-ts-oh .klcc-font-header.gradient-text.split-text {
  margin: 0;
  font-weight: 900 !important;
}

/* Keep heading typography independent from Museo enforcement below. */
.klcc-ts-oh .klcc-font-header.gradient-text.split-text,
.klcc-ts-oh .klcc-font-header.gradient-text.split-text * {
  font-family: inherit !important;
}

.klcc-ts-oh__tab-desc {
  margin: 0;
  font-size: var(--klcc-ts-oh-desc-size) !important;
  line-height: 1.35;
  font-weight: 500;
  color: var(--klcc-ts-oh-text-title);
  font-family: "Museo Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.klcc-ts-oh.no-tab-desc .klcc-font-header.gradient-text.split-text {
  margin-bottom: 20px;
}

.klcc-ts-oh.has-tab-desc .klcc-font-header.gradient-text.split-text {
  margin-bottom: 5px;
}

.klcc-ts-oh.has-tab-desc .klcc-ts-oh__tab-desc {
  margin-bottom: 20px;
}

.klcc-ts-oh__tab-desc p,
.klcc-ts-oh__tab-desc li {
  margin: 0;
  font-size: inherit;
  line-height: 1;
  font-weight: inherit;
  color: inherit;
  font-family: inherit !important;
}

/* Ensure gradient applies on shortcode heading even outside Elementor widgets. */
.klcc-ts-oh .elementor-heading-title.gradient-text,
.klcc-ts-oh .gradient-text.elementor-heading-title {
  background-image: linear-gradient(90deg, #8ac646 0%, #204a8a 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  display: inline-block;
}

.klcc-ts-oh .elementor-heading-title.gradient-text .plr-line,
.klcc-ts-oh .gradient-text.elementor-heading-title .plr-line {
  background-image: linear-gradient(90deg, #8ac646 0%, #204a8a 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.klcc-ts-oh__inner {
  display: grid;
  /* Original: max-content max-content minmax(0, 1fr);
     Problem:  image column was 1fr (leftover), so it varied when content column width changed.
     Fix:      image column gets a fixed clamp width; content column takes flexible 1fr instead. */
  grid-template-columns: max-content minmax(200px, 1fr) clamp(220px, 26vw, 380px); /* reduced image col to give more room to content col */
  align-items: start;
  column-gap: var(--klcc-ts-oh-gap-left);
  row-gap: var(--klcc-ts-oh-gap-left);
  overflow: visible;
}

.klcc-ts-oh__cta-wrap {
  min-width: 0;
}

.klcc-ts-oh__cta-nav {
  display: none;
}

.klcc-ts-oh__cta-col {
  min-width: 0;
  width: var(--klcc-ts-oh-cta-col-width, fit-content);
  border-right: 3px solid var(--klcc-ts-oh-divider-col);
  padding-right: calc(var(--klcc-ts-oh-divider-side-space) + var(--klcc-ts-oh-gap-left));
  font-family: "Museo Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.klcc-ts-oh__cta-btn {
  display: block;
  width: 100%;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  color: var(--klcc-ts-oh-text-title);
  font-weight: 700;
  padding: 10px 0;
  font-size: var(--klcc-ts-oh-cta-size) !important;
  line-height: var(--klcc-exp-prose-line-height, 1.2em);
  letter-spacing: var(--klcc-exp-prose-letter-spacing, -0.01em);
  transition: color 180ms ease;
  font-family: "Museo Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.klcc-ts-oh__cta-col .klcc-ts-oh__cta-btn:first-child {
  padding-top: 0;
}

.klcc-ts-oh__cta-btn:hover,
.klcc-ts-oh__cta-btn:focus-visible {
  color: var(--klcc-ts-oh-cta-hover-col);
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.klcc-ts-oh__cta-btn.is-active {
  color: var(--klcc-ts-oh-cta-active-col);
  font-weight: 900;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.klcc-ts-oh__cta-btn:focus,
.klcc-ts-oh__cta-btn:active {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.klcc-ts-oh__cta-text {
  font: inherit;
  color: inherit;
}

.klcc-ts-oh__content-col {
  width: min(56ch, 100%);
  max-width: min(56ch, 100%);
  padding-left: var(--klcc-ts-oh-divider-side-space);
  font-family: "Museo Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.klcc-ts-oh__cta-link-wrap {
  margin-top: calc(var(--klcc-ts-oh-content-size) * 1.45);
}

.klcc-ts-oh__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--klcc-ts-oh-text-title);
  text-decoration: none;
  font-family: "Museo Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-weight: 700;
  font-size: var(--klcc-ts-oh-content-size) !important;
  line-height: 1.2;
}

.klcc-ts-oh__cta-link:hover,
.klcc-ts-oh__cta-link:focus-visible {
  color: var(--klcc-ts-oh-cta-hover-col);
  text-decoration: none;
  outline: none;
}

.klcc-ts-oh__cta-link-arrow {
  font-weight: 900;
  transform: translateY(-1px);
}

.klcc-ts-oh__content-panel,
.klcc-ts-oh__image-panel {
  display: none;
}

.klcc-ts-oh__content-panel.is-active,
.klcc-ts-oh__image-panel.is-active {
  display: block;
}

.klcc-ts-oh__content-inner h3,
.klcc-ts-oh__content-inner h4 {
  margin: 0 0 8px;
  margin-top: 14px;
  color: var(--klcc-ts-oh-text-title);
  font-weight: 700;
  font-size: var(--klcc-ts-oh-content-size) !important;
  line-height: var(--klcc-exp-prose-line-height, 1.2em) !important;
  letter-spacing: var(--klcc-exp-prose-letter-spacing, -0.01em) !important;
  font-family: "Museo Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.klcc-ts-oh__content-inner > *:first-child {
  margin-top: 0;
}

.klcc-ts-oh__content-inner ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.klcc-ts-oh__content-inner ul li {
  position: relative;
  padding-left: 16px;
  font-weight: 500;
  font-size: var(--klcc-ts-oh-content-size) !important;
  line-height: 1.45;
  color: var(--klcc-ts-oh-text-body);
  margin-bottom: 0;
  font-family: "Museo Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.klcc-ts-oh__content-inner ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
}

.klcc-ts-oh__content-inner p {
  font-weight: 500;
  font-size: var(--klcc-ts-oh-content-size) !important;
  line-height: 1;
  color: var(--klcc-ts-oh-text-body);
  margin-bottom: 0;
  font-family: "Museo Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.klcc-ts-oh__content-inner strong,
.klcc-ts-oh__content-inner b {
  font-weight: 700;
}

.klcc-ts-oh__content-card-list {
  display: grid;
  gap: clamp(12px, 1.35vw, 16px);
  width: 100%;
}

.klcc-ts-oh__content-card {
  overflow: hidden;
  border: 1px solid rgba(58, 132, 132, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(31, 86, 86, 0.08);
  padding: clamp(14px, 1.5vw, 18px);
}

.klcc-ts-oh__content-card-heading {
  margin: 0 0 clamp(12px, 1.3vw, 16px) !important;
  color: var(--klcc-ts-oh-text-title);
  font-weight: 800 !important;
  font-size: var(--klcc-ts-oh-content-size) !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
  font-family: "Museo Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.klcc-ts-oh__content-card-sections {
  display: grid;
  gap: clamp(12px, 1.2vw, 16px);
}

.klcc-ts-oh__content-card-section {
  padding-top: clamp(12px, 1.2vw, 16px);
  border-top: 1px solid rgba(58, 132, 132, 0.18);
}

.klcc-ts-oh__content-card-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.klcc-ts-oh__content-card-section-heading {
  color: var(--klcc-ts-oh-text-title);
  font-weight: 800;
  font-size: clamp(16px, 1.3vw, 19px) !important;
  line-height: 1.25;
  letter-spacing: 0;
  font-family: "Museo Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.klcc-ts-oh__content-card-main {
  margin-top: 7px;
  color: var(--klcc-ts-oh-text-body);
  font-weight: 500;
  font-size: clamp(14px, 1.1vw, 16px) !important;
  line-height: 1.35;
  letter-spacing: 0;
  font-family: "Museo Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.klcc-ts-oh__content-card-note {
  margin-top: 5px;
  color: #344447;
  font-weight: 500;
  font-size: clamp(13px, 1vw, 15px) !important;
  line-height: 1.35;
  letter-spacing: 0;
  font-family: "Museo Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.klcc-ts-oh__content-card-cta-wrap {
  margin-top: clamp(16px, 1.6vw, 22px);
}

.klcc-ts-oh__content-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  max-width: 100%;
  padding: 12px 30px;
  border-radius: 999px;
  background: #285897;
  color: #ffffff !important;
  text-decoration: none !important;
  text-align: center;
  font-weight: 700;
  font-size: clamp(16px, 1.28vw, 20px) !important;
  line-height: 1.15;
  letter-spacing: 0;
  font-family: "Museo Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  transition: background-color 180ms ease, transform 180ms ease;
}

.klcc-ts-oh__content-card-cta:hover,
.klcc-ts-oh__content-card-cta:focus-visible {
  background: #1f4a82;
  color: #ffffff !important;
  text-decoration: none !important;
  outline: none;
  transform: translateY(-1px);
}

.klcc-ts-oh__content-card-cta:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .klcc-ts-oh {
    padding: 36px 0px 36px 36px;
  }
  
  .klcc-ts-oh__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 16px;
  }

  .klcc-ts-oh__cta-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    grid-column: 1 / -1;
  }

  .klcc-ts-oh__cta-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    flex: 0 0 auto;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 2;
  }

  .klcc-ts-oh__cta-nav:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.82);
  }

  .klcc-ts-oh__cta-nav:disabled {
    opacity: 0.28;
    cursor: default;
    background: rgba(0, 0, 0, 0.65) !important;
    color: #fff !important;
  }

  .klcc-ts-oh__cta-nav:focus,
  .klcc-ts-oh__cta-nav:active,
  .klcc-ts-oh__cta-nav:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    color: #fff !important;
    background: rgba(0, 0, 0, 0.65) !important;
  }

  .klcc-ts-oh__cta-nav:disabled:hover,
  .klcc-ts-oh__cta-nav:disabled:focus,
  .klcc-ts-oh__cta-nav:disabled:active,
  .klcc-ts-oh__cta-nav:disabled:focus-visible {
    background: rgba(0, 0, 0, 0.65) !important;
    background-image: none !important;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
  }

  .klcc-ts-oh__cta-nav--prev {
    margin-right: 8px;
  }

  .klcc-ts-oh__cta-nav--next {
    margin-left: 8px;
  }

  .klcc-ts-oh__cta-col {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-right: 0;
    border-bottom: 3px solid var(--klcc-ts-oh-divider-col);
    padding-right: 0;
    padding-bottom: 10px;
    gap: 0;
    flex: 1 1 auto;
  }

  .klcc-ts-oh__cta-col::-webkit-scrollbar {
    display: none;
  }

  .klcc-ts-oh__cta-btn {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
    padding: 8px 14px;
  }

  .klcc-ts-oh__cta-col .klcc-ts-oh__cta-btn:first-child {
    padding-top: 8px;
  }

  .klcc-ts-oh__content-col {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }

  .klcc-ts-oh__image-col {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    --klcc-ts-oh-breakout: 0px;
  }

  .klcc-ts-oh__image-panel {
    width: 100%;
    max-width: 100%;
  }
}

.klcc-ts-oh__image-col {
  min-width: 0;
  --klcc-ts-oh-breakout: max(0px, calc((100vw - var(--klcc-ts-oh-container)) / 2));
  width: calc(100% + var(--klcc-ts-oh-breakout));
  margin-right: calc(-1 * var(--klcc-ts-oh-breakout));
  margin-left: 0;
  padding-left: 0 !important;
  display: flex;
  justify-content: flex-end;
  justify-self: stretch;
}

.klcc-ts-oh__image {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  border-radius: 0 0 0 var(--klcc-ts-oh-corner-radius) !important;
  object-fit: cover !important;
  object-position: center center !important;
  max-width: none;
}

.klcc-ts-oh__image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 var(--klcc-ts-oh-corner-radius) !important;
  line-height: 0;
  margin: 0 !important;
  width: 100%;
  max-width: 770px;
}

.klcc-ts-oh__image-panel.is-active {
  /* height: 450px; */ /* original fixed height — commented out 2026-05-07 */
  aspect-ratio: 3 / 2; /* 3:2 ratio based on design screenshot */
}

.klcc-ts-oh__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0 0 0 var(--klcc-ts-oh-corner-radius) !important;
  background: #eef2f5;
}

@media (max-width: 640px) {
  .klcc-ts-oh {
    padding: 48px 16px;
  }

  .klcc-ts-oh__container {
    width: 100%;
  }

  .klcc-ts-oh__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .klcc-ts-oh__content-col {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }

  .klcc-ts-oh__content-panel,
  .klcc-ts-oh__content-inner {
    width: 100%;
    max-width: 100%;
  }

  .klcc-ts-oh__cta-btn {
    width: auto;
    padding: 8px 14px;
  }

  .klcc-ts-oh__image-col {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    height: auto;
  }

  .klcc-ts-oh__image-panel.is-active {
    /* height: auto; */ /* original mobile override — commented out 2026-05-07 */
    aspect-ratio: 3 / 2; /* retain same ratio on mobile */
  }

  .klcc-ts-oh__image {
    position: static;
    inset: auto;
    height: auto !important;
    width: 100% !important;
    max-width: 100%;
  }
}
