/* ============================================================
   WERTE.CSS — Unsere Werte section
   Vidai AG · vidai.ch
   ============================================================ */

#werte {
  background: var(--white);
}

.werte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--light);
}

.werte-card {
  padding: 36px 32px;
  border-right: 1px solid var(--light);
  transition: background var(--ease);
}

.werte-card:last-child {
  border-right: none;
}

.werte-card:hover {
  background: #f0ece4;
}

.werte-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 20px;
}

.werte-icon.red   { background: rgba(192,57,43,0.1);  color: var(--red); }
.werte-icon.green { background: rgba(45,90,61,0.1);   color: var(--green); }
.werte-icon.dark  { background: rgba(17,17,17,0.07);  color: var(--charcoal); }

.werte-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 12px;
}

.werte-card p {
  font-size: 15px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.8;
}

/* ── QUOTE STRIP ── */
.werte-quote {
  margin-top: 48px;
  padding: 32px 40px;
  border-left: 3px solid var(--red);
  background: #f7f5ef;
}

.werte-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 680px;
}

.werte-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  font-style: normal;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .werte-grid {
    grid-template-columns: 1fr;
  }

  .werte-card {
    border-right: none;
    border-bottom: 1px solid var(--light);
  }

  .werte-card:last-child {
    border-bottom: none;
  }

  .werte-quote {
    padding: 24px;
  }
}
