/* Journal — shared design layer, independent of the legacy LESS build. */
:root {
  --paper:#f8f7f3;
  --ink:#262824;
  --muted:#73756e;
  --line:#dedfd5;
  --accent:#bd4d2d;
  --soft:#eeeee7;
  --sans:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
  --mono:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:100px;
}

body {
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
}

a {
  color:inherit;
  transition:color .18s,background .18s;
}

a:hover,a:focus {
  color:var(--accent);
  text-decoration:none;
}

::selection {
  background:#ebccbb;
  color:#252724;
}

a:focus-visible,button:focus-visible {
  outline:2px solid var(--accent);
  outline-offset:5px;
}

h1,h2,h3,h4,h5,h6 {
  font-family:var(--sans);
}

.skip-link {
  position:fixed;
  top:-100px;
  left:20px;
  background:var(--ink);
  color:#fff;
  padding:8px 18px;
  z-index:1100;
}

.skip-link:focus {
  top:10px;
  color:white;
}

.site-nav {
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(248,247,243,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}

.nav-inner {
  max-width:1180px;
  margin:auto;
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 30px;
}

.brand {
  display:flex;
  gap:13px;
  align-items:center;
  font-size:21px;
  font-weight:700;
  letter-spacing:-.6px;
}

.brand-symbol {
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--ink);
  color:var(--paper);
  height:35px;
  width:35px;
  font-family:Georgia,serif;
  font-size:31px;
  line-height:1;
  border-radius:7px;
  padding-bottom:4px;
}

.brand-symbol span {
  color:#e98660;
}

.brand-note {
  font-size:12px;
  color:var(--muted);
  font-weight:400;
  letter-spacing:1px;
  margin-left:8px;
}

.site-menu {
  display:flex;
  align-items:center;
  gap:34px;
}

.site-menu>a {
  font-size:13px;
  font-weight:500;
  position:relative;
}

.site-menu>a[aria-current=page] {
  color:var(--accent);
}

.site-menu>a[aria-current=page]:after {
  content:"";
  position:absolute;
  bottom:-14px;
  left:50%;
  width:4px;
  height:4px;
  background:var(--accent);
  border-radius:50%;
}

.site-menu .nav-github {
  border-left:1px solid var(--line);
  padding-left:28px;
}

.nav-github span {
  margin-left:10px;
}

.menu-toggle {
  display:none;
}

.home-hero {
  max-width:1120px;
  margin:0 auto;
  padding:75px 0 0;
  display:grid;
  grid-template-columns:1.15fr 1fr;
  column-gap:35px;
}

.eyebrow {
  display:flex;
  align-items:center;
  gap:9px;
  font:10px var(--mono);
  letter-spacing:2.1px;
  margin:0 0 28px;
  color:#62645b;
}

.status-dot {
  height:6px;
  width:6px;
  border-radius:50%;
  background:var(--accent);
}

.home-hero h1 {
  font-size:54px;
  font-weight:650;
  line-height:1.4;
  letter-spacing:-2px;
  margin:0 0 23px;
}

.accent-word {
  color:var(--accent);
}

.hero-description {
  font-size:14px;
  line-height:2;
  color:var(--muted);
  margin:0 0 23px;
}

.hero-link {
  font-size:13px;
  font-weight:600;
  display:inline-flex;
  gap:36px;
  align-items:center;
  border-bottom:1px solid var(--ink);
  padding-bottom:6px;
}

.hero-link span {
  font-size:23px;
  line-height:1;
}

.hero-bottom {
  grid-column:1/-1;
  margin-top:55px;
  padding:19px 0;
  display:flex;
  justify-content:space-between;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  color:var(--muted);
  font-size:11px;
  letter-spacing:1px;
}

.hero-bottom>span+span {
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:1.5px;
}

.hero-bottom i {
  font-style:normal;
  color:#b1b2a8;
  margin:0 13px;
}

.hero-art {
  position:relative;
  align-self:center;
  height:312px;
  overflow:hidden;
}

.art-grid {
  position:absolute;
  inset:0;
  background-image:radial-gradient(#b3b4a4 .8px,transparent .8px);
  background-size:18px 18px;
  mask-image:radial-gradient(ellipse,#000 35%,transparent 72%);
}

.orbit {
  position:absolute;
  border:1px solid #cfd0bf;
  border-radius:50%;
  width:270px;
  height:270px;
  left:105px;
  top:14px;
  transform:rotate(-30deg) scaleX(1.25);
}

.orbit-two {
  transform:rotate(40deg) scaleX(.7);
  border-color:#d7ac94;
}

.code-sheet {
  position:absolute;
  left:53px;
  top:44px;
  width:340px;
  background:#eeeee5;
  border:1px solid #d7d8c8;
  transform:rotate(-5deg);
  border-radius:8px;
  box-shadow:12px 17px 0 rgba(207,207,187,.23);
  overflow:hidden;
}

.sheet-top {
  height:36px;
  border-bottom:1px solid #d7d8c8;
  display:flex;
  gap:5px;
  align-items:center;
  padding:0 14px;
}

.sheet-top>span {
  width:6px;
  height:6px;
  border-radius:50%;
  background:#b6b8a8;
}

.sheet-top>span:first-child {
  background:#ce7956;
}

.sheet-top small {
  margin-left:auto;
  font:9px var(--mono);
  color:#737766;
}

.sheet-code {
  font:13px/1.85 var(--mono);
  color:#505746;
  padding:17px 23px 10px;
}

.code-comment {
  font-size:10px;
  color:#7b816e;
}

.code-orange,.code-cursor {
  color:var(--accent);
}

.art-label {
  position:absolute;
  bottom:3px;
  right:36px;
  font:8px var(--mono);
  letter-spacing:2px;
  color:#878b7b;
}

.art-plus {
  position:absolute;
  right:24px;
  top:27px;
  font:36px var(--mono);
  color:var(--accent);
}

.home-content {
  max-width:1120px;
  margin:50px auto 90px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 280px;
  gap:65px;
}

.section-heading,.sidebar-heading {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.section-heading {
  padding-bottom:8px;
  margin:0;
}

.section-heading h2 {
  font-size:19px;
  margin:0;
  font-weight:600;
}

.section-heading h2 span {
  font:10px var(--mono);
  color:#85877f;
  margin-left:9px;
  letter-spacing:1px;
}

.article-count {
  font-size:11px;
  color:var(--muted);
}

.journal-entry {
  padding:30px 0 28px;
  border-bottom:1px solid var(--line);
}

.entry-meta {
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--muted);
  font:10px var(--mono);
  letter-spacing:.5px;
}

.entry-meta>a {
  color:var(--accent);
}

.meta-line {
  height:1px;
  width:17px;
  background:#c0c1b7;
}

.entry-link {
  display:block;
}

.entry-link h3 {
  position:relative;
  font-size:23px;
  font-weight:600;
  line-height:1.55;
  letter-spacing:-.4px;
  margin:13px 0 12px;
  padding-right:35px;
}

.entry-arrow {
  position:absolute;
  right:3px;
  top:0;
  font-size:23px;
  font-weight:400;
  color:#a7a99e;
}

.entry-link:hover .entry-arrow {
  color:var(--accent);
}

.entry-excerpt {
  color:var(--muted);
  font-size:13px;
  line-height:1.95;
  margin:0;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  overflow-wrap:anywhere;
}

.entry-subtitle {
  color:var(--muted);
  font-size:15px;
}

.entry-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:20px;
  gap:15px;
}

.entry-tags {
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}

.entry-tags a {
  background:var(--soft);
  border-radius:3px;
  color:#74766b;
  font-size:10px;
  padding:1px 8px;
  overflow-wrap:anywhere;
}

.entry-tags a:hover {
  color:var(--accent);
  background:#f1e4db;
}

.read-link {
  font-size:11px;
  white-space:nowrap;
  color:#74766b;
}

.read-link span {
  padding-left:7px;
}

.journal-pagination {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:30px 0;
  font-size:12px;
}

.journal-pagination>span {
  color:var(--muted);
}

.author-card {
  background:#edeee5;
  border:1px solid #dedfd2;
  padding:23px;
  border-radius:5px;
}

.author-heading {
  display:flex;
  align-items:center;
  gap:12px;
}

.author-heading img {
  width:45px;
  height:45px;
  object-fit:cover;
  border-radius:50%;
  filter:saturate(.65);
}

.author-heading h2 {
  font-size:13px;
  font-weight:600;
  margin:0 0 3px;
}

.author-heading h2 span {
  color:var(--accent);
}

.author-role {
  font-size:10px;
  color:var(--muted);
}

.author-card p {
  font-size:13px;
  line-height:1.9;
  color:#6e7362;
  margin:22px 0 17px;
}

.author-card>a {
  font-size:11px;
  display:flex;
  justify-content:space-between;
}

.sidebar-heading {
  margin:35px 0 14px;
}

.sidebar-heading h2 {
  font-size:14px;
  margin:0;
}

.sidebar-heading>span {
  font:9px var(--mono);
  color:var(--muted);
  letter-spacing:1px;
}

.topic-list a {
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:9px 0;
  border-bottom:1px solid #e7e7df;
  font-size:12px;
}

.topic-count {
  color:var(--muted);
  font:10px var(--mono);
  align-self:center;
  white-space:nowrap;
}

.topic-count i {
  font-style:normal;
  color:#989d8c;
  margin-left:12px;
}

.sidebar-note {
  margin:30px 0;
  border-top:1px solid var(--line);
  padding-top:28px;
}

.sidebar-note>span {
  font-size:27px;
  color:var(--accent);
}

.sidebar-note p {
  font-size:12px;
  color:var(--muted);
  margin:10px 0 3px;
}

.sidebar-note small {
  font:9px var(--mono);
  letter-spacing:2px;
  color:#96998c;
}

/* Article and archive pages share the same quiet reading surface. */
.intro-header {
  background:var(--soft)!important;
  margin:0 0 50px;
  border-bottom:1px solid var(--line);
}

.intro-header .header-mask {
  display:none;
}

.intro-header .site-heading,.intro-header .post-heading {
  padding:65px 0 55px;
  color:var(--ink);
}

.intro-header .site-heading h1 {
  font-size:44px;
}

.intro-header .site-heading .subheading {
  color:var(--muted);
  font-size:16px;
  margin-top:20px;
}

.intro-header .post-heading h1 {
  font-size:38px;
  line-height:1.5;
  letter-spacing:-1px;
}

.intro-header .post-heading .subheading {
  font-size:20px;
  color:var(--muted);
}

.intro-header .post-heading .meta {
  font:12px/1.9 var(--mono);
  color:var(--muted);
}

.intro-header .tags a {
  color:var(--accent);
  border-color:#d4c4b5;
  background:transparent;
  font-size:11px;
}

.intro-header .tags a:hover {
  background:#e7d9cc;
}

.post-container {
  font-size:16px;
  line-height:1.95;
  color:#363a33;
  overflow-wrap:break-word;
}

.post-container h1 {
  font-size:29px;
}

.post-container h2 {
  font-size:25px;
}

.post-container h3 {
  font-size:21px;
}

.post-container h1,.post-container h2,.post-container h3 {
  margin-top:2em;
  line-height:1.6;
  scroll-margin-top:100px;
}

.post-container p {
  margin:22px 0;
}

.post-container a {
  color:var(--accent);
}

.post-container blockquote {
  border-left:3px solid #c88b6f;
  background:#eeeee6;
  padding:12px 22px;
  color:#69715d;
  font-style:normal;
  font-size:15px;
}

.post-container blockquote p {
  margin:4px 0;
}

.post-container img {
  border-radius:5px;
  margin:28px auto;
  max-width:100%;
  height:auto;
}

.post-container code {
  font-family:var(--mono);
  font-size:.84em;
  color:#a3462b;
  background:#f0e9df;
  border-radius:3px;
  padding:3px 5px;
}

.post-container pre {
  background:#efefe7;
  border:1px solid #dcded1;
  border-radius:7px;
  padding:20px 23px;
  font-size:13px;
  line-height:1.8;
  overflow:auto;
}

.post-container pre code {
  color:#414a38;
  background:transparent;
  padding:0;
  white-space:pre;
  word-break:normal;
}

.post-container div.highlight {
  background:transparent;
}

.post-container table {
  font-size:14px;
}

.post-container .table>thead>tr>th {
  background:var(--soft);
  border-bottom:1px solid #c9ccbd;
}

.post-container .table td,.post-container .table th {
  padding:12px;
}

.side-catalog {
  padding:12px 16px;
  border-left:1px solid var(--line);
  font-size:12px;
}

.side-catalog .catalog-body .active a {
  color:var(--accent);
}

.side-catalog.fixed {
  top:110px;
}

.sidebar-container h5 {
  letter-spacing:1px;
  font-size:12px;
  color:#717568;
}

.sidebar-container .tags a,#tag_cloud a {
  color:#626a57!important;
  background:var(--soft);
  border:1px solid #d8dccd;
  border-radius:4px;
  padding:4px 10px;
  margin:0 5px 7px 0;
  font-size:12px;
}

.sidebar-container .short-about img {
  max-width:130px;
  border-radius:8px;
}

.pager li>a {
  border:1px solid var(--line);
  border-radius:5px;
  background:transparent;
  color:#515948;
  font-size:12px;
  padding:15px 20px;
  line-height:1.7;
}

.pager li>a:hover {
  background:var(--soft);
  color:var(--accent);
  border-color:#bfc3b2;
}

.post-preview>.post-meta {
  font-family:var(--mono);
  font-size:12px;
  font-style:normal;
}

.post-preview>a>.post-title {
  font-size:23px;
  line-height:1.6;
}

.post-preview>a>.post-subtitle {
  font-size:16px;
  line-height:1.8;
  color:var(--muted);
}

.one-tag-list .post-preview>.post-title {
  font-size:20px;
}

.listing-seperator {
  color:var(--accent);
  scroll-margin-top:110px;
}

#tag_cloud {
  margin-bottom:45px;
}

hr {
  border-color:var(--line);
}

.journal-footer {
  padding:0;
  border-top:1px solid var(--line);
  margin-top:65px;
}

.footer-inner {
  max-width:1120px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:25px;
  padding:30px 0;
  color:var(--muted);
  font-size:10px;
}

.footer-brand {
  font-size:20px;
  font-weight:700;
  letter-spacing:-.6px;
  color:var(--ink);
}

.footer-brand span {
  color:var(--accent);
}

.footer-inner p {
  margin:0;
  font-size:11px;
}

.footer-inner>span {
  margin-left:auto;
}

.footer-inner>a:last-child {
  font-family:var(--mono);
}

@media(min-width:1200px) {
  .post-container {
    max-width:780px;
  }
  .postlist-container {
    padding-right:45px;
  }
}

@media(max-width:1199px) {
  .home-hero,.home-content,.footer-inner {
    margin-left:40px;
    margin-right:40px;
  }
  .home-content {
    gap:40px;
    grid-template-columns:minmax(0,1fr) 250px;
  }
  .home-hero h1 {
    font-size:47px;
  }
  .code-sheet {
    left:25px;
    width:310px;
  }
  .orbit {
    left:50px;
  }
  .hero-art {
    height:310px;
  }
  .nav-inner {
    padding:0 40px;
  }
}

@media(max-width:900px) {
  .home-hero {
    grid-template-columns:1.2fr 1fr;
    gap:10px;
    padding-top:55px;
  }
  .home-hero h1 {
    font-size:40px;
  }
  .hero-art {
    transform:scale(.85);
    transform-origin:center right;
    margin-left:-45px;
  }
  .home-content {
    grid-template-columns:minmax(0,1fr) 230px;
    gap:28px;
  }
  .author-card {
    padding:17px;
  }
  .author-heading {
    gap:8px;
  }
  .author-heading h2 {
    font-size:12px;
  }
  .brand-note {
    display:none;
  }
  .entry-link h3 {
    font-size:21px;
  }
  .footer-inner {
    flex-wrap:wrap;
    gap:12px 20px;
  }
  .footer-inner>span {
    margin-left:0;
  }
  .hero-bottom>span+span {
    font-size:8px;
    letter-spacing:.5px;
  }
}

@media(max-width:700px) {
  .nav-inner {
    min-height:70px;
    padding:0 22px;
  }
  .brand {
    font-size:19px;
  }
  .brand-symbol {
    height:31px;
    width:31px;
    font-size:27px;
  }
  .menu-toggle {
    display:flex;
    gap:12px;
    align-items:center;
    border:1px solid var(--line);
    border-radius:4px;
    background:transparent;
    padding:5px 10px;
    font-size:12px;
  }
  .site-menu {
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:70px;
    background:var(--paper);
    padding:16px 24px 22px;
    border-bottom:1px solid var(--line);
    box-shadow:0 8px 14px #26282408;
    gap:0;
  }
  .site-menu.is-open {
    display:flex;
    flex-direction:column;
    align-items:stretch;
  }
  .site-menu>a {
    padding:11px 0;
    font-size:14px;
  }
  .site-menu>a[aria-current=page]:after {
    display:none;
  }
  .site-menu .nav-github {
    padding:11px 0;
    border-left:0;
  }
  .home-hero,.home-content,.footer-inner {
    margin-left:24px;
    margin-right:24px;
  }
  .home-hero {
    display:block;
    padding-top:42px;
  }
  .eyebrow {
    font-size:9px;
    letter-spacing:1.5px;
    margin-bottom:22px;
  }
  .home-hero h1 {
    font-size:40px;
    letter-spacing:-1.5px;
    line-height:1.45;
    margin-bottom:18px;
  }
  .hero-description {
    font-size:13px;
  }
  .hero-link {
    font-size:12px;
  }
  .hero-art {
    display:none;
  }
  .hero-bottom {
    margin-top:32px;
    padding:14px 0;
    gap:10px;
  }
  .hero-bottom>span:first-child {
    font-size:10px;
    letter-spacing:0;
  }
  .hero-bottom>span+span {
    font-size:7px;
    letter-spacing:0;
  }
  .hero-bottom i {
    margin:0 3px;
  }
  .home-content {
    display:block;
    margin-top:30px;
    margin-bottom:45px;
  }
  .section-heading h2 {
    font-size:17px;
  }
  .section-heading h2 span {
    font-size:9px;
    margin-left:5px;
  }
  .article-count {
    font-size:10px;
  }
  .journal-entry {
    padding:25px 0;
  }
  .entry-link h3 {
    font-size:21px;
    padding-right:25px;
  }
  .entry-excerpt {
    font-size:13px;
  }
  .entry-bottom {
    align-items:flex-start;
    gap:9px;
  }
  .entry-tags {
    gap:4px;
  }
  .entry-tags a {
    font-size:9px;
    padding:2px 6px;
  }
  .read-link {
    font-size:10px;
    padding-top:2px;
  }
  .home-sidebar {
    margin-top:25px;
  }
  .author-card {
    padding:22px;
  }
  .author-heading h2 {
    font-size:15px;
  }
  .author-card p br {
    display:none;
  }
  .topic-list {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0 22px;
  }
  .topic-list a {
    font-size:11px;
  }
  .sidebar-note {
    display:none;
  }
  .intro-header {
    margin-bottom:30px;
  }
  .intro-header .site-heading,.intro-header .post-heading {
    padding:40px 8px 35px;
  }
  .intro-header .site-heading h1 {
    font-size:34px;
  }
  .intro-header .post-heading h1 {
    font-size:29px;
    letter-spacing:-.5px;
  }
  .intro-header .site-heading .subheading {
    font-size:14px;
  }
  .post-container {
    font-size:15px;
    padding-left:24px;
    padding-right:24px;
  }
  .post-container h1 {
    font-size:25px;
  }
  .post-container h2 {
    font-size:22px;
  }
  .post-container h3 {
    font-size:19px;
  }
  .post-container pre {
    font-size:12px;
    padding:16px;
  }
  .pager li>a {
    padding:12px;
    max-width:48%;
  }
  .journal-footer {
    margin-top:40px;
  }
  .footer-inner {
    padding:25px 0;
    gap:10px 20px;
  }
  .footer-inner>span {
    order:4;
    width:100%;
    font-size:9px;
  }
  .footer-inner>a:last-child {
    margin-left:auto;
  }
  .footer-inner p {
    font-size:10px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    transition:none!important;
    animation:none!important;
  }
}

.all-topics {
  display:block;
  margin-top:16px;
  font-size:11px;
  color:var(--accent);
}

article {
  overflow:visible;
}

.side-catalog {
  max-height:calc(100vh - 125px);
}

.side-catalog .catalog-body .active a {
  color:var(--accent)!important;
}

/* Code controls stay outside the scrollable text, so copying preserves the source. */
.code-block {
  margin: 28px 0;
  border: 1px solid #dcded1;
  border-radius: 7px;
  overflow: hidden;
  background: #efefe7;
}
.code-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 43px;
  padding: 7px 14px;
  border-bottom: 1px solid #dcded1;
  color: var(--muted);
  font: 11px/1.6 var(--mono);
}
.code-toolbar > span:first-child { text-transform: uppercase; letter-spacing: 1px; }
.copy-code, .comments-load {
  flex-shrink: 0;
  padding: 5px 12px;
  border: 1px solid #c7cbbb;
  border-radius: 4px;
  background: var(--paper);
  color: #505746;
  font: 12px/1.6 var(--sans);
  cursor: pointer;
}
.copy-code { margin-left: auto; }
.copy-code:hover, .comments-load:hover { border-color: var(--accent); color: var(--accent); }
.copy-code.is-copied { color: #47603a; border-color: #8b9e7d; }
.copy-code:disabled { opacity: .6; cursor: wait; }
.copy-status { margin-left: auto; font: 11px/1.5 var(--sans); }
.copy-status:empty { display: none; }
.post-container .code-block pre { margin: 0; border: 0; border-radius: 0; }
.copy-buffer { position: fixed; top: 0; left: -9999px; font-size: 16px; }
.article-comments { margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--line); }
.comments-heading { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.post-container .comments-heading h2 { margin: 0; font-size: 23px; }
.comments-heading > span { color: var(--muted); font: 10px var(--mono); letter-spacing: 1px; }
.post-container .comments-description { margin: 14px 0 24px; color: var(--muted); font-size: 13px; }
.comments-feedback { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.post-container .comments-status { margin: 0; font-size: 13px; color: var(--muted); }
.comments-mount .utterances { max-width: 100%; }
.post-container .comments-fallback { margin: 15px 0; font-size: 12px; }
.comments-load[hidden], .comments-status[hidden] { display: none; }
@media (max-width: 700px) {
  .code-toolbar { gap: 8px; padding: 6px 10px; flex-wrap: wrap; }
  .copy-status { max-width: 160px; }
  .post-container .comments-heading h2 { font-size: 21px; }
}
@media (max-width: 700px) {
  .post-container .pager { display: flex; justify-content: space-between; gap: 12px; }
  .post-container .pager li { width: calc(50% - 6px); }
  .post-container .pager li.next { margin-left: auto; }
  .post-container .pager li > a { float: none; display: block; width: 100%; max-width: none; }
}
