/* /modules/filters1why/views/css/front.css */

.f1why {
  margin: 18px 0 10px;
}

.f1why__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.f1why__title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .2px;
}

.f1why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.f1why__card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.f1why__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.12);
}

.f1why__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.04);
  flex: 0 0 40px;
}

.f1why__svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  opacity: .9;
}

.f1why__content {
  min-width: 0;
}

.f1why__cardTitle {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  margin: 0 0 4px;
}

.f1why__cardDesc {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(0,0,0,.70);
  margin: 0;
}

.f1why__note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(0,0,0,.70);
}

/* Tablet */
@media (max-width: 992px) {
  .f1why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 576px) {
  .f1why__title {
    font-size: 18px;
  }
  .f1why__grid {
    grid-template-columns: 1fr;
  }
}
