.schulleben { background: var(--bg-warm); }

.schulleben-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .schulleben-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .schulleben-grid { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; }
  .schulleben-card--large { grid-row: 1 / 3; }
  .schulleben-card--wide  { grid-column: 2 / 4; }
}

.schulleben-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem;
  border: 3px solid transparent;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-bounce), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.schulleben-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: var(--r-full) var(--r-full) 0 0;
  transition: height var(--t-base);
}
.schulleben-card:hover { transform: translateY(-5px); box-shadow: 0 18px 52px rgba(26, 37, 64, 0.13); }
.schulleben-card:hover::before { height: 7px; }

.schulleben-card--blue::before   { background: var(--blue); }
.schulleben-card--green::before  { background: var(--green); }
.schulleben-card--yellow::before { background: var(--yellow); }

.schulleben-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.schulleben-card--blue   .schulleben-card__icon { background: var(--blue-pale);  }
.schulleben-card--green  .schulleben-card__icon { background: var(--green-pale); }
.schulleben-card--yellow .schulleben-card__icon { background: var(--yellow-pale);}

.schulleben-card__icon svg { width: 26px; height: 26px; }
.schulleben-card--blue   .schulleben-card__icon svg { color: var(--blue); }
.schulleben-card--green  .schulleben-card__icon svg { color: var(--green); }
.schulleben-card--yellow .schulleben-card__icon svg { color: var(--yellow-dark); }

.schulleben-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}
.schulleben-card--large h3 { font-size: 1.5rem; }

.schulleben-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.schulleben-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.schulleben-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  background: var(--bg-section);
  color: var(--text-secondary);
}

/* Photo placeholder */
.photo-placeholder {
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-subtle) 100%);
  border-radius: var(--r-lg);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  border: 2px dashed var(--border-strong);
}
.schulleben-card--large .photo-placeholder { height: 260px; }
.photo-placeholder svg { width: 40px; height: 40px; color: var(--blue-light); opacity: 0.6; }
.photo-placeholder p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}
