/* ============================================================
   Blog — listing + single post styles
   ============================================================ */

/* ---------- BREADCRUMB HERO (reuses .page-hero from cjenovnik.css) ---------- */
/* nav active state inherited from cjenovnik.css */

/* ============================================================
   BLOG LISTING
   ============================================================ */
.blog-section {
  padding: 96px var(--safe) 60px;
  background: var(--bg);
  position: relative;
}
.blog-container {
  max-width: var(--container);
  margin: 0 auto;
}

/* ----- top bar: small intro + category pills ----- */
.blog-topbar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.blog-topbar .topbar-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.blog-topbar .topbar-eyebrow::before {
  content: "";
  width: 36px; height: 2px;
  background: var(--green);
}
.blog-topbar h2 {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
  max-width: 640px;
  text-wrap: balance;
}
.blog-topbar h2 strong { color: var(--green); font-weight: 700; }

.cat-pills {
  display: inline-flex; gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cat-pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s ease;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cat-pill:hover,
.cat-pill.is-active {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(132,185,63,0.32);
}
.cat-pill .count {
  opacity: .7;
  font-weight: 400;
}
.cat-pill.is-active .count { opacity: .85; }

/* ----- featured post (hero card) ----- */
.featured-post {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lift);
  margin-bottom: 72px;
  position: relative;
  isolation: isolate;
}
.featured-post::before {
  content: "FEATURED";
  position: absolute;
  top: 24px; left: 24px;
  z-index: 3;
  background: #fff;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
.featured-post .fp-media {
  position: relative;
  min-height: 480px;
  background: #C53030;
  overflow: hidden;
}
.featured-post .fp-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.featured-post:hover .fp-media img { transform: scale(1.04); }
.featured-post .fp-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(132,185,63,0.18) 100%);
  pointer-events: none;
}

.featured-post .fp-body {
  padding: 56px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  position: relative;
}
.fp-meta {
  display: inline-flex; align-items: center; gap: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.fp-meta .meta-item { display: inline-flex; align-items: center; gap: 8px; }
.fp-meta .meta-ico {
  width: 16px; height: 16px;
  color: var(--green);
  display: inline-block;
}
.fp-meta .meta-cat {
  color: var(--green);
  font-weight: 700;
}
.featured-post h3 {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.featured-post .fp-dash {
  display: inline-block;
  width: 80px; height: 4px;
  background: url("/assets/line.svg") center/contain no-repeat;
}
.featured-post .fp-excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  max-width: 460px;
  text-wrap: pretty;
}
.featured-post .fp-link {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  transition: gap .2s ease, color .2s ease;
  align-self: flex-start;
}
.featured-post .fp-link::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--green);
  transition: width .25s ease;
}
.featured-post .fp-link:hover { color: var(--green); gap: 18px; }
.featured-post .fp-link:hover::before { width: 44px; }

/* ----- grid of remaining posts ----- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.post-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 220px 1fr;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  min-height: 240px;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.post-card .pc-media {
  position: relative;
  background: #E8EFE0;
  overflow: hidden;
}
.post-card .pc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.post-card:hover .pc-media img { transform: scale(1.06); }
.post-card .pc-date-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px 6px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  min-width: 52px;
}
.post-card .pc-date-badge .day {
  font-family: "Merriweather", serif;
  font-weight: 700;
  color: var(--green);
  font-size: 22px;
  line-height: 1;
  display: block;
}
.post-card .pc-date-badge .mon {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-top: 2px;
  display: block;
}
.post-card .pc-body {
  padding: 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-card .pc-cat {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.post-card h3 {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.post-card .pc-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: pretty;
}
.post-card .pc-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
}
.post-card .pc-link::before {
  content: "";
  width: 20px; height: 2px;
  background: var(--green);
  transition: width .2s ease;
}
.post-card:hover .pc-link { color: var(--green); }
.post-card:hover .pc-link::before { width: 30px; }

/* ----- pagination ----- */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin: 60px 0 0;
  gap: 8px;
}
.blog-pagination button,
.blog-pagination .page-link {
  width: 44px; height: 44px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
}
.blog-pagination .page-link:hover,
.blog-pagination .page-link.is-active {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-color: transparent;
}

/* ============================================================
   SINGLE BLOG POST
   ============================================================ */
.post-section {
  padding: 80px var(--safe) 40px;
  background: var(--bg);
}
.post-container {
  max-width: var(--container);
  margin: 0 auto;
}

/* ----- post header inside content ----- */
.post-head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 40px;
}
.post-head .post-meta {
  display: inline-flex; align-items: center; gap: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.post-head .post-meta .meta-item { display: inline-flex; align-items: center; gap: 8px; }
.post-head .post-meta .meta-cat {
  color: var(--green);
  background: rgba(132,185,63,0.10);
  padding: 6px 14px;
  border-radius: 999px;
}
.post-head .post-meta .meta-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--green);
}
.post-head h1.post-title {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.post-head h1 strong { color: var(--green); font-weight: 700; }
.post-head .post-dash {
  display: inline-block;
  width: 100px; height: 4px;
  background: url("/assets/line.svg") center/contain no-repeat;
  margin-top: 24px;
}

/* ----- hero image with overlap card ----- */
.post-hero-figure {
  position: relative;
  margin: 0 0 80px;
}
.post-hero-figure .hero-img-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      #C53030 0px, #C53030 1px,
      #B72525 1px, #B72525 2px),
    #C53030;
  aspect-ratio: 16/7;
  display: grid;
  place-items: center;
  box-shadow: 0 30px 60px rgba(197,48,48,0.25);
}
.post-hero-figure .hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.55);
  transform-origin: center;
}

/* small floating chips on hero */
.post-hero-figure .hero-chip {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  z-index: 2;
}
.post-hero-figure .hero-chip .chip-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(132,185,63,0.2);
}
.post-hero-figure .hero-chip.chip-1 {
  bottom: -28px; left: 48px;
}
.post-hero-figure .hero-chip.chip-2 {
  top: 32px; right: -16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 22px;
}
.post-hero-figure .hero-chip.chip-2 .chip-num {
  font-family: "Merriweather", serif;
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: var(--green);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.post-hero-figure .hero-chip.chip-2 .chip-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ----- article layout ----- */
.post-body {
  display: grid;
  grid-template-columns: 80px 1fr 260px;
  gap: 48px;
  align-items: start;
}
/* left rail */
.post-rail {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.post-rail .rail-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.post-rail .rail-share {
  display: flex; flex-direction: column; gap: 10px;
  align-items: center;
}
.post-rail .rail-share a {
  width: 42px; height: 42px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
  transition: all .2s ease;
}
.post-rail .rail-share a:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-2px);
}
.post-rail .rail-share a svg { width: 16px; height: 16px; }

/* main content */
.post-content {
  max-width: 880px;
}
.post-content .lede {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  position: relative;
  padding: 0 0 0 28px;
  border-left: 4px solid var(--green);
  text-wrap: pretty;
}
.post-content .lede strong { font-weight: 700; color: var(--green); }

/* right sidebar */
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
}
.sidebar-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 24px 22px;
}
.sidebar-card.is-author {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 28px 22px;
}
.sidebar-card.is-author .author-av {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: #fff url("/assets/dr-boris-culum.jpg") center/cover no-repeat;
  margin: 0 auto 14px;
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.sidebar-card.is-author .author-role {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: .92;
  margin: 0 0 4px;
}
.sidebar-card.is-author .author-name {
  font-family: "Merriweather", serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 8px;
}
.sidebar-card.is-author .author-bio {
  font-size: 13px;
  line-height: 1.5;
  opacity: .92;
  margin: 0;
}

.sidebar-card h4 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
  display: flex; align-items: center; gap: 10px;
}
.sidebar-card h4::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--green);
}

.tag-list {
  display: flex; flex-wrap: wrap; gap: 6px;
  list-style: none; padding: 0; margin: 0;
}
.tag-list li a {
  display: inline-block;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  transition: all .2s ease;
}
.tag-list li a:hover { background: var(--green); color: #fff; border-color: var(--green); }

.toc-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.toc-list a {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--ink);
  padding: 4px 0;
}
.toc-list a:hover { color: var(--green); }
.toc-list a .num {
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-style: italic;
  color: var(--green);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  min-width: 26px;
  line-height: 1;
}

/* ----- video block ----- */
.post-video {
  margin: 64px 0 0;
  position: relative;
}
.post-video .video-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.post-video .video-eyebrow::before {
  content: "";
  width: 32px; height: 2px;
  background: var(--green);
}
.post-video h2 {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 24px;
  color: var(--ink);
}
.post-video .video-frame {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px rgba(0,0,0,0.20);
}
.post-video video {
  width: 100%;
  display: block;
  border-radius: var(--radius-card);
}
.post-video .video-caption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
}

/* ----- post nav (prev/next) ----- */
.post-nav {
  max-width: var(--container);
  margin: 80px auto 0;
  padding: 0 var(--safe);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
.post-nav .pn-link {
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 28px;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  transition: background .2s ease, transform .2s ease;
}
.post-nav .pn-link:hover { background: rgba(132,185,63,0.12); transform: translateY(-2px); }
.post-nav .pn-link.next { text-align: right; }
.post-nav .pn-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.post-nav .pn-link.next .pn-label { justify-content: flex-end; }
.post-nav .pn-title {
  font-family: "Merriweather", serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--ink);
}
.post-nav .pn-home {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  transition: transform .2s ease;
}
.post-nav .pn-home:hover { transform: scale(1.08); }
.post-nav .pn-home svg { width: 22px; height: 22px; }

/* ----- related posts ----- */
.related-section {
  padding: 80px var(--safe) 100px;
  background: var(--bg-card);
}
.related-container {
  max-width: var(--container);
  margin: 0 auto;
}
.related-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.related-head h2 {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.related-head .eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.related-head .eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--green);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.related-grid .post-card { background: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .featured-post { grid-template-columns: 1fr; }
  .featured-post .fp-media { min-height: 320px; }
  .featured-post .fp-body { padding: 36px 32px; }
  .post-body { grid-template-columns: 1fr; }
  .post-rail { display: none; }
  .post-sidebar { position: static; }
  .post-content { max-width: none; }
  .post-hero-figure .hero-chip.chip-2 { display: none; }
  .blog-topbar { grid-template-columns: 1fr; align-items: start; }
  .cat-pills { justify-content: flex-start; }
}
@media (max-width: 820px) {
  .blog-section, .post-section, .related-section { padding-left: 16px; padding-right: 16px; }
  .post-section { padding-top: 48px; }
  .posts-grid, .related-grid { grid-template-columns: 1fr; gap: 20px; }
  .post-card { grid-template-columns: 1fr; min-height: auto; }
  .post-card .pc-media { aspect-ratio: 16/9; }
  .featured-post { margin-bottom: 48px; }
  .featured-post .fp-body { padding: 28px 22px; }
  .post-nav { grid-template-columns: 1fr; gap: 12px; }
  .post-nav .pn-link.next { text-align: left; }
  .post-nav .pn-link.next .pn-label { justify-content: flex-start; }
  .post-nav .pn-home { justify-self: center; }
  .post-hero-figure { margin-bottom: 48px; }
  .post-hero-figure .hero-chip.chip-1 { left: 16px; right: 16px; justify-content: center; }
  .post-content .lede { font-size: 20px; padding-left: 18px; }
  .post-video h2 { font-size: 24px; }
}

/* ============================================================
   POST CONTENT TYPOGRAPHY (statička migracija — Astro blog)
   ============================================================ */
.post-content h2 {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
  color: var(--ink);
  margin: 48px 0 18px;
}
.post-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
}
.post-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.post-content p.lede { margin-bottom: 36px; }
.post-content ul {
  margin: 0 0 20px;
  padding-left: 22px;
}
.post-content ul li {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.post-content a {
  color: var(--green-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(102, 148, 41, 0.4);
  transition: border-color .15s, color .15s;
}
.post-content a:hover { color: var(--green); border-bottom-color: var(--green); }
.post-content strong { color: var(--ink); font-weight: 700; }
.post-content .price-section { margin: 8px 0 28px; }
.post-faq { margin-top: 56px; }
.post-nav { margin-top: 56px; }

/* Hero figura za fotografske featured slike (cover, bez crvenog akcenta) */
.post-hero-figure .hero-img-wrap.is-photo {
  background: var(--bg-grey);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.post-hero-figure .hero-img-wrap.is-photo img {
  object-fit: cover;
  transform: none;
}

/* Author box na dnu clanka */
.post-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 56px;
  padding: 24px 28px;
  background: var(--bg-grey);
  border-radius: var(--radius-card, 16px);
}
.post-author .pa-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.post-author .pa-body { display: flex; flex-direction: column; gap: 2px; }
.post-author .pa-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.post-author .pa-name { font-size: 18px; font-weight: 700; color: var(--ink); }
.post-author .pa-role { font-size: 14px; color: var(--ink-soft); }
.post-author .pa-link {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
}
.post-author .pa-link:hover { color: var(--green); }
@media (max-width: 560px) {
  .post-author { flex-direction: column; text-align: center; }
}
