.ba-about-values-widget {
  background: #f7f5f2;
}

.ba-about-values-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ba-about-values-eyebrow {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.ba-about-values-title {
  margin: 0;
}

.ba-about-values-description {
  margin: 0.8rem auto 0;
  max-width: 560px;
}

.ba-about-values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.ba-about-values-item {
  position: relative;
  overflow: hidden;
  min-height: 108px;
  height: 100%;
  border: 1px solid #e3d8ca;
  border-radius: 20px;
  background: #ffffff;
  padding: 24px 16px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.ba-about-values-item::before {
  content: none;
}

.ba-about-values-item:hover {
  transform: translateY(-3px);
  border-color: #d6c3a7;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.ba-about-values-icon {
  width: 78px;
  height: 78px;
  border: 1px solid #e3d8ca;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #8f6b32;
  line-height: 1;
  background: #fff;
  flex-shrink: 0;
}

.ba-about-values-icon i {
  font-size: 44px;
}

.ba-about-values-icon svg {
  width: 44px;
  height: 44px;
}

.ba-about-values-icon-img {
  width: 44px;
  height: 44px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.ba-about-values-icon--image {
  overflow: hidden;
}

.ba-about-values-item-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  margin: 0;
  color: #161616;
}

.ba-about-values-item-description {
  font-size: 13px;
  line-height: 1.9;
  font-weight: 400;
  color: #666666;
  margin-top: 8px;
}

@media (max-width: 1200px) {
  .ba-about-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ba-about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ba-about-values-item {
    min-height: 96px;
    padding: 20px 12px 16px;
  }

  .ba-about-values-item-title {
    font-size: 14px;
  }
}

@media (max-width: 479px) {
  .ba-about-values-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
