.trip-savings {
  margin: 10px 14px 12px;
  padding: 14px 10px 12px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  box-sizing: border-box;
}

.trip-savings-loading {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

.trip-savings-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 4px;
}

.trip-savings-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  padding: 0 4px;
  border-left: 1px solid #e0e0e0;
}

.trip-savings-item:first-child {
  border-left: 0;
}

.trip-savings-icon {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(100, 159, 70, 0.12);
  color: #649f46;
  font-size: 12px;
  margin-bottom: 2px;
}

.trip-savings-item strong {
  font-size: 16px;
  font-weight: 700;
  color: #649f46;
  line-height: 1.2;
}

.trip-savings-item span:last-child {
  font-size: 10px;
  font-weight: 500;
  color: #666;
  line-height: 1.2;
}

.trip-savings-note {
  margin: 8px 0 0;
  text-align: center;
  font-size: 11px;
  color: #649f46;
}

@media (max-width: 480px) {
  .trip-savings {
    margin: 8px 10px 10px;
    padding: 12px 6px;
  }

  .trip-savings-item strong {
    font-size: 14px;
  }
}

.trip-savings.is-compact {
  margin: 6px 0 0;
  padding: 8px 2px;
  box-shadow: none;
  border-color: #eef2f6;
}

.trip-savings.is-compact .trip-savings-icon {
  width: 20px;
  height: 20px;
  font-size: 10px;
}

.trip-savings.is-compact .trip-savings-item strong {
  font-size: 12px;
}

.trip-savings.is-compact .trip-savings-item span:last-child {
  font-size: 8px;
}
