/** Shopify CDN: Minification failed

Line 23:14 Expected identifier but found whitespace
Line 23:16 Unexpected "{"
Line 23:25 Expected ":"
Line 23:59 Expected ":"
Line 24:17 Expected identifier but found whitespace
Line 24:19 Unexpected "{"
Line 24:28 Expected ":"
Line 24:65 Expected ":"

**/
/* =============================================
   Split Team Section — split-team-section.css
   ============================================= */

/* ── Section wrapper ── */
.split-team-section-wrapper {
  background-color: var(--section-bg, #ffffff);
}

.split-team-section {
  padding-top: {{ section.settings.section_padding_top }}px;
  padding-bottom: {{ section.settings.section_padding_bottom }}px;
  background-color: var(--color-section-bg, #ffffff);
}

/* Shopify-safe static fallback (used when CSS variables are set via inline style on wrapper) */
.split-team-section {
  --section-bg: #ffffff;
}

/* ── Inner two-column layout ── */
.split-team__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

/* ─────────────────────────────────────
   LEFT COLUMN — Image
───────────────────────────────────── */
.split-team__image-col {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.split-team__image-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-team__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.split-team__image-col:hover .split-team__img {
  transform: scale(1.03);
}

.split-team__img-placeholder {
  width: 100%;
  height: 100%;
  background: #e9eef4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-team__img-placeholder .placeholder-svg {
  width: 60%;
  height: 60%;
  color: #b0bec5;
}

/* ─────────────────────────────────────
   RIGHT COLUMN — Content
───────────────────────────────────── */
.split-team__content-col {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.split-team__heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1a2332;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.split-team__description {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #5a6777;
  margin: 0 0 36px;
  max-width: 48ch;
}

/* ─────────────────────────────────────
   CARDS GRID
───────────────────────────────────── */
.split-team__cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─────────────────────────────────────
   INDIVIDUAL CARD
   Styled via CSS custom properties set 
   from Liquid block settings
───────────────────────────────────── */
.split-team__card {
  background-color: var(--card-bg, #f8f9fa);
  border-radius: var(--card-radius, 12px);
  border: 1.5px solid var(--card-border, #e2e8f0);
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: default;
}

.split-team__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border-color: #93a8c4;
}

/* ── Card icon ── */
.split-team__card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.split-team__card-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.split-team__card-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #2c5282;
}

.split-team__card-icon-svg svg,
.split-team__card-icon-svg img {
  width: 36px;
  height: 36px;
}

.split-team__card-icon-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #90a4b7;
}

/* ── Card heading ── */
.split-team__card-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a2332;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ── Card description ── */
.split-team__card-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #6b7a8d;
  margin: 0;
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */

/* Tablet */
@media screen and (max-width: 960px) {
  .split-team__inner {
    grid-template-columns: 1fr;
  }

  .split-team__image-col {
    min-height: 380px;
    position: relative;
  }

  .split-team__image-wrap {
    position: relative;
    height: 380px;
  }

  .split-team__content-col {
    padding: 44px 36px;
  }
}

/* Mobile */
@media screen and (max-width: 600px) {
  .split-team__content-col {
    padding: 36px 20px;
  }

  .split-team__cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .split-team__heading {
    font-size: 1.5rem;
  }

  .split-team__image-wrap {
    height: 280px;
  }
}