/** Shopify CDN: Minification failed

Line 194:10 Unexpected "{"
Line 194:19 Expected ":"
Line 195:14 Expected identifier but found whitespace
Line 195:16 Unexpected "{"
Line 195:25 Expected ":"
Line 195:51 Expected ":"
Line 196:17 Expected identifier but found whitespace
Line 196:19 Unexpected "{"
Line 196:28 Expected ":"
Line 196:57 Expected ":"

**/
.bies-timeline {
  padding: 0 1.5rem;
}

.bies-timeline__container {
  max-width: var(--page-width);
  margin: 0 auto;
}

.bies-timeline__heading {
  text-align: center;
  margin-bottom: 8px;
  font-weight: 700;
  color: #1a1a1a;
}

.bies-timeline__subheading {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin: 0 0 40px 0;
}

.bies-timeline__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.bies-timeline__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bies-timeline__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(45, 90, 61, 0.2);
}

.bies-timeline__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.bies-timeline__icon--green {
  background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 100%);
}

.bies-timeline__icon--gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.bies-timeline__icon--blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.bies-timeline__icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.bies-timeline__period {
  display: inline-block;
  background: rgba(45, 90, 61, 0.1);
  color: #2d5a3d;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bies-timeline__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

.bies-timeline__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.bies-timeline__benefits li {
  font-size: 13px;
  color: #555;
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.4;
}

.bies-timeline__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #2d5a3d;
  border-radius: 50%;
}

.bies-timeline__disclaimer {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 32px;
  font-style: italic;
}

@media screen and (max-width: 989px) {
  .bies-timeline__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media screen and (max-width: 749px) {
  .bies-timeline__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .bies-timeline__grid::-webkit-scrollbar {
    display: none;
  }

  .bies-timeline__card {
    flex: 0 0 75%;
    min-width: 200px;
    scroll-snap-align: start;
    padding: 20px 16px;
  }

  .bies-timeline__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .bies-timeline__icon svg {
    width: 24px;
    height: 24px;
  }

  .bies-timeline__title {
    font-size: 16px;
  }

  .bies-timeline__benefits li {
    font-size: 12px;
  }
}

.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}
