/** Shopify CDN: Minification failed

Line 13:13 Expected identifier but found whitespace
Line 13:15 Unexpected "{"
Line 13:24 Expected ":"
Line 96:19 Expected identifier but found whitespace
Line 96:21 Unexpected "{"
Line 96:30 Expected ":"

**/
.people-volt {
  position: relative;
  background: {{ section.settings.bg_color | default: '#FCEEE8' }};
  padding: 70px 20px;
  overflow: hidden;
}

.people-volt__section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.people-volt__section-bg-img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover;
  display: block;
}

.people-volt__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.people-volt__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #4a4a4a;
  margin: 0 0 14px;
}

.people-volt__heading {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
  color: #1a1a1a;
  max-width: 720px;
  margin: 0 auto 26px;
}

.people-volt__desc {
  max-width: 640px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.people-volt__desc p {
  margin: 0 0 14px;
}

.people-volt__desc p:last-child {
  margin-bottom: 0;
}

.people-volt__grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 2), 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* card = simple gradient background only. photo is a separate absolutely-positioned layer */
.people-volt__card {
  position: relative;
  overflow: hidden;

  min-height: 290px;
  border-radius: 12px;

  background-image: var(--desktop-card-image);
  background-size: 100% 100%;
  background-position: right center;
  background-repeat: no-repeat;

  background-color: {{ section.settings.card_color_1 | default: '#DCEAF7' }};

  display: flex;
  align-items: center;
  text-align: left;
}

/* dark bottom gradient for text legibility over photo */
.people-volt__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.1) 45%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

/* photo layer - direct background-image set via inline style in liquid, always reliable */
.people-volt__photo {
  position: absolute;
  z-index: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.people-volt__photo--desktop {
  right: 0;
  bottom: 0;
  top: 0;
  width: 46%;
}

.people-volt__photo--mobile {
  display: none;
}

.people-volt__card-text {
  position: relative;
  z-index: 2;
  width: 54%;
  max-width: 54%;
  padding: 24px 20px 24px 26px;
}

.people-volt__name {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.people-volt__bio {
  font-size: 12.5px;
  line-height: 1.6;
  color: #1a1a1a;
}

.people-volt__bio p {
  margin: 0;
}

.people-volt__footer {
  max-width: 620px;
  margin: 0 auto;
  color: #444;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.people-volt__footer p {
  margin: 0;
}

/* ---------- Mobile ---------- */
@media screen and (max-width: 749px) {

  .people-volt {
    padding: 40px 16px;
  }

  .people-volt__heading {
    font-size: 24px;
  }

  .people-volt__desc {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .people-volt__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .people-volt__card {
    width: 100%;
    max-width: 344px;
    height: 480px;
    min-height: 480px;

    margin: 0 auto;

    border-radius: 10px;
    overflow: hidden;

    background-image: var(--mobile-card-image);

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: flex-start;

    position: relative;
  }

  .people-volt__card-text {
    width: 100%;
    max-width: 100%;

    padding: 24px 20px;

    position: relative;
    z-index: 2;

    background: transparent;
  }

  .people-volt__name {
    font-size: 19px;
    line-height: 1.2;

    margin: 0 0 10px;
  }

  .people-volt__bio {
    font-size: 12.5px;
    line-height: 1.55;

    max-width: 250px;
  }

  .people-volt__footer {
    font-size: 13px;
  }
}