/** Shopify CDN: Minification failed

Line 43:13 Expected identifier but found whitespace
Line 43:15 Unexpected "{"
Line 43:24 Expected ":"
Line 63:8 Expected identifier but found whitespace
Line 63:10 Unexpected "{"
Line 63:19 Expected ":"

**/
.tb-section {
  width: 100%;
}

.tb-container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 20px;
}

.tb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tb-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 20px;
  position: relative;
}

.tb-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: {{ section.settings.divider_color }};
}

.tb-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.tb-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.tb-icon-default {
  color: {{ section.settings.icon_color }};
}

.tb-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tb-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #111;
  line-height: 1.2;
}

.tb-subtitle {
  font-size: 12px;
  color: #777;
  line-height: 1.2;
}

/* Tablet: 2 columns */
@media screen and (max-width: 989px) {
  .tb-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }

  .tb-item:nth-child(2)::after {
    display: none;
  }

  .tb-item:nth-child(4)::after {
    display: none;
  }

  .tb-item:nth-child(odd)::after {
    content: '';
  }
}

/* Mobile: 2 columns, smaller text, no dividers */
@media screen and (max-width: 749px) {
  .tb-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
  }

  .tb-item {
    padding: 6px 10px;
    gap: 10px;
    justify-content: flex-start;
  }

  .tb-item::after {
    display: none !important;
  }

  .tb-icon-wrap,
  .tb-icon {
    width: 26px;
    height: 26px;
  }

  .tb-title {
    font-size: 11px;
  }

  .tb-subtitle {
    font-size: 10px;
  }
}
