/*
Theme Name: Halyard
Description: A classic reference theme with a measured, workshop-like reading experience. Graphite lines and warm brass on an off-white paper ground.
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --bg: #f6f3ec;
  --surface: #fbf9f4;
  --fg: #26292e;
  --muted: #75705f;
  --border: #d6d0c2;
  --accent: #a67c2e;
  --clay: #b05c3a;
  --radius: 2px;
  --shadow: none;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: #8a6625;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  line-height: 1.3;
  color: var(--fg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--fg);
  color: var(--bg);
  padding: 8px 16px;
  text-decoration: none;
  font-size: 0.85rem;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
  color: var(--bg);
}

/* ============ Header ============ */

.site-header {
  background: var(--bg);
}

.header-top {
  border-bottom: 1px solid var(--fg);
}

.header-top-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px 24px 28px;
}

.site-title {
  margin: 0;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.6vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.site-title a {
  color: var(--fg);
  text-decoration: none;
}

.site-title a:hover {
  color: var(--accent);
}

.search-toggle {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  cursor: pointer;
  padding: 0;
}

.search-toggle:hover {
  border-color: var(--fg);
  color: var(--accent);
}

.header-search {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.header-search .search-form {
  max-width: 640px;
  margin: 0 auto;
}

.header-nav-row {
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  position: relative;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  cursor: pointer;
}

.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--fg);
  content: "";
}

.nav-toggle .bars {
  position: relative;
}

.nav-toggle .bars::before {
  position: absolute;
  top: -6px;
}

.nav-toggle .bars::after {
  position: absolute;
  top: 6px;
}

.site-nav .menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 30px;
  list-style: none;
  margin: 0;
  padding: 13px 0;
}

.site-nav .menu li {
  position: relative;
  margin: 0;
}

.site-nav .menu a {
  display: inline-block;
  padding: 6px 2px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
}

.site-nav .menu a:hover {
  color: var(--accent);
}

.site-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 90;
  text-align: left;
}

.site-nav .menu li:hover > .sub-menu,
.site-nav .menu li:focus-within > .sub-menu {
  display: block;
}

.site-nav .sub-menu a {
  display: block;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
}

.submenu-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 48px;
  background: none;
  border: 0;
  border-left: 1px solid var(--border);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.submenu-toggle .caret {
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--fg);
}

.menu-item-has-children.submenu-open > .submenu-toggle .caret {
  transform: rotate(180deg);
}

@media (min-width: 901px) {
  .site-nav .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    margin-left: 7px;
    vertical-align: 2px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
  }

  .site-nav.nav-open {
    display: block;
  }

  .site-nav .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 0 16px;
  }

  .site-nav .menu li {
    border-top: 1px solid var(--border);
  }

  .site-nav .menu li a {
    display: block;
    padding: 12px 52px 12px 2px;
  }

  .site-nav .sub-menu {
    position: static;
    transform: none;
    min-width: 0;
    border: 0;
    border-left: 1px solid var(--border);
    border-radius: 0;
    margin: 0 0 10px 10px;
    padding: 0 0 0 14px;
  }

  .site-nav .sub-menu a {
    padding: 8px 2px;
  }

  .site-nav .menu li:hover > .sub-menu,
  .site-nav .menu li:focus-within > .sub-menu {
    display: none;
  }

  .site-nav .menu-item-has-children.submenu-open > .sub-menu {
    display: block;
  }

  .submenu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .header-top-inner {
    padding: 26px 56px 22px;
  }

  .search-toggle {
    right: 0;
  }
}

/* ============ Search form ============ */

.search-form {
  display: flex;
  gap: 8px;
  margin: 0;
}

.search-label {
  flex: 1;
  display: block;
}

.search-field {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--fg);
  font: inherit;
  font-size: 0.95rem;
  padding: 10px 14px;
}

.search-field:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}

.search-submit {
  flex: none;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
}

.search-submit:hover {
  background: #8a6625;
  border-color: #8a6625;
}

/* ============ Layout ============ */

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  padding: 48px 0 56px;
}

@media (max-width: 960px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============ Home intro band ============ */

.intro-band {
  border-bottom: 1px solid var(--border);
  padding: 52px 0 44px;
  text-align: center;
}

.intro-lead {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.intro-search {
  max-width: 560px;
  margin: 0 auto;
}

/* ============ Hero post ============ */

.hero-post {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--fg);
}

.hero-meta {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-meta a {
  color: var(--muted);
  text-decoration: none;
}

.hero-meta a:hover {
  color: var(--accent);
}

.hero-title {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 4vw, 2.55rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.hero-title a {
  color: var(--fg);
  text-decoration: none;
}

.hero-title a:hover {
  color: var(--accent);
}

.hero-excerpt {
  max-width: 640px;
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-excerpt p {
  margin: 0;
}

.hero-foot {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-date {
  font-size: 0.85rem;
  color: var(--muted);
}

.read-more {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.read-more:hover {
  color: #8a6625;
  border-color: #8a6625;
}

/* ============ Post grid & cards ============ */

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 36px 0;
  counter-reset: card;
}

@media (max-width: 1000px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  counter-increment: card;
}

.post-card::before {
  content: counter(card, decimal-leading-zero);
  display: block;
  padding: 16px 22px 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px 22px 22px;
}

.card-meta {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-meta a {
  color: var(--muted);
  text-decoration: none;
}

.card-meta a:hover {
  color: var(--accent);
}

.card-title {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.4;
}

.card-title a {
  color: var(--fg);
  text-decoration: none;
}

.card-title a:hover {
  color: var(--accent);
}

.card-excerpt {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.card-excerpt p {
  margin: 0;
}

.card-date {
  margin: auto 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============ Sidebar ============ */

.side-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 26px;
}

.side-title {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-size: 1.02rem;
}

.side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  line-height: 1.5;
}

.side-list li:last-child {
  border-bottom: 0;
}

.side-list a {
  color: var(--fg);
  text-decoration: none;
}

.side-list a:hover {
  color: var(--accent);
}

.side-list .count,
.side-list li .post-count {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ============ Breadcrumb ============ */

.breadcrumb {
  margin: 0 0 22px;
  font-size: 0.84rem;
  color: var(--muted);
}

.breadcrumb .crumb {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb .crumb:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  margin: 0 8px;
  color: var(--accent);
}

.breadcrumb .trail {
  color: var(--fg);
}

/* ============ Single article ============ */

.single-article {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.entry-header {
  margin-bottom: 28px;
}

.entry-title {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3.4vw, 2.25rem);
  line-height: 1.28;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}

.entry-meta a {
  color: var(--muted);
  text-decoration: none;
}

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

.single-article .entry-content > p:first-of-type::first-letter {
  float: left;
  font-family: var(--serif);
  font-size: 3.1em;
  font-weight: 700;
  line-height: 0.85;
  padding: 5px 12px 0 0;
  color: var(--fg);
}

.article-note {
  margin: 0 0 32px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--clay);
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.65;
}

.article-note p:last-child {
  margin-bottom: 0;
}

.toc-box {
  margin: 0 0 36px;
  padding: 20px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.toc-title {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.toc-list {
  margin: 0;
  padding-left: 22px;
}

.toc-list li {
  padding: 4px 0;
  font-size: 0.95rem;
}

.toc-list li::marker {
  color: var(--accent);
}

.toc-list a {
  color: var(--fg);
  text-decoration: none;
}

.toc-list a:hover {
  color: var(--accent);
}

/* ============ Entry content ============ */

.entry-content {
  font-size: 1.05rem;
  line-height: 1.75;
}

.entry-content > p {
  margin: 0 0 1.4em;
}

.entry-content h2 {
  margin: 2em 0 0.75em;
  font-size: 1.5rem;
}

.entry-content h3 {
  margin: 1.8em 0 0.6em;
  font-size: 1.2rem;
}

.entry-content h4 {
  margin: 1.6em 0 0.5em;
  font-size: 1.05rem;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 1.4em;
  padding-left: 24px;
}

.entry-content li {
  margin-bottom: 6px;
}

.entry-content blockquote {
  margin: 0 0 1.4em;
  padding: 6px 0 6px 22px;
  border-left: 3px solid var(--border);
  color: var(--muted);
  font-style: italic;
}

.entry-content table {
  width: 100%;
  margin: 0 0 1.5em;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.entry-content th,
.entry-content td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}

.entry-content th {
  background: var(--surface);
  font-weight: 600;
}

.entry-content img {
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.entry-content figure {
  margin: 0 0 1.5em;
}

.entry-content figcaption {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.entry-content hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2.4em 0;
}

.entry-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1px 6px;
}

.entry-content pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  overflow-x: auto;
  margin: 0 0 1.4em;
}

.entry-content pre code {
  background: none;
  border: 0;
  padding: 0;
}

.page-links {
  margin: 0 0 1.4em;
  font-size: 0.9rem;
}

/* ============ Tags / author / related ============ */

.entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0;
}

.entry-tags a {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

.entry-tags a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.author-bio {
  margin: 0 0 40px;
  padding: 24px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.author-name {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.author-name a {
  color: var(--fg);
  text-decoration: none;
}

.author-name a:hover {
  color: var(--accent);
}

.author-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.related-posts {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.related-title {
  margin: 0;
  font-size: 1.3rem;
}

.related-posts .post-grid {
  padding-bottom: 0;
}

/* ============ Comments ============ */

.comments-area {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.comments-title {
  margin: 0 0 24px;
  font-size: 1.25rem;
}

.comment-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.comment-list .comment {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.comment-list .children {
  list-style: none;
  margin: 0;
  padding-left: 28px;
}

.comment-list .children .comment {
  border-bottom: 0;
  padding-bottom: 0;
}

.comment-body {
  display: flex;
  gap: 14px;
}

.comment-body .avatar {
  flex: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.comment-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.comment-meta .fn {
  font-weight: 600;
  color: var(--fg);
}

.comment-content p {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.reply {
  font-size: 0.8rem;
}

.comment-respond {
  margin-top: 32px;
}

.comment-reply-title {
  margin: 0 0 16px;
  font-size: 1.15rem;
}

.comment-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--fg);
  font: inherit;
  font-size: 0.95rem;
  padding: 10px 14px;
  margin-bottom: 16px;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}

.comment-form .submit {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
}

.comment-form .submit:hover {
  background: #8a6625;
  border-color: #8a6625;
}

.comments-closed {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ============ Archive / search / 404 ============ */

.archive-header {
  margin-bottom: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.archive-title {
  margin: 0 0 8px;
  font-size: 1.9rem;
}

.archive-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.archive-desc p {
  margin: 0;
}

.no-results {
  padding: 48px 0;
  color: var(--muted);
}

.error-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px 96px;
  text-align: center;
}

.error-code {
  margin: 0;
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--border);
}

.error-title {
  margin: 12px 0 28px;
  font-size: 1.7rem;
}

.error-search {
  max-width: 480px;
  margin: 0 auto 36px;
}

.error-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.error-links a {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
}

.error-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ============ Pagination ============ */

.pagination {
  padding: 8px 0 24px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pagination .page-numbers {
  display: inline-block;
  min-width: 38px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--fg);
}

.pagination .page-numbers:hover {
  border-color: var(--fg);
}

.pagination .page-numbers.current {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
}

.pagination .page-numbers.dots {
  border-color: transparent;
  color: var(--muted);
}

/* ============ Footer ============ */

.site-footer {
  border-top: 1px solid var(--fg);
  background: var(--bg);
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 52px 0 36px;
}

@media (max-width: 960px) {
  .footer-groups {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .footer-groups {
    grid-template-columns: 1fr;
  }
}

.footer-group {
  min-width: 0;
}

.footer-group-title {
  display: block;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-sub {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-item {
  padding: 4px 0;
}

.footer-item a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0 30px;
  text-align: center;
}

.copyright,
.footer-note {
  margin: 3px 0;
  color: var(--muted);
  font-size: 0.84rem;
}

/* ============ Misc ============ */

.alignleft {
  float: left;
  margin: 0 20px 16px 0;
}

.alignright {
  float: right;
  margin: 0 0 16px 20px;
}

.aligncenter {
  display: block;
  margin: 0 auto 16px;
}

.wp-caption {
  max-width: 100%;
}

.sticky,
.bypostauthor {
  /* intentional marker classes, no visual change */
}
