/* Über uns page-specific styles */
.letter { max-width: 750px; margin: 0 auto; }
.letter p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.9; margin-bottom: 20px; }
.letter-signature { margin-top: 40px; display: flex; align-items: center; gap: 20px; }
.letter-photo { width: 72px; height: 72px; border-radius: 50%; background: var(--bg-card); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--text-muted); overflow: hidden; }
.letter-photo img { width: 100%; height: 100%; object-fit: cover; }
.letter-name { font-weight: 600; font-size: 1rem; }
.letter-role { font-size: .85rem; color: var(--text-muted); }

.diff-grid { display: flex; flex-direction: column; gap: 0; }
.diff-item { display: grid; grid-template-columns: 300px 1fr; gap: 0; padding: 32px 0; border-bottom: 1px solid var(--border); transition: all .3s; }
.diff-item:first-child { border-top: 1px solid var(--border); }
.diff-item:hover { padding-left: 12px; }
.diff-item h3 { font-size: 1.05rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.diff-item h3::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.diff-item p { font-size: .95rem; color: var(--text-muted); line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; transition: all .4s; }
.team-card:hover { border-color: var(--accent-border-hover); transform: translateY(-4px); }
.team-photo { height: 240px; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--text-muted); border-bottom: 1px solid var(--border); overflow: hidden; }
.team-photo img { width: auto; height: 100%; object-fit: contain; }
.team-info { padding: 28px; }
.team-info h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.team-info .role { font-size: .88rem; color: var(--accent); margin-bottom: 14px; }
.team-info p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }

.bridge-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bridge-stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.bridge-stat-val { font-family: var(--font-heading); font-size: 2rem; font-weight: 400; color: var(--text-primary); margin-bottom: 4px; }
.bridge-stat-lbl { font-size: .8rem; color: var(--text-muted); }

.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.value-item { padding: 36px 24px; border-right: 1px solid var(--border); text-align: center; transition: all .3s; }
.value-item:last-child { border-right: none; }
.value-item:hover { background: var(--bg-card); }
.value-item h3 { font-size: .9rem; font-weight: 600; margin-bottom: 10px; color: var(--accent); }
.value-item p { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 1024px) {
  .diff-item { grid-template-columns: 1fr; gap: 8px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid .value-item:nth-child(3) { border-right: none; }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--border); }
  .value-item:last-child { border-bottom: none; }
}
