.post-header {
  margin-bottom: 34px;
}

.post-utility-row,
.post-reading-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.post-utility-row {
  margin-bottom: 22px;
}

.post-translations {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.post-translations-label {
  margin-right: 2px;
  color: rgba(169, 179, 199, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.post-translation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-target);
  padding: 6px 11px;
  border: 1px solid rgba(139, 216, 255, 0.22);
  border-radius: 999px;
  font-family: var(--font-symbol), var(--font-body), system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.post-translation-button.is-available {
  background: rgba(139, 216, 255, 0.1);
  color: #dff5ff;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.post .post-translation-button.is-available:hover,
.post .post-translation-button.is-available:focus-visible {
  border-color: rgba(139, 216, 255, 0.64);
  background: rgba(139, 216, 255, 0.18);
  color: #dff5ff;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  outline: none;
  animation: none;
  transform: translateY(-1px);
}

.post-translation-button.is-unavailable {
  border-style: dashed;
  color: rgba(169, 179, 199, 0.48);
  cursor: not-allowed;
  user-select: none;
}

.post-toc-mount {
  margin: 18px 0 14px;
}

.post-reading-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.post-reading-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-reading-progress-start),
    var(--color-reading-progress-middle) 62%,
    var(--color-reading-progress-end)
  );
  box-shadow: 0 0 18px var(--color-reading-progress-glow);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.post-reading-meta {
  display: flex;
  align-items: center;
  min-height: 24px;
  margin: 0;
}

.post-reading-stats {
  margin-top: 18px;
}

.post .post-subtitle {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display), var(--font-body), system-ui, sans-serif;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.65;
}

.post-reading-time {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 9px;
  border: 1px solid rgba(139, 216, 255, 0.19);
  border-radius: 999px;
  background: rgba(139, 216, 255, 0.07);
  color: rgba(218, 242, 255, 0.84);
  font-family: var(--font-symbol), var(--font-body), system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.post-thesis {
  position: relative;
  margin: 0;
  padding: 18px 20px 18px 23px;
  border: 1px solid rgba(215, 184, 255, 0.25);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(215, 184, 255, 0.1), rgba(139, 216, 255, 0.055));
  overflow: hidden;
}

.post-thesis::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  content: "";
}

.post .post-thesis-label {
  margin: 0 0 5px;
  color: var(--accent2);
  font-family: var(--font-symbol), var(--font-body), system-ui, sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.14em;
}

.post .post-thesis > p:last-child {
  margin: 0;
  color: rgba(240, 245, 255, 0.9);
  font-size: 0.91rem;
  line-height: 1.75;
}

.post-toc {
  border: 1px solid rgba(139, 216, 255, 0.18);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139, 216, 255, 0.07), rgba(215, 184, 255, 0.045));
  overflow: hidden;
}

.post-toc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 11px 15px;
  color: #eaf5ff;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.post-toc summary::-webkit-details-marker {
  display: none;
}

.post-toc summary::before {
  content: "≡";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1rem;
}

.post-toc summary span {
  flex: 1;
}

.post-toc summary small {
  color: rgba(169, 179, 199, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
}

.post-toc[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.post-toc ol {
  margin: 0;
  padding: 9px 10px 11px;
  list-style: none;
}

.post-toc li + li {
  margin-top: 2px;
}

.post-toc .toc-level-3 {
  padding-left: 18px;
}

.post-toc .toc-level-4 { padding-left: 27px; }
.post-toc .toc-level-5 { padding-left: 36px; }
.post-toc .toc-level-6 { padding-left: 45px; }
.post-toc .toc-level-7 { padding-left: 54px; }
.post-toc .toc-level-8 { padding-left: 63px; }
.post-toc a { overflow-wrap: anywhere; }

.post .post-toc a {
  display: block;
  padding: 7px 10px;
  border-left: 2px solid transparent;
  border-radius: 0 10px 10px 0;
  color: rgba(217, 226, 242, 0.72);
  font-size: 0.76rem;
  line-height: 1.5;
  text-decoration: none;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.post .post-toc a:hover,
.post .post-toc a:focus-visible,
.post .post-toc a.is-active {
  border-left-color: var(--accent);
  background: rgba(139, 216, 255, 0.09);
  color: #eff9ff;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  outline: none;
  animation: none;
}

.post-content-heading {
  scroll-margin-top: 110px;
}

.post-heading-link {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-left: 8px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(139, 216, 255, 0.36);
  font: inherit;
  font-size: 0.78em;
  line-height: 1;
  vertical-align: 0.08em;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.16s ease, color 0.16s ease, background 0.16s ease;
}

.post-content-heading:hover .post-heading-link,
.post-heading-link:focus-visible {
  opacity: 1;
}

.post-heading-link:hover,
.post-heading-link:focus-visible {
  background: rgba(139, 216, 255, 0.1);
  color: var(--accent);
  outline: none;
}

.post-series {
  margin-top: 56px;
  padding: 21px;
  border: 1px solid rgba(215, 184, 255, 0.22);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(215, 184, 255, 0.09), rgba(139, 216, 255, 0.045));
}

.post-series-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.post .post-series-kicker {
  margin: 0 0 5px;
  color: var(--accent2);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.16em;
}

.post-series h2 {
  margin: 0;
  color: #f4efff;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  letter-spacing: -0.035em;
}

.post-series-progress {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(215, 184, 255, 0.11);
  color: rgba(232, 216, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 800;
}

.post-series-list {
  margin-top: 15px;
}

.post-series-list summary {
  width: fit-content;
  color: rgba(217, 226, 242, 0.68);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.post-series-list ol {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.post-series-list li > a,
.post-series-list li > span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(229, 235, 246, 0.82);
  text-decoration: none;
}

.post-series-list small {
  color: rgba(215, 184, 255, 0.75);
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.post-series-list strong {
  min-width: 0;
  color: inherit;
  font-size: 0.81rem;
  line-height: 1.45;
}

.post-series-list em {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(139, 216, 255, 0.13);
  color: var(--accent);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.post-series-list li.is-current > span {
  border-color: rgba(139, 216, 255, 0.34);
  background: rgba(139, 216, 255, 0.08);
}

.post .post-series-list a:hover,
.post .post-series-list a:focus-visible {
  border-color: rgba(215, 184, 255, 0.48);
  background: rgba(215, 184, 255, 0.1);
  color: #fff;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  outline: none;
  animation: none;
}

.post-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.post-continuation {
  margin-top: 38px;
  padding: 22px;
  border: 1px solid rgba(139, 216, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.post-continuation-header p {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.post-continuation-header h2 {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
}

.post-navigation-link {
  display: flex;
  flex-direction: column;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(139, 216, 255, 0.16);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(232, 238, 248, 0.84);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.post-navigation-next {
  text-align: right;
}

.post-navigation-direction {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.post-navigation-link strong {
  margin-top: 9px;
  color: #f3f7fd;
  font-size: 0.9rem;
  line-height: 1.5;
}

.post-navigation-link time {
  margin-top: auto;
  padding-top: 10px;
  color: rgba(169, 179, 199, 0.6);
  font-size: 0.67rem;
}

.post .post-navigation-link:hover,
.post .post-navigation-link:focus-visible {
  border-color: rgba(139, 216, 255, 0.48);
  background: linear-gradient(135deg, rgba(139, 216, 255, 0.11), rgba(215, 184, 255, 0.07));
  color: #fff;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  outline: none;
  animation: none;
  transform: translateY(-2px);
}

.post-navigation-link.is-empty {
  visibility: hidden;
}

.post-actions-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 9px;
  margin: 50px 0 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.post-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: var(--tap-target);
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(237, 244, 253, 0.82);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.post-action-icon {
  font-family: var(--font-symbol), system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.post-share-trigger {
  border-color: rgba(215, 184, 255, 0.3);
  background: linear-gradient(135deg, rgba(139, 216, 255, 0.12), rgba(215, 184, 255, 0.11));
  color: #edf7ff;
}

.post-print-button {
  border-color: rgba(139, 216, 255, 0.22);
}

.post .post-action-button:hover,
.post .post-action-button:focus-visible {
  border-color: rgba(139, 216, 255, 0.58);
  background: rgba(139, 216, 255, 0.13);
  color: #fff;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  outline: none;
  animation: none;
  transform: translateY(-1px);
}

.post-share-dialog {
  width: min(560px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 28px));
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(12, 17, 29, 0.94);
  color: var(--text);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.62);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
}

.post-share-dialog::backdrop {
  background: rgba(3, 5, 10, 0.72);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.post-share-dialog-panel {
  padding: 24px;
}

.post-share-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.post .post-share-kicker {
  margin: 0 0 5px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.16em;
}

.post-share-dialog h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.post-share-close {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(244, 247, 251, 0.78);
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.post-share-close:hover,
.post-share-close:focus-visible {
  border-color: rgba(139, 216, 255, 0.55);
  color: #fff;
  outline: none;
}

.post-share-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.post-share-service {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: #eaf0fa;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.post-share-service:hover,
.post-share-service:focus-visible {
  border-color: var(--share-accent, rgba(139, 216, 255, 0.55));
  background: rgba(255, 255, 255, 0.09);
  outline: none;
  transform: translateY(-1px);
}

.share-service-mark {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--share-accent, rgba(139, 216, 255, 0.22));
  color: var(--share-mark, #fff);
  font-family: var(--font-symbol), system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
}

.share-kakao { --share-accent: #fee500; --share-mark: #191919; }
.share-telegram { --share-accent: #2aabee; }
.share-line { --share-accent: #06c755; }
.share-x { --share-accent: #b9c2d0; --share-mark: #10131a; }
.share-threads { --share-accent: #d7b8ff; --share-mark: #15101b; }
.share-facebook { --share-accent: #1877f2; }
.share-copy { --share-accent: #8bd8ff; --share-mark: #07101f; }

.post .post-share-status {
  min-height: 1.45em;
  margin: 14px 2px 0;
  color: rgba(217, 226, 242, 0.72);
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: center;
}

.post-quote-card {
  margin: 2.35em 0;
}

.post .post-quote-card blockquote {
  position: relative;
  margin: 0;
  padding: 23px 26px 23px 29px;
  border: 1px solid rgba(215, 184, 255, 0.25);
  border-left: 4px solid var(--accent2);
  border-radius: 0 20px 20px 0;
  background: linear-gradient(135deg, rgba(215, 184, 255, 0.1), rgba(139, 216, 255, 0.055));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
}

.post .post-quote-card blockquote::before {
  position: absolute;
  top: 8px;
  right: 19px;
  color: rgba(215, 184, 255, 0.32);
  font-family: var(--font-quote);
  font-size: 4.1rem;
  line-height: 1;
  content: "“";
}

.post .post-quote-card blockquote p {
  position: relative;
  margin: 0;
  color: rgba(246, 243, 255, 0.93);
  font-family: var(--font-quote);
  font-size: clamp(1.06rem, 1.65vw, 1.22rem);
  font-weight: 400;
  line-height: 1.85;
}

.post .post-quote-card blockquote p + p {
  margin-top: 1em;
}

.quote-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 46px;
  padding: 10px 4px 0;
}

.quote-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(139, 216, 255, 0.27);
  border-radius: 999px;
  background: rgba(139, 216, 255, 0.08);
  color: #dff5ff;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.quote-card-button:hover,
.quote-card-button:focus-visible {
  border-color: rgba(139, 216, 255, 0.68);
  background: rgba(139, 216, 255, 0.16);
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.quote-card-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.quote-card-status {
  min-height: 1.45em;
  color: rgba(199, 211, 230, 0.75);
  font-family: var(--font-symbol), var(--font-body), system-ui, sans-serif;
  font-size: 0.7rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .post .footnotes {
    scroll-margin-top: 150px;
  }

  .post-quote-card {
    margin: 2em 0;
  }

  .post-translations {
    margin-bottom: 0;
  }

  .post-content-heading {
    scroll-margin-top: 150px;
  }

  .post-heading-link {
    opacity: 0.7;
  }

  .post-series {
    margin-top: 44px;
    padding: 18px;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .post-continuation {
    padding: 18px;
  }

  .post-navigation-link.is-empty {
    display: none;
  }

  .post-actions-bar {
    margin-top: 42px;
  }

  .post-share-dialog-panel {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .post-reading-meta {
    margin-bottom: 0;
  }

  .post-thesis {
    padding: 16px 16px 16px 19px;
    border-radius: 16px;
  }

  .post .footnotes {
    margin-top: 44px;
    padding: 18px;
    border-radius: 18px;
  }

  .post .post-endnotes-help {
    font-size: 0.72rem;
  }

  .post .post-quote-card blockquote {
    padding: 20px 18px 20px 21px;
    border-radius: 0 17px 17px 0;
  }

  .post .post-quote-card blockquote::before {
    top: 4px;
    right: 12px;
    font-size: 3.4rem;
  }

  .quote-card-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .quote-card-button {
    min-height: 40px;
  }

  .post-translations-label {
    display: none;
  }

  .post-toc-mount {
    margin: 14px 0 12px;
  }

  .post-toc summary {
    min-height: 45px;
  }

  .post-series-heading {
    gap: 10px;
  }

  .post-series-list li > a,
  .post-series-list li > span {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .post-series-list em {
    grid-column: 2;
    width: fit-content;
  }

  .post-navigation-link {
    min-height: 106px;
  }

  .post-actions-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .post-utility-row,
  .post-reading-stats {
    gap: 8px;
  }

  .post-action-button {
    min-width: 0;
    padding: 9px 7px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .post-share-grid {
    grid-template-columns: 1fr;
  }

  .post-share-dialog {
    width: calc(100vw - 20px);
    border-radius: 22px;
  }

  .post-share-dialog-panel {
    padding: 18px;
  }
}

@media print {
  @page {
    margin: 18mm;
  }

  :root {
    color-scheme: light;
  }

  body {
    background: #fff !important;
    color: #111 !important;
    overflow: visible !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body::before,
  .aurora,
  .skip-link,
  .post-reading-progress,
  .sidebar,
  .hero,
  .post-category-eyebrow,
  .post-translations,
  .post-view-counter,
  .post-reading-meta,
  .post-toc-mount,
  .post-series,
  .post-continuation,
  .post-navigation,
  .post-actions-bar,
  .post-comments,
  .quote-card-actions,
  .post-heading-link {
    display: none !important;
  }

  .shell {
    display: block !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .content {
    width: 100% !important;
  }

  .post {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .post h1,
  .post h2,
  .post h3,
  .post p,
  .post li,
  .post strong,
  .post-footer,
  .post-footer p {
    color: #111 !important;
  }

  .post h1 {
    font-size: 24pt !important;
  }

  .post h2,
  .post h3 {
    break-after: avoid-page;
  }

  .post p,
  .post li {
    font-size: 11pt !important;
    line-height: 1.75 !important;
    orphans: 3;
    widows: 3;
  }

  .post a {
    background: none !important;
    color: #111 !important;
    text-decoration: underline !important;
    animation: none !important;
  }

  .post img,
  .post-image {
    max-height: none !important;
    break-inside: avoid-page;
    box-shadow: none !important;
  }

  .post-footer {
    margin-top: 28pt !important;
    border-top: 1px solid #aaa !important;
  }

  .post .footnotes {
    padding: 0 !important;
    border: 0 !important;
    border-top: 1px solid #aaa !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
}
