/*
 * startseite.css — stoiker.net
 * Inhaltsbereich Startseite (sn-* Klassen)
 * Einbinden nur auf der Startseite
 */

.sn-section {
  padding: 3rem 0;
}

.sn-section + .sn-section {
  border-top: 1px solid #e8e6e0;
}

.sn-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Label ── */
.sn-heute-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7a7060;
  margin-bottom: 1.5rem;
}

.sn-heute-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #7a7060;
}

/* ── HEUTE ── */
.sn-heute {
  background: #f9f7f2;
}

.sn-heute-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .sn-heute-grid { grid-template-columns: 1fr; }
}

.sn-card {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 6px;
  padding: 1.5rem;
}

.sn-card-type {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a7060;
  margin-bottom: .75rem;
}

.sn-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1714;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

.sn-card-text {
  font-size: .95rem;
  color: #3d3830;
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 1rem 0;
}

.sn-card-meta {
  font-size: .8rem;
  color: #7a7060;
  margin: 0 0 1.25rem 0;
}

.sn-link {
  font-size: .85rem;
  color: #5755d9;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s;
}

.sn-link:hover {
  border-bottom-color: #5755d9;
}

/* ── NEU HIER ── */
.sn-einstieg {
  background: #fff;
}

.sn-einstieg-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 720px) {
  .sn-einstieg-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

.sn-einstieg-text h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1714;
  margin: 0 0 .75rem 0;
}

.sn-einstieg-text p {
  font-size: .95rem;
  color: #3d3830;
  line-height: 1.7;
  margin: 0;
}

.sn-einstieg-links {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.sn-einstieg-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #f9f7f2;
  border: 1px solid #e8e6e0;
  border-radius: 6px;
  text-decoration: none;
  color: #1a1714;
  font-size: .95rem;
  font-weight: 500;
  transition: background .15s, border-color .15s;
}

.sn-einstieg-link:hover {
  background: #f0ede5;
  border-color: #c8c4b8;
  color: #1a1714;
  text-decoration: none;
}

.sn-einstieg-link span {
  color: #7a7060;
  font-size: 1rem;
}

/* ── MENTORING ── */
.sn-mentoring {
  background: #1a1714;
  color: #f0ede5;
}

.sn-mentoring .sn-heute-label {
  color: #a09880;
}

.sn-mentoring .sn-heute-label::before {
  background: #a09880;
}

.sn-mentoring-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 720px) {
  .sn-mentoring-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

.sn-mentoring h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #f0ede5;
  margin: 0 0 .75rem 0;
}

.sn-mentoring p {
  font-size: .95rem;
  color: #c8c4b8;
  line-height: 1.7;
  margin: 0;
  max-width: 540px;
}

.sn-btn-primary {
  display: inline-block;
  padding: .75rem 1.75rem;
  background: #f0ede5;
  color: #1a1714;
  font-size: .9rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}

.sn-btn-primary:hover {
  background: #fff;
  color: #1a1714;
  text-decoration: none;
}

/* ── AKTUELLES ── */
.sn-aktuelles {
  background: #fff;
}

.sn-aktuelles-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.sn-aktuelles-header h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1714;
  margin: 0;
}

.sn-artikel-liste {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .sn-artikel-liste { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .sn-artikel-liste { grid-template-columns: 1fr; }
}

.sn-artikel {
  border: 1px solid #e8e6e0;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color .15s;
}

.sn-artikel:hover {
  border-color: #b0aa9c;
  text-decoration: none;
  color: inherit;
}

.sn-artikel-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #f0ede5;
  display: block;
}

.sn-artikel-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #f0ede5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sn-artikel-img-placeholder span {
  font-size: .75rem;
  color: #a09880;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sn-artikel-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.sn-artikel-typ {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a7060;
}

.sn-artikel-titel {
  font-size: .9rem;
  font-weight: 600;
  color: #1a1714;
  line-height: 1.4;
  margin: 0;
}

.sn-artikel-datum {
  font-size: .75rem;
  color: #a09880;
  margin-top: auto;
  padding-top: .5rem;
}

.sn-alle-link {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  font-size: .85rem;
  color: #5755d9;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.sn-alle-link:hover {
  border-bottom-color: #5755d9;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}