/* zweitaps blog: article pages and index. Loads after style.css. */
.blog .top { border-bottom: 1px solid var(--line); padding-bottom: 14px; }

.post { max-width: 700px; margin: 0 auto; padding: 28px 0 64px; }
.crumbs { font-size: 14px; color: var(--ink-3); }
.crumbs a { color: var(--ink-2); text-decoration: none; }
.crumbs a:hover { color: var(--green-deep); text-decoration: underline; }
.post h1 {
  margin-top: 18px;
  font-size: clamp(32px, 6.4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.post .meta { margin-top: 14px; font-size: 14.5px; color: var(--ink-3); }
.post .lead { margin-top: 26px; font-size: 20px; line-height: 1.5; color: var(--ink); letter-spacing: -0.005em; }
.post h2 { font-size: clamp(23px, 4.4vw, 29px); margin: 44px 0 12px; max-width: none; }
.post h3 { font-size: 19px; font-weight: 700; margin: 26px 0 8px; }
.post p { margin: 0 0 16px; font-size: 17.5px; line-height: 1.6; color: var(--ink-2); }
.post strong { color: var(--ink); font-weight: 650; }
.post ul { margin: 0 0 18px; padding-left: 22px; color: var(--ink-2); font-size: 17.5px; line-height: 1.6; }
.post li { margin-bottom: 8px; }
.post a { font-weight: 600; }

.post-figure {
  margin: 30px auto 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.post-figure .phone { position: relative; left: auto; top: auto; transform: none; width: 100%; }
.post-figure figcaption { text-align: center; font-size: 14.5px; color: var(--ink-3); line-height: 1.4; }
@media (min-width: 760px) {
  .post-figure { float: right; margin: 6px 0 20px 34px; max-width: 220px; }
  .post h2 { clear: none; }
}

.faq { margin-top: 44px; clear: both; }
.faq details { border-top: 1px solid var(--line); padding: 14px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { font-weight: 650; font-size: 17px; cursor: pointer; color: var(--ink); list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green-deep); font-weight: 700; font-size: 22px; line-height: 1; flex: 0 0 auto; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 4px; font-size: 16.5px; }

.post-cta {
  clear: both;
  margin-top: 44px;
  background: linear-gradient(180deg, var(--band-a) 0%, var(--band-b) 100%);
  border: 1px solid #dbe4d8;
  border-radius: var(--radius);
  padding: 26px 24px 28px;
}
.post-cta h2 { font-size: 24px; margin: 0 0 8px; }
.post-cta p { margin: 0 0 18px; font-size: 16.5px; }

.more { margin-top: 48px; }
.more h2 { font-size: 20px; margin: 0 0 12px; }
.more ul { list-style: none; margin: 0; padding: 0; }
.more li { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding: 12px 0; border-top: 1px solid var(--line); }
.more li:last-child { border-bottom: 1px solid var(--line); }
.more li a { font-weight: 600; text-decoration: none; }
.more li a:hover { text-decoration: underline; }
.more li span { font-size: 13.5px; color: var(--ink-3); white-space: nowrap; }

/* Index */
.blog-index { max-width: 700px; margin: 0 auto; padding: 36px 0 64px; }
.blog-index h1 { font-size: clamp(32px, 6.4vw, 46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; }
.cards { list-style: none; margin: 36px 0 0; padding: 0; }
.card { padding: 24px 0; border-top: 1px solid var(--line); }
.card:last-child { border-bottom: 1px solid var(--line); }
.card h2 { font-size: 23px; font-weight: 800; letter-spacing: -0.02em; max-width: none; }
.card h2 a { color: var(--ink); text-decoration: none; }
.card h2 a:hover { color: var(--green-deep); }
.card p { margin-top: 10px; color: var(--ink-2); }
.card .meta { font-size: 14px; color: var(--ink-3); margin-top: 10px; }

.blog footer { margin-top: 0; }
