:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --paper: #fffdf8;
  --ink: #17201c;
  --muted: #68716d;
  --line: #ddd8cb;
  --green: #1e7e5b;
  --green-dark: #155d45;
  --blue: #2d5bca;
  --blue-dark: #102a6b;
  --soft-blue: #e7edff;
  --cyan: #18a4a6;
  --shadow: 0 22px 60px rgba(31, 41, 35, 0.12);
  --radius: 8px;
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(24, 164, 166, 0.06), transparent 24%),
    radial-gradient(circle at 80% 10%, rgba(45, 91, 202, 0.08), transparent 23%),
    linear-gradient(118deg, rgba(16, 42, 107, 0.045), transparent 36%),
    linear-gradient(90deg, rgba(23, 32, 28, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 32, 28, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, auto, 64px 64px, 64px 64px;
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(23, 32, 28, 0.12);
  background: rgba(247, 245, 239, 0.86);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.repo-meta,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 7px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0;
}

.nav-links {
  gap: 30px;
  color: #39423d;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--green);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 760;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.header-action {
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: transparent;
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.86fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 72px 0 92px;
}

.hero::before {
  position: absolute;
  left: max(20px, calc((100vw - 1180px) / 2));
  right: max(20px, calc((100vw - 1180px) / 2));
  top: 96px;
  height: min(56vw, 560px);
  border: 1px solid rgba(45, 91, 202, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(45, 91, 202, 0.07), transparent 36%),
    linear-gradient(315deg, rgba(24, 164, 166, 0.06), transparent 28%);
  content: "";
  pointer-events: none;
  z-index: -1;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #4f5b55;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.8;
}

.signature-line {
  max-width: max-content;
  margin-top: 18px;
  border-left: 3px solid var(--blue);
  padding: 7px 0 7px 12px;
  color: #263b65;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.5;
}

.hero-actions {
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-signals {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-signals span {
  border: 1px solid rgba(23, 32, 28, 0.13);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.7);
  color: #40504a;
  padding: 8px 11px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 700;
}

.button {
  min-width: 132px;
  padding: 0 22px;
  border: 1px solid var(--ink);
}

.button-primary {
  background: var(--ink);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.button-secondary {
  background: var(--paper);
}

.repo-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 28, 0.16);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.repo-preview::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(24, 164, 166, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(45, 91, 202, 0.1), transparent 30%);
  content: "";
}

.repo-preview > * {
  position: relative;
}

.window-bar {
  display: flex;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: #fbfaf5;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border: 1px solid #c7c1b3;
  border-radius: 999px;
}

.repo-topline,
.repo-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.repo-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 30px 30px 0;
}

.repo-state {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
  text-transform: uppercase;
}

.repo-preview h2 {
  margin: 18px 30px 10px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.repo-preview p {
  margin: 0 30px;
  color: #59655f;
  font-size: 15px;
  line-height: 1.7;
}

.code-block {
  display: grid;
  gap: 13px;
  margin: 28px 30px;
  padding: 22px;
  border: 1px solid #d8d2c4;
  border-radius: var(--radius);
  background: #151b18;
  color: #dbe8df;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.5;
}

.code-block b {
  color: #85d6b0;
  font-weight: 700;
}

.repo-meta {
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 30px 20px;
}

.signal-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 30px 30px;
}

.signal-board span {
  border: 1px solid rgba(23, 32, 28, 0.11);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.72);
  color: #4b5852;
  padding: 10px 8px;
  text-align: center;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 760;
}

.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 50%;
}

.dot-green {
  background: var(--green);
}

.dot-blue {
  background: var(--blue);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
  border-top: 1px solid rgba(23, 32, 28, 0.13);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.site-footer h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.section-heading p,
.site-footer p {
  margin: 0;
  color: #58635e;
  font-size: 16px;
  line-height: 1.8;
  text-wrap: pretty;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(23, 32, 28, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  padding: 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 126, 91, 0.5);
  box-shadow: 0 18px 42px rgba(31, 41, 35, 0.12);
}

.project-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.project-card p {
  margin: 0;
  color: #5d6862;
  font-size: 15px;
  line-height: 1.72;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 26px;
}

.project-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fbfaf5;
  color: #52605a;
  font-size: 12px;
  font-weight: 720;
}

.project-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.project-link::after {
  margin-left: 8px;
  content: "->";
}

.writing-console {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  margin: -8px 0 28px;
}

.console-card,
.article-tools {
  border: 1px solid rgba(23, 32, 28, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  padding: 22px;
}

.console-card {
  background:
    linear-gradient(135deg, rgba(16, 42, 107, 0.92), rgba(18, 77, 87, 0.9)),
    #151b18;
  color: #f5f1e9;
}

.console-label {
  display: block;
  margin-bottom: 14px;
  color: #9fe4d0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.console-card p {
  margin: 0;
  color: #e4ece7;
  font-size: 15px;
  line-height: 1.78;
}

.article-tools {
  display: grid;
  gap: 16px;
}

.search-box {
  display: grid;
  gap: 8px;
  color: #34403a;
  font-size: 14px;
  font-weight: 800;
}

.search-box input {
  width: 100%;
  border: 1px solid #d8d2c4;
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  padding: 12px 13px;
}

.search-box input:focus {
  border-color: rgba(45, 91, 202, 0.72);
  box-shadow: 0 0 0 3px rgba(45, 91, 202, 0.12);
}

.topic-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.topic-filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf5;
  color: #52605a;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  padding: 7px 11px;
}

.topic-filter.is-active {
  border-color: rgba(45, 91, 202, 0.6);
  background: var(--soft-blue);
  color: var(--blue-dark);
}

.empty-articles {
  border: 1px dashed rgba(23, 32, 28, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  color: #59655f;
  padding: 24px;
  font-size: 15px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.article-list {
  display: grid;
  gap: 16px;
}

.article-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 26px;
  border: 1px solid rgba(23, 32, 28, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  padding: 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 91, 202, 0.35);
  box-shadow: 0 18px 42px rgba(31, 41, 35, 0.1);
}

.article-date {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.article-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.18;
}

.article-card p {
  margin: 0;
  color: #5d6862;
  font-size: 15px;
  line-height: 1.75;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.article-keywords {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.article-keywords span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fbfaf5;
  color: #52605a;
  font-size: 12px;
  font-weight: 720;
}

.article-keywords .category-chip {
  border-color: rgba(45, 91, 202, 0.32);
  background: var(--soft-blue);
  color: var(--blue-dark);
}

.read-button {
  border: 0;
  background: transparent;
  color: var(--green-dark);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.read-button::after {
  margin-left: 8px;
  content: "->";
}

.source-panel {
  border: 1px solid rgba(23, 32, 28, 0.13);
  border-radius: var(--radius);
  background: #151b18;
  color: #f5f1e9;
  padding: 22px;
}

.source-panel h3 {
  margin: 0 0 12px;
  font-size: 19px;
}

.source-panel p {
  margin: 0 0 18px;
  color: #c7d2cb;
  font-size: 14px;
  line-height: 1.72;
}

.source-panel a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  color: #a9d8c1;
  font-size: 14px;
  font-weight: 760;
}

.life-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.life-card {
  min-height: 210px;
  border: 1px solid rgba(23, 32, 28, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.78)),
    linear-gradient(135deg, rgba(45, 91, 202, 0.08), transparent 40%);
  padding: 22px;
}

.life-card-featured {
  grid-row: span 2;
  min-height: 436px;
  background:
    linear-gradient(160deg, rgba(16, 42, 107, 0.94), rgba(14, 74, 85, 0.88)),
    #151b18;
  color: #f5f1e9;
}

.life-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 820;
}

.life-card-featured span {
  color: #9fe4d0;
}

.life-card h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 31px);
  line-height: 1.12;
}

.life-card p {
  margin: 0;
  color: #5a665f;
  font-size: 15px;
  line-height: 1.78;
}

.life-card-featured p {
  color: #dbe8df;
}

.article-dialog {
  width: min(860px, calc(100% - 32px));
  max-height: min(86vh, 900px);
  border: 1px solid rgba(23, 32, 28, 0.18);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 0;
  box-shadow: 0 28px 80px rgba(20, 24, 22, 0.28);
}

.article-dialog::backdrop {
  background: rgba(20, 24, 22, 0.42);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: sticky;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  margin: 14px 14px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.article-reader {
  padding: 54px clamp(24px, 6vw, 70px) 60px;
}

.article-meta {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.article-reader h2 {
  margin: 0 0 26px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
}

.article-reader h3 {
  margin: 32px 0 12px;
  font-size: 22px;
}

.article-reader p,
.article-reader li {
  color: #44504a;
  font-size: 17px;
  line-height: 1.95;
}

.article-reader blockquote {
  margin: 28px 0;
  border-left: 4px solid var(--green);
  padding: 4px 0 4px 18px;
  color: #26322c;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.75;
}

.reader-takeaway {
  margin: 28px 0 30px;
  border: 1px solid rgba(30, 126, 91, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(30, 126, 91, 0.1), transparent 45%),
    #fbfaf5;
  padding: 18px 20px;
}

.reader-takeaway strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 14px;
}

.reader-takeaway p {
  margin: 0;
}

.article-reader ul,
.article-reader ol {
  padding-left: 22px;
}

.comments-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.comment-form,
.comment-list-wrap {
  border: 1px solid rgba(23, 32, 28, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  padding: 24px;
}

.comment-form {
  display: grid;
  gap: 18px;
}

.comment-form label {
  display: grid;
  gap: 8px;
  color: #34403a;
  font-size: 14px;
  font-weight: 800;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid #d8d2c4;
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.6;
  outline: none;
  padding: 12px 13px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.comment-form textarea {
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: rgba(30, 126, 91, 0.7);
  box-shadow: 0 0 0 3px rgba(30, 126, 91, 0.12);
}

.comment-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.comment-actions .button {
  cursor: pointer;
}

.comment-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.comment-list-heading h3 {
  margin: 0;
  font-size: 20px;
}

.comment-list-heading span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.comment-list {
  display: grid;
  gap: 12px;
}

.comment-item {
  border-top: 1px solid rgba(23, 32, 28, 0.12);
  padding-top: 14px;
}

.comment-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.comment-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.comment-item time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.comment-item p {
  margin: 8px 0 0;
  color: #4f5b55;
  font-size: 15px;
  line-height: 1.75;
}

.comment-reactions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.reaction-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf5;
  color: #52605a;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  padding: 6px 10px;
}

.note-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(23, 32, 28, 0.13);
}

.note-list article {
  display: grid;
  grid-template-columns: 140px minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(23, 32, 28, 0.13);
}

.note-list time {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.note-list h3 {
  margin: 0;
  font-size: 19px;
}

.note-list p {
  margin: 0;
  color: #5d6862;
  font-size: 15px;
  line-height: 1.75;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) auto;
  gap: 40px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 56px;
  border-top: 1px solid rgba(23, 32, 28, 0.13);
}

.site-footer p {
  max-width: 680px;
  margin-top: 18px;
}

.footer-links {
  gap: 18px;
  align-self: end;
  color: #39423d;
  font-size: 14px;
  font-weight: 760;
}

@media (max-width: 920px) {
  .site-header {
    min-height: auto;
    padding: 18px 0;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 0 72px;
  }

  .repo-preview {
    max-width: 620px;
  }

  .section-heading,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .writing-console {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .life-grid {
    grid-template-columns: 1fr 1fr;
  }

  .life-card-featured {
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .source-panel {
    position: static;
  }

  .article-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .comments-shell {
    grid-template-columns: 1fr;
  }

  .note-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .brand span:last-child,
  .header-action {
    display: none;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .button {
    flex: 1 1 150px;
  }

  .repo-topline,
  .repo-preview h2,
  .repo-preview p,
  .repo-meta {
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .code-block {
    margin: 24px 20px;
    padding: 18px;
    overflow-x: auto;
    font-size: 12px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .life-grid {
    grid-template-columns: 1fr;
  }

  .life-card,
  .life-card-featured {
    min-height: 220px;
  }

  .project-card {
    min-height: 260px;
  }

  .signal-board {
    grid-template-columns: 1fr;
  }

  .article-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-reader {
    padding: 44px 22px 42px;
  }

  .comment-actions .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
