﻿:root {
  color-scheme: dark;
  --bg: #030a09;
  --bg-soft: #071513;
  --ink: #f6f1e7;
  --ink-strong: #fffaf0;
  --muted: rgba(246, 241, 231, 0.72);
  --faint: rgba(246, 241, 231, 0.52);
  --line: rgba(246, 241, 231, 0.18);
  --line-strong: rgba(246, 241, 231, 0.32);
  --panel: rgba(3, 12, 11, 0.62);
  --panel-solid: #071210;
  --panel-soft: rgba(246, 241, 231, 0.08);
  --cream: #f2eadc;
  --cream-2: #ded3c2;
  --green: #133f38;
  --green-deep: #06241f;
  --accent: #c9905f;
  --accent-soft: rgba(201, 144, 95, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --page: min(1200px, calc(100vw - 96px));
  --narrow: min(900px, calc(100vw - 96px));
  --font: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.68;
  background: var(--bg);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0,0,0,.44), rgba(0,0,0,.16) 42%, rgba(0,0,0,.52)), url("./assets/images/baobab-hero-original-texture.png") center / cover no-repeat;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 28% 20%, rgba(255,255,255,.05), transparent 34%), linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.42));
}
body.light-surface::before { opacity: .18; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.hidden { display: none !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px max(32px, calc((100vw - 1320px) / 2));
  background: rgba(1, 9, 8, 0.86);
  border-bottom: 1px solid rgba(246, 241, 231, 0.12);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(246, 241, 231, 0.14);
  color: var(--ink-strong);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  background: rgba(0,0,0,.26);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.site-nav a, .site-nav button, .language-toggle, .lang-toggle {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(246,241,231,.86);
  background: rgba(2, 11, 10, .46);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav button:hover { border-color: var(--cream-2); background: rgba(246,241,231,.08); }
.site-nav .primary-nav, .site-nav .active, .language-toggle:hover, .lang-toggle:hover {
  color: var(--green-deep);
  background: var(--cream);
  border-color: var(--cream);
}

main { position: relative; z-index: 1; }
.home-v2 { width: 100%; }
.home-hero-v2 {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding: 110px 0 120px;
  overflow: hidden;
}
.home-hero-bg, .home-hero-overlay { position: absolute; inset: 0; pointer-events: none; }
.home-hero-bg { background: url("./assets/images/baobab-hero-original-texture.png") center / cover no-repeat; opacity: .86; }
.home-hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.56), rgba(0,0,0,.18) 46%, rgba(0,0,0,.48)); }
.home-hero-content-v2 {
  position: relative;
  z-index: 1;
  width: min(1260px, calc(100vw - 96px));
  margin: 0 auto;
}
.home-hero-content-v2 h1,
.page-title h1,
.framework-page-title h1,
.member-hero h1 {
  margin: 0;
  max-width: 1260px;
  color: var(--ink-strong);
  font-size: clamp(44px, 5vw, 78px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}
.home-lead-v2 {
  max-width: 980px;
  margin: 26px 0 0;
  color: rgba(246,241,231,.88);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 1.7;
  text-wrap: balance;
}
.hero-actions, .home-inline-actions, .member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}
.cta-button, .text-link, .secondary-button, .course-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  font-weight: 800;
  color: var(--cream);
  background: rgba(2, 12, 10, .5);
  box-shadow: none;
  white-space: nowrap;
}
.cta-button, .hero-ai-entry {
  color: var(--green-deep);
  background: var(--cream);
  border-color: var(--cream);
}
.text-link:hover, .secondary-button:hover { background: rgba(246,241,231,.1); border-color: var(--cream); }
.cta-button:hover { filter: brightness(1.04); transform: translateY(-1px); }

.home-band, .framework-layout, .page-layout, .test-layout {
  width: var(--page);
  margin: 0 auto;
}
.home-band {
  min-height: 72vh;
  padding: 100px 0;
}
.home-section-head { max-width: 980px; margin-bottom: 42px; }
.home-section-head.compact { margin-bottom: 34px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.home-section-head h2, .framework-layout h1, .section-heading-row h2, .article-detail h1 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(34px, 4.4vw, 66px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}
.home-section-head p, .framework-page-title p, .page-title p, .vision-band p, .story-panel p {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
}

.home-logic-flow, .framework-grid, .home-content-grid, .card-grid, .member-grid, .home-asset-grid {
  display: grid;
  gap: 20px;
}
.home-logic-flow { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.framework-grid.three, .home-content-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.framework-grid.two, .member-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.framework-grid.five, .home-asset-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-logic-flow article, .framework-card, .home-content-grid a, .home-asset-item, .story-panel, .member-profile-card, .member-records-section, .filters, .article-detail, .test-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(3, 16, 14, .74), rgba(0, 0, 0, .4));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.home-logic-flow article, .framework-card, .home-content-grid a, .home-asset-item {
  min-height: 180px;
  padding: 28px;
}
.home-logic-flow span, .framework-card .course-level, .member-tier-pill {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--accent);
  font-weight: 900;
}
.home-logic-flow strong, .framework-card h2, .framework-card h3, .home-content-grid strong, .home-asset-item strong {
  display: block;
  color: var(--ink-strong);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.25;
  font-weight: 900;
}
.home-logic-flow p, .framework-card p, .home-content-grid p, .home-asset-item span, .member-benefit-list, .empty-state {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.home-asset-grid {
  align-items: stretch;
  overflow: visible;
}
.home-asset-item {
  position: relative;
  overflow: hidden;
  transform: none;
}
.home-asset-item:hover {
  border-color: rgba(242, 234, 220, .42);
  background: linear-gradient(145deg, rgba(6, 30, 27, .88), rgba(0, 0, 0, .46));
  transform: translateY(-3px);
}
.home-asset-item strong {
  font-size: clamp(24px, 1.55vw, 30px);
}
.home-asset-item span {
  display: block;
  max-width: 13em;
  word-break: normal;
  overflow-wrap: break-word;
}
.home-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .85fr);
  gap: 42px;
  align-items: start;
}
.home-split h2, .vision-band h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(34px, 3.7vw, 58px);
  line-height: 1.14;
  font-weight: 900;
  text-wrap: balance;
}
.home-split p, .vision-band > p { color: var(--muted); font-size: 20px; }
.home-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.home-process-list li {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,.28);
}
.home-process-list strong { display: block; color: var(--ink-strong); font-size: 20px; }
.home-process-list span { display: block; margin-top: 6px; color: var(--muted); }
.vision-band { padding-bottom: 130px; }

.framework-layout, .page-layout {
  padding: 96px 0 120px;
}
.page-title, .framework-page-title, .member-hero {
  max-width: 980px;
  margin-bottom: 48px;
}
.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin: 54px 0 24px;
}
.keyword-cloud, .filter-row, .mini-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.keyword-cloud button, .filter-row button, .inline-space-choice button {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--cream);
  background: rgba(0,0,0,.22);
  font-weight: 800;
}
.keyword-cloud button.active, .filter-row button.active, .inline-space-choice button.active {
  color: var(--green-deep);
  background: var(--cream);
  border-color: var(--cream);
}
.filters { padding: 28px; margin-bottom: 30px; box-shadow: none; }
.filters h2 { margin: 0 0 12px; font-size: 22px; color: var(--ink-strong); }
.content-card, .problem-card, .knowledge-card, .case-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 13, 12, .62);
}
.content-card h2, .content-card h3 { margin: 0 0 10px; color: var(--ink-strong); font-size: 24px; }
.content-card p { color: var(--muted); }
.article-detail { max-width: 900px; padding: 48px; margin: 92px auto; }
.article-detail .article-meta, .article-tags { color: var(--faint); }
.article-tags span { display: inline-block; margin: 0 8px 8px 0; color: var(--green-deep); background: var(--cream); border-radius: 999px; padding: 4px 12px; font-weight: 800; }
.article-section { margin-top: 34px; }
.article-section h2 { margin: 0 0 12px; color: var(--ink-strong); font-size: 30px; }
.article-section p, .article-section li { color: var(--muted); font-size: 18px; }

.member-layout { width: var(--narrow); }
.member-grid { margin-bottom: 0; }
.member-profile-card, .member-records-section { padding: 34px; }
.member-profile-card .section-heading-row,
.member-records-section .section-heading-row {
  margin: 0 0 22px;
  align-items: center;
}
.member-profile-card .section-heading-row h2,
.member-records-section .section-heading-row h2 {
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.22;
}
.member-profile-card h2,
.member-records-section h2 {
  color: var(--ink-strong);
}
.member-form label, .member-gate-form label { display: block; margin-bottom: 18px; color: var(--ink-strong); font-weight: 800; }
.member-form input, .member-gate-form input, .chat-input textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink-strong);
  background: rgba(255,255,255,.08);
  outline: none;
}
.member-form input, .member-gate-form input { height: 54px; padding: 0 16px; }
.member-form input::placeholder, .member-gate-form input::placeholder, .chat-input textarea::placeholder { color: rgba(246,241,231,.46); }
.member-form button, .member-gate-form button { width: 100%; }
.member-note { color: var(--faint); font-size: 14px; }
.member-record-list { display: grid; gap: 14px; }
.member-record-card { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(0,0,0,.22); }
.empty-state { padding: 28px; border: 1px dashed var(--line-strong); border-radius: var(--radius); }

.single-chat-layout {
  min-height: calc(100svh - 78px);
  display: grid;
  place-items: start center;
  padding: 42px 0 80px;
}
.compact-chat-panel {
  width: min(880px, 100%);
  min-height: min(760px, calc(100svh - 150px));
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.member-gate { width: min(620px, 100%); margin: 0 auto; padding: 14px 0; }
.member-gate h1 { margin: 0 0 20px; color: var(--ink-strong); font-size: clamp(36px, 5vw, 58px); line-height: 1.12; }
.member-gate-footer { display: flex; gap: 12px; margin-top: 14px; }
.ai-test-chat-shell { flex: 1; min-height: 0; display: flex; flex-direction: column; gap: 18px; }
.member-session-bar { color: var(--muted); font-weight: 800; }
.chat-window {
  flex: 1;
  min-height: 320px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 2px;
}
.chat-message, .message, .bot-message, .user-message {
  max-width: 92%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  color: var(--ink);
  font-size: 18px;
}
.user-message { align-self: flex-end; background: rgba(242,234,220,.12); }
.bot-message { align-self: flex-start; }
.priority-ranking { padding-left: 22px; }
.priority-ranking li {
  margin: 12px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.priority-ranking li:last-child { border-bottom: 0; }
.priority-ranking span { color: var(--muted); }
.inline-space-choice { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0; }
.inline-knowledge-panel { border-top: 1px solid var(--line); padding-top: 18px; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.section-head h2 { margin: 0; color: var(--ink-strong); font-size: 22px; }
.mini-card-list a, .mini-card-list article { flex: 1 1 210px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(0,0,0,.2); }
.chat-input {
  min-height: 76px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 48px;
  align-items: end;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 46px rgba(0,0,0,.22);
}
.add-photo-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  border-radius: 50%;
  border: 1px solid rgba(6,36,31,.22);
  background: transparent;
  font-size: 30px;
  line-height: 1;
}
.hidden-file-input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.chat-input textarea {
  resize: none;
  min-height: 48px;
  max-height: 140px;
  margin: 0;
  padding: 12px 4px;
  border: 0;
  color: #1d2927;
  background: transparent;
  font-size: 17px;
  line-height: 1.45;
}
.send-icon-button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--cream);
  background: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.contact-float {
  position: fixed;
  right: 18px;
  bottom: 26px;
  z-index: 60;
  display: flex;
  align-items: end;
  gap: 12px;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}
.contact-rail {
  overflow: hidden;
  border: 1px solid rgba(6, 36, 31, .2);
  border-radius: var(--radius);
  background: rgba(242, 234, 220, .96);
  box-shadow: 0 16px 42px rgba(0,0,0,.28);
}
.contact-float button, .contact-float a {
  width: 70px;
  min-height: 62px;
  border: 0;
  border-bottom: 1px solid rgba(6,36,31,.14);
  color: var(--green);
  background: transparent;
  font-weight: 900;
}
.contact-float button span {
  display: block;
  font-size: 20px;
  line-height: 1;
}
.contact-float button em {
  display: block;
  margin-top: 4px;
  font-style: normal;
}
.ai-test-page .contact-float { display: none !important; }
.contact-panel {
  display: none;
  width: 280px;
  padding: 22px 24px;
  border: 1px solid rgba(6, 36, 31, .16);
  border-radius: var(--radius);
  color: var(--green-deep);
  background: rgba(242, 234, 220, .98);
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
}
.contact-panel.active {
  display: block;
}
.contact-panel .contact-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-right: 12px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--green);
}
.contact-panel strong {
  display: inline-block;
  color: var(--green);
  font-size: 25px;
  line-height: 1.2;
  vertical-align: middle;
}
.contact-panel span,
.contact-panel small {
  color: rgba(6, 36, 31, .78);
}
.contact-panel-wechat strong,
.contact-panel-wechat span,
.contact-panel-wechat small {
  display: block;
}
.contact-popover {
  position: fixed;
  right: 98px;
  bottom: 86px;
  z-index: 61;
  max-width: 320px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--green-deep);
  background: rgba(242,234,220,.98);
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
}
.contact-popover strong { display: block; font-size: 26px; color: var(--green); }
.contact-popover img { width: 180px; margin: 0 auto 10px; }

.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --page: min(100% - 42px, 960px); --narrow: min(100% - 42px, 860px); }
  .site-header { align-items: flex-start; flex-direction: column; gap: 14px; padding: 18px 22px; }
  .site-nav { justify-content: flex-start; }
  .home-logic-flow, .framework-grid.five, .home-asset-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .framework-grid.three, .home-content-grid, .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-split, .member-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --page: calc(100% - 28px); --narrow: calc(100% - 28px); }
  body::before { background-position: center top; }
  .site-header { position: sticky; min-height: auto; padding: 14px; }
  .brand { min-width: 92px; min-height: 38px; font-size: 16px; padding: 0 12px; }
  .site-nav { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; gap: 8px; }
  .site-nav a, .site-nav button { min-height: 44px; padding: 0 8px; font-size: 14px; }
  .home-hero-v2 { min-height: auto; padding: 64px 0 78px; }
  .home-hero-content-v2 { width: var(--page); }
  .home-hero-content-v2 h1, .page-title h1, .framework-page-title h1, .member-hero h1 { font-size: clamp(38px, 11vw, 56px); }
  .home-lead-v2 { font-size: 18px; }
  .hero-actions, .home-inline-actions, .member-actions { align-items: stretch; flex-direction: column; }
  .cta-button, .text-link, .secondary-button { width: 100%; min-height: 52px; }
  .home-band, .framework-layout, .page-layout { padding: 64px 0; }
  .home-section-head h2, .framework-layout h1, .section-heading-row h2, .article-detail h1 { font-size: clamp(32px, 10vw, 48px); }
  .home-logic-flow, .framework-grid, .framework-grid.five, .framework-grid.three, .framework-grid.two, .home-asset-grid, .home-content-grid, .card-grid { grid-template-columns: 1fr; }
  .home-logic-flow article, .framework-card, .home-content-grid a, .home-asset-item { min-height: auto; padding: 22px; }
  .single-chat-layout { padding: 18px 0 32px; place-items: start center; }
  .compact-chat-panel { width: 100%; min-height: calc(100svh - 136px); padding: 18px; }
  .member-gate h1 { font-size: 36px; }
  .member-gate-footer { flex-direction: column; }
  .chat-window { min-height: 300px; }
  .ai-test-chat-shell { gap: 12px; }
  .ai-test-chat-shell .inline-knowledge-panel { display: none !important; }
  .chat-message, .message, .bot-message, .user-message { max-width: 100%; font-size: 17px; }
  .chat-input { grid-template-columns: 40px minmax(0, 1fr) 44px; min-height: 70px; border-radius: 18px; }
  .add-photo-button, .send-icon-button { width: 42px; height: 42px; }
  .chat-input textarea { font-size: 16px; }
  .article-detail { padding: 24px; margin: 32px auto; }
  .contact-float {
    right: 10px;
    bottom: 14px;
    align-items: end;
    gap: 8px;
  }
  .contact-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-float button, .contact-float a { width: 58px; min-height: 54px; font-size: 13px; }
  .contact-panel {
    width: min(240px, calc(100vw - 92px));
    padding: 16px;
  }
  .contact-panel strong { font-size: 20px; }
  .contact-popover { right: 76px; bottom: 70px; max-width: calc(100vw - 96px); }
}

.article-layout {
  width: var(--page);
  margin: 0 auto;
  padding: 88px 0 120px;
}
.published-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(3, 16, 14, .78), rgba(0, 0, 0, .48));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.published-article h1 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.14;
  font-weight: 900;
}
.article-summary {
  margin: 20px 0 22px;
  color: var(--muted);
  font-size: 21px;
}
.article-cta {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.article-cta h2 {
  margin: 0 0 10px;
  color: var(--ink-strong);
  font-size: 28px;
}
.article-cta p { color: var(--muted); }

@media (max-width: 720px) {
  .article-layout { padding: 30px 0 60px; }
  .published-article { padding: 24px; }
}
