/* ============================================================
   Tips & Advice — individual post (long-form article)
   ============================================================ */

/* ===== Page hero (matches other inner pages, with post-specific tap-hero override) ===== */
.area-page-hero {
  background: var(--paper, #fff);
  padding: 64px max(56px, calc((100% - 1328px) / 2)) 48px;
  border-bottom: 1px solid var(--rule, rgba(31,31,27,0.16));
  text-align: center;
}
.area-page-hero .breadcrumb {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft, #3F3E36);
  margin-bottom: 18px;
}
.area-page-hero .breadcrumb a {
  color: var(--green-deep, #73B96B);
  text-decoration: none;
}
.area-page-hero .breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tap-hero .tap-meta {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-darker, #00384D);
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.tap-hero .tap-meta .sep { color: rgba(31,31,27,0.30); font-weight: 400; }
.tap-hero h1 {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink, #1F1F1B);
  max-width: 820px;
  margin: 0 auto 18px;
  text-transform: none;
}
.tap-hero .lede {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft, #3F3E36);
  max-width: 720px;
  margin: 0 auto;
}

/* ===== Cover image band — full-width, centered figure ===== */
.tap-cover-band {
  background: var(--paper, #fff);
  padding: 32px max(56px, calc((100% - 1328px) / 2)) 0;
}
.tap-cover {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper-deep, #F4F9F1);
}
.tap-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ===== Body band — paper-deep wash, narrow centered article ===== */
.tap-body-band {
  background: var(--paper, #fff);
  padding: 56px max(56px, calc((100% - 1328px) / 2)) 80px;
}
.tap-article {
  max-width: 760px;
  margin: 0 auto;
}

/* ===== Long-form typography ===== */
.tap-body {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink, #1F1F1B);
}
.tap-body > * + * { margin-top: 1.1em; }
.tap-body h2 {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink, #1F1F1B);
  margin-top: 2em;
}
.tap-body h3 {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink, #1F1F1B);
  margin-top: 1.6em;
}
.tap-body p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink, #1F1F1B);
}
.tap-body a {
  color: var(--green-deep, #73B96B);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.tap-body a:hover { color: var(--green-darker, #00384D); }
.tap-body strong { font-weight: 700; color: var(--ink, #1F1F1B); }
.tap-body em { font-style: italic; }

.tap-body ul, .tap-body ol {
  padding-left: 1.4em;
  font-size: 18px;
  line-height: 1.7;
}
.tap-body ul li, .tap-body ol li { margin-top: 0.4em; }
.tap-body ul { list-style: disc; }
.tap-body ol { list-style: decimal; }

.tap-body blockquote {
  margin: 1.6em 0;
  padding: 18px 24px;
  border-left: 4px solid var(--green-deep, #73B96B);
  background: var(--paper-deep, #F4F9F1);
  border-radius: 0 8px 8px 0;
  font-size: 17.5px;
  color: var(--ink-soft, #3F3E36);
  font-style: italic;
}
.tap-body blockquote p { margin: 0; }

.tap-body code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  background: rgba(31,31,27,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
}
.tap-body pre {
  background: var(--ink, #1F1F1B);
  color: var(--paper, #fff);
  padding: 18px 20px;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 14.5px;
  line-height: 1.55;
}
.tap-body pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.tap-body img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.6em 0;
}

.tap-body hr {
  border: 0;
  border-top: 1px solid var(--rule, rgba(31,31,27,0.16));
  margin: 2.2em 0;
}

/* ===== Footer / back link ===== */
.tap-footer {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule, rgba(31,31,27,0.16));
}
.tap-back {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep, #73B96B);
  text-decoration: none;
}
.tap-back:hover { color: var(--green-darker, #00384D); }

@media (max-width: 768px) {
  .area-page-hero { padding: 36px 18px 32px; }
  .tap-hero h1 { font-size: 34px; }
  .tap-hero .lede { font-size: 16px; }
  .tap-hero .tap-meta { font-size: 11px; gap: 6px; }
  .tap-cover-band { padding: 20px 0 0; }
  .tap-cover { border-radius: 0; }
  .tap-body-band { padding: 32px 18px 56px; }
  .tap-body { font-size: 16.5px; }
  .tap-body h2 { font-size: 26px; }
  .tap-body h3 { font-size: 20px; }
  .tap-body p, .tap-body ul, .tap-body ol { font-size: 16.5px; }
}
