/* postulaty.css */
/* --- POPRAWIONE POSTULATY --- */
.postulaty-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 40px;
  width: 100%;
  align-items: start;
}

.postulat-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.08));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-1), 0 0 0 1px rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: visible;
  min-height: auto;
  height: auto;
}

.postulat-box h2 {
  margin-top: 0;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.postulat-box p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
  word-wrap: break-word;
  overflow-wrap: break-word;
}