@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Kanit:wght@300;400;500;600;700&family=Mitr:wght@300;400;500;600&family=Nanum+Myeongjo:wght@400;700;800&family=Sarabun:wght@300;400;500;600&display=swap");

:root {
  --ink: #18243a;
  --muted: #607087;
  --paper: #fbfaf7;
  --line: #d9ded8;
  --navy: #08345e;
  --gold: #c99a31;
  --soft: #f2f5f4;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Noto Sans Thai", "Noto Sans KR", Tahoma, sans-serif;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 8px 10px;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(14px);
}
.image-nav {
  width: min(1120px, 100%);
  min-height: 56px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.72fr 0.82fr 0.9fr 0.96fr;
  align-items: stretch;
  overflow: visible;
  border: 1px solid rgba(8, 52, 94, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(8, 52, 94, 0.12);
}
.nav-logo,
.nav-image-button {
  position: relative;
  min-width: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 4px;
  color: var(--navy);
  border-right: 1px solid rgba(8, 52, 94, 0.12);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.nav-logo {
  justify-content: center;
  padding-left: 4px;
}
.nav-logo.active,
.nav-image-button.active {
  background: linear-gradient(135deg, #ff9d15, #f08300);
  color: var(--white);
}
.nav-logo.active { border-radius: 7px 0 0 7px; }
.nav-logo.active::after,
.nav-image-button.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 10px solid var(--paper);
}
.nav-logo-mark {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: transform 180ms ease;
}
.logo-words {
  display: none;
  gap: 2px;
  transition: transform 180ms ease;
}
.logo-words strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1px;
}
.logo-words small {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
}
.nav-logo.active .logo-words small { color: var(--white); }
.nav-image-button { font-weight: 700; }
.nav-image-button strong {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.12;
  transition: transform 180ms ease;
}
.thai-menu strong {
  font-family: Kanit, "Noto Sans Thai", Tahoma, sans-serif;
  font-size: 17px;
  font-weight: 400;
}
.nav-image-button:not(.thai-menu):not(.english-menu) {
  gap: 9px;
}
.nav-image-button:not(.thai-menu):not(.english-menu) strong {
  font-family: "Nanum Myeongjo", "NanumMyeongjo", "AppleMyungjo", "Batang", serif;
  font-weight: 800;
}
.english-menu strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1;
}
.nav-icon {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: currentColor;
  transition: transform 180ms ease;
}
.bookmark-icon {
  width: 17px;
  height: 29px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 73%, 0 100%);
}
.bookmark-icon::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: -1px;
  height: 9px;
  background: currentColor;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.book-icon {
  width: 25px;
  height: 27px;
  border: 2px solid currentColor;
  border-radius: 3px;
  box-shadow: none;
}
.book-icon::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: currentColor;
  border: 0;
}
.book-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 6px;
  border-bottom: 2px solid currentColor;
}
.globe-icon {
  border: 2px solid currentColor;
  border-radius: 50%;
}
.globe-icon::before {
  content: "";
  position: absolute;
  inset: 4px 7px;
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
  border-radius: 50%;
}
.globe-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 11px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 -1px currentColor, 0 6px 0 -1px currentColor;
}
@media (hover: hover) and (pointer: fine) {
  .nav-logo:hover,
  .nav-image-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(8, 52, 94, 0.12);
  }
  .nav-logo:hover .nav-logo-mark,
  .nav-logo:hover .logo-words,
  .nav-image-button:hover .nav-icon,
  .nav-image-button:hover strong {
    transform: scale(1.035);
  }
}
.intro,
.confession-menu,
.reader,
.resource-section {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}
.intro { padding: 34px 0 18px; }
.hero-logo {
  width: min(220px, 58vw);
  height: auto;
  display: block;
  margin: 0 auto 14px;
}
.intro-copy {
  max-width: 760px;
  margin: 0 auto;
}
.share-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 20px;
}
.share-links a,
.share-links button {
  min-height: 38px;
  border: 1px solid rgba(8, 52, 94, 0.16);
  border-radius: 0;
  background: var(--white);
  color: var(--navy);
  padding: 7px 11px;
  font-family: "Nanum Myeongjo", "AppleMyungjo", "Batang", serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(8, 52, 94, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, border-color 160ms ease;
}
.share-links .share-facebook {
  font-family: Georgia, "Times New Roman", serif;
  color: #244a8f;
}
.share-links .share-line {
  font-family: Arial, "Noto Sans Thai", sans-serif;
  color: #147d38;
  font-weight: 800;
}
.share-links button.copied {
  border-color: rgba(201, 154, 49, 0.46);
  color: #936915;
}
@media (hover: hover) and (pointer: fine) {
  .share-links a:hover,
  .share-links button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(8, 52, 94, 0.13);
  }
}
.eyebrow,
.section-title p,
.reader-heading p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 860px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.18;
}
.lead {
  margin: 16px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}
.section-title h1,
.section-title h2,
.thai-first,
.reader-heading h2,
.background-panel h3,
.downloads h3,
.source-panel h3,
.text-reader h3,
.resource-item h3,
.policy-box h3,
.subhead {
  font-family: Kanit, Mitr, "Noto Sans Thai", Tahoma, sans-serif;
}
.thai-first {
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
}
.lead-ko,
.section-title small,
.ko-subtitle {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.lead-ko {
  margin: 8px 0 0;
  max-width: 760px;
}
.resource-intro-ko {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.recommend-site-card {
  display: grid;
  grid-template-columns: 1fr 74px;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  padding: 14px 14px 14px 16px;
  border-left: 3px solid #18b95a;
  background: #b9f79c;
  color: #11283f;
  box-shadow: 0 7px 18px rgba(8, 52, 94, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.recommend-site-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.recommend-site-copy strong {
  color: #10243c;
  font-family: Kanit, Mitr, "Noto Sans Thai", Tahoma, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}
.recommend-site-copy span {
  color: rgba(24, 36, 58, 0.62);
  font-family: Kanit, Mitr, "Noto Sans Thai", Tahoma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}
.recommend-site-copy small {
  color: rgba(24, 36, 58, 0.46);
  font-family: "Nanum Myeongjo", "AppleMyungjo", "Batang", serif;
  font-size: 11px;
  font-weight: 400;
}
.recommend-site-card img {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  object-fit: cover;
  justify-self: end;
}
@media (hover: hover) and (pointer: fine) {
  .recommend-site-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(8, 52, 94, 0.15);
  }
}
.confession-menu { padding: 18px 0 14px; }
.section-title { margin-bottom: 14px; }
.section-title h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
}
.ko-subtitle {
  margin: -6px 0 12px;
}
.download-heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.download-heading-row h3,
.download-heading-row .ko-subtitle {
  margin: 0;
}
.download-heading-row .ko-subtitle {
  font-size: 13px;
  font-weight: 500;
}
.confession-buttons,
.download-list,
.simple-grid,
.korean-list,
.link-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.confession-buttons button {
  min-height: 82px;
  border: 1px solid var(--line);
  border-left: 5px solid #165b89;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  padding: 13px 14px;
  font: inherit;
  cursor: pointer;
}
.confession-buttons button:nth-child(4),
.confession-buttons button:nth-child(5) { border-left-color: #2f6f65; }
.confession-buttons button:nth-child(6) { border-left-color: #7b3f4b; }
.confession-buttons button.active {
  border-color: var(--navy);
  border-left-color: var(--gold);
  box-shadow: 0 10px 24px rgba(8, 52, 94, 0.13);
}
.confession-buttons span,
.download-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 26px;
  margin-bottom: 7px;
  background: var(--soft);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}
.confession-buttons strong,
.download-list strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}
.confession-buttons small,
.download-list small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}
.reader { margin-top: 12px; padding-bottom: 32px; }
.reader-heading,
.background-panel,
.downloads,
.source-panel,
.text-reader,
.resource-section {
  border: 1px solid var(--line);
  background: var(--white);
}
.reader-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-bottom: 0;
}
.reader-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 27px;
  line-height: 1.25;
}
.reader-heading span {
  color: var(--muted);
  font-weight: 700;
}
.badge {
  align-self: flex-start;
  padding: 7px 10px;
  background: #e8f2ed;
  color: #255d43;
  font-size: 12px;
  font-weight: 800;
}
.badge.muted { background: #f2eee5; color: #80622a; }
.background-panel,
.downloads,
.source-panel,
.text-reader { padding: 18px 20px; border-top: 0; }
.background-panel h3,
.downloads h3,
.source-panel h3,
.text-reader h3,
.resource-item h3,
.policy-box h3,
.subhead {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
}
.subhead { margin-top: 18px; }
.background-panel p,
.source-panel p,
.resource-section p,
.policy-box p { margin: 0 0 12px; }
.download-list a,
.simple-grid span,
.resource-item,
.link-list a,
.policy-box {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 14px;
}
.download-list a { display: block; min-height: 76px; }
.source-panel details {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--soft);
}
.source-panel summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}
.text-reader {
  font-family: Thonburi, "Sarabun", "Noto Sans Thai", Tahoma, sans-serif;
}
.reader-body {
  max-width: 860px;
}
.text-reader p {
  margin: 0 0 1.7em;
  color: #1f2c40;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.08;
  white-space: normal;
  scroll-margin-top: 92px;
}
.text-reader .reader-section-title,
.text-reader .reader-preface-heading {
  margin: 2em 0 1em;
  padding-top: 1em;
  color: var(--navy);
  font-family: Kanit, Mitr, "Noto Sans Thai", Tahoma, sans-serif;
  line-height: 1.45;
  scroll-margin-top: 92px;
}
.text-reader .reader-section-major {
  border-top: 1px solid var(--line);
  font-size: 24px;
  font-weight: 500;
}
.text-reader .reader-section-minor,
.text-reader .reader-preface-heading {
  font-size: 21px;
  font-weight: 400;
}
.text-reader .reader-document-cover {
  margin: 0 0 2.2em;
  padding: 1.1em 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: Kanit, Mitr, "Noto Sans Thai", Tahoma, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.85;
  text-align: center;
  white-space: pre-line;
}
.text-reader .reader-question,
.text-reader .reader-question-number {
  margin: 2em 0 1em;
  color: var(--navy);
  font-family: Kanit, Mitr, "Noto Sans Thai", Tahoma, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.65;
}
.text-reader .reader-question-number {
  margin-bottom: 0.35em;
  color: var(--gold);
  font-size: 18px;
}
.text-reader .reader-answer {
  margin-top: 0;
}
.text-reader .reader-note {
  margin: 1.4em 0 1.9em;
  padding: 0.85em 1em;
  border-left: 3px solid rgba(201, 154, 49, 0.45);
  background: #fbf7ec;
  color: #344156;
  font-size: 16px;
  line-height: 1.9;
}
.text-reader .reader-proof {
  margin: 0 0 2.4em;
  color: #778397;
  font-family: Thonburi, "Sarabun", "Noto Sans Thai", Tahoma, sans-serif;
  font-size: 10px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0;
}
.notice { color: var(--muted); font-weight: 700; }
.resource-section {
  margin-top: 24px;
  padding: 20px;
}
.simple-grid,
.korean-list,
.link-list { margin-top: 14px; }
.simple-grid span {
  color: var(--navy);
  font-weight: 800;
}
.resource-item p,
.link-list span { color: var(--muted); }
.english-resource-page .lead {
  margin-top: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}
.english-resource-page .lead-ko,
.english-resource-page .ko-subtitle {
  color: #788397;
  font-family: "Nanum Myeongjo", "AppleMyungjo", "Batang", serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
}
.english-resource-page .link-list strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
}
.english-resource-page .link-list span {
  font-size: 14px;
  line-height: 1.5;
}
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}
.link-list a { display: grid; gap: 5px; }
.link-list strong { color: var(--navy); }
.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 20;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(8, 52, 94, 0.2);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(8, 52, 94, 0.22);
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
}
.reader-side-nav {
  position: fixed;
  left: 0;
  top: 170px;
  z-index: 21;
  transform: translateX(-246px);
  transition: transform 220ms ease;
}
.reader-side-nav.open {
  transform: translateX(0);
}
.reader-nav-tab {
  position: absolute;
  right: -42px;
  top: 0;
  width: 42px;
  height: 48px;
  border: 1px solid rgba(8, 52, 94, 0.18);
  border-left: 0;
  border-radius: 0;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(8, 52, 94, 0.2);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: grab;
  touch-action: none;
}
.reader-nav-tab span {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 0;
  background: currentColor;
}
.reader-nav-tab:active {
  cursor: grabbing;
}
.reader-nav-panel {
  width: 246px;
  max-height: min(62vh, 520px);
  overflow: auto;
  border: 1px solid rgba(8, 52, 94, 0.14);
  border-left: 0;
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(8, 52, 94, 0.18);
}
.reader-nav-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 0;
  text-align: left;
  cursor: pointer;
  position: sticky;
  top: 0;
  height: 48px;
  min-height: 48px;
  padding: 6px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--navy);
  color: var(--white);
  font-family: Kanit, Mitr, "Noto Sans Thai", Tahoma, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.reader-nav-heading small {
  display: inline;
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: 12px;
}
.reader-nav-links {
  display: grid;
  gap: 1px;
  padding: 8px;
}
.reader-nav-links a,
.reader-nav-links span {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--ink);
  font-family: Kanit, Mitr, "Noto Sans Thai", Tahoma, sans-serif;
  font-size: 14px;
  line-height: 1.35;
}
.reader-nav-links .toc-major {
  color: var(--navy);
  font-weight: 700;
}
.reader-nav-links .toc-minor {
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}
.reader-nav-links a:hover {
  background: var(--soft);
  color: var(--navy);
}
@media (min-width: 680px) {
  h1 { font-size: 46px; }
  .hero-logo { width: 250px; margin-left: 0; }
  .confession-buttons,
  .download-list,
  .simple-grid,
  .link-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reader-heading {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 980px) {
  .site-header { padding: 14px 28px; }
  .image-nav {
    min-height: 92px;
    grid-template-columns: 1.35fr 1fr 1fr 1.05fr;
  }
  .nav-logo,
  .nav-image-button {
    min-height: 90px;
    gap: 14px;
    padding: 12px 22px;
  }
  .nav-logo {
    justify-content: flex-start;
    padding-left: 28px;
  }
  .nav-logo-mark { width: 62px; height: 62px; }
  .logo-words { display: grid; }
  .logo-words strong { font-size: 31px; letter-spacing: 2px; }
  .logo-words small { font-size: 17px; letter-spacing: 6px; }
  .nav-icon { width: 54px; height: 54px; }
  .bookmark-icon {
    width: 38px;
    height: 62px;
    border-width: 5px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 73%, 0 100%);
  }
  .bookmark-icon::after {
    left: 7px;
    right: 7px;
    bottom: -1px;
    height: 19px;
  }
  .book-icon {
    width: 52px;
    height: 56px;
    border-width: 5px;
    box-shadow: none;
  }
  .book-icon::before {
    left: 13px;
    top: 0;
    bottom: 0;
    width: 5px;
    height: auto;
    border: 0;
  }
  .book-icon::after {
    left: 11px;
    right: 11px;
    bottom: 12px;
    border-bottom-width: 4px;
  }
  .globe-icon { border-width: 5px; }
  .globe-icon::before {
    inset: 8px 15px;
    border-left-width: 4px;
    border-right-width: 4px;
  }
  .globe-icon::after {
    left: 4px;
    right: 4px;
    top: 21px;
    height: 5px;
    box-shadow: 0 -13px 0 -1px currentColor, 0 13px 0 -1px currentColor;
  }
  .nav-image-button:not(.thai-menu):not(.english-menu) { gap: 20px; }
  .nav-image-button strong { font-size: 28px; font-weight: 800; }
  .thai-menu strong { font-size: 34px; font-weight: 400; }
  .english-menu strong { font-size: 27px; line-height: 0.94; }
  .intro {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: center;
    gap: 42px;
    padding-top: 54px;
  }
  .intro-copy {
    max-width: 680px;
    margin: 0;
  }
  .intro-copy .lead {
    margin-top: 0;
  }
  .intro .hero-logo {
    width: 300px;
    margin: 0;
  }
  .intro .share-links {
    justify-content: flex-start;
    margin: 18px 0 0;
  }
  .confession-buttons { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .download-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .reader-heading,
  .background-panel,
  .downloads,
  .source-panel,
  .text-reader,
  .resource-section {
    padding-left: 28px;
    padding-right: 28px;
  }
  .text-reader p { font-size: 19px; }
}
