/* ============================================================
   wild.woman.fotografie — Seelengedanken (Journal) styles
   ============================================================ */

/* ---------- Blog index grid ---------- */
.journal { padding: clamp(56px, 9vh, 120px) 0 clamp(64px, 11vh, 140px); }
.journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 44px) clamp(20px, 2.4vw, 36px); }
@media (max-width: 900px) { .journal__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .journal__grid { grid-template-columns: 1fr; } }

.post { display: flex; flex-direction: column; background: var(--surface-base); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); text-decoration: none; transition: box-shadow .5s var(--ease-soft), transform .5s var(--ease-soft); }
.post:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.post__img { aspect-ratio: 3/2; overflow: hidden; background: var(--sand-300); }
.post__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; transition: transform 1.1s var(--ease-soft); }
.post:hover .post__img img { transform: scale(1.05); }
.post__body { padding: clamp(22px, 2.2vw, 32px); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post__cat { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin: 0; }
.post h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(23px, 2.2vw, 29px); line-height: 1.18; color: var(--text-strong); margin: 0; }
.post p { font-family: var(--font-body); font-weight: 300; font-size: 15px; line-height: 1.65; color: var(--text-body); margin: 0; }
.post__more { margin-top: auto; padding-top: 8px; font-family: var(--font-body); font-size: var(--fs-eyebrow); letter-spacing: var(--ls-caps); text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 10px; }
.post__more .arr { transition: transform .32s var(--ease-soft); }
.post:hover .post__more .arr { transform: translateX(6px); }

/* ---------- Article page ---------- */
.article { padding: clamp(56px, 9vh, 110px) 0 clamp(48px, 8vh, 96px); }
.article__inner { width: min(720px, 88vw); margin-inline: auto; }
.article__meta { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 22px; }
.article__meta .cat { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.article__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); }
.article__meta .date { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.08em; color: var(--text-muted); }
.article__lead { font-family: var(--font-display); font-style: italic; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.4; color: var(--text-strong); text-align: center; margin: 0 0 14px; }
.article__inner > .ww-rule { margin: 30px auto 40px; }
.article__body p { font-family: var(--font-body); font-weight: 300; font-size: var(--fs-lead); line-height: 1.85; color: var(--text-body); margin: 0 0 22px; }
.article__body h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3vw, 36px); color: var(--text-strong); line-height: 1.2; margin: 40px 0 16px; }
.article__body p .hl { color: var(--accent); }
.article__body blockquote { margin: 36px 0; padding: 4px 0 4px 26px; border-left: 2px solid var(--accent-soft); font-family: var(--font-display); font-style: italic; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.38; color: var(--text-strong); }
.article__figure { margin: 38px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); background: var(--sand-300); }
.article__figure img { width: 100%; height: auto; display: block; }

/* ---------- More posts ---------- */
.more { background: var(--surface-cream); padding: clamp(60px, 10vh, 120px) 0; }
.more__head { text-align: center; margin-bottom: clamp(34px, 5vh, 56px); }
.more__head .ww-rule { background: var(--accent); }
.more__head h2 { font-size: var(--fs-display-m); }
.more__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 32px); }
@media (max-width: 820px) { .more__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }
