/*
Theme Name: vana
Theme URI: https://vana.kr/
Author: vana
Description: Independent theme for vana.kr.
Version: 0.3.6
Requires at least: 6.8
Requires PHP: 8.1
Text Domain: vana
*/

:root {
  --vana-accent: var(--wp--preset--color--accent, #019ebd);
  --vana-orange: var(--wp--preset--color--orange, #d05d1a);
  --vana-sidebar: var(--wp--preset--color--sidebar, #21282e);
  --vana-background: var(--wp--preset--color--background, #f2f2f2);
  --vana-text: var(--wp--preset--color--text, #333);
  --vana-muted: var(--wp--preset--color--muted, #666);
  --vana-sidebar-width: 150px;
  --vana-content-width: 1200px;
  --vana-card-gutter: 10px;
  --vana-brand-size: 124px;
  --vana-font-body: var(--wp--preset--font-family--body, "Apple SD Gothic Neo", "Pretendard Variable", "Malgun Gothic", "맑은 고딕", "Segoe UI", Arial, sans-serif);
  --vana-font-condensed: var(--wp--preset--font-family--condensed, "Roboto Condensed", sans-serif);
  --vana-font-strait: var(--wp--preset--font-family--narrow, Strait, "Apple SD Gothic Neo", "Pretendard Variable", "Malgun Gothic", "맑은 고딕", "Segoe UI", Arial, sans-serif);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--vana-text);
  background: var(--vana-background);
  font-family: var(--vana-font-body);
  font-size: 14px;
}
a { color: var(--vana-accent); text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
img.alignleft,
.alignleft img,
img.aligncenter,
.aligncenter img,
img.alignright,
.alignright img,
img.alignnone,
.alignnone img {
  box-sizing: border-box;
  padding: 5px;
  border: 1px solid #eee;
}
.post-content .aligncenter { display: block; margin-right: auto; margin-left: auto; }
.post-content .alignleft { float: left; max-width: 45%; margin-right: 1em; margin-bottom: 1em; }
.post-content .alignright { float: right; max-width: 45%; margin-bottom: 1em; margin-left: 1em; }
.post-content::after { display: table; clear: both; content: ""; }
.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;
}

.site-sidebar {
  position: absolute;
  inset: 0 auto auto 0;
  width: var(--vana-sidebar-width);
  min-height: 100vh;
  padding-bottom: 20px;
  color: #fff;
  font-size: .85em;
}
.site-sidebar::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0 auto 0 0;
  width: var(--vana-sidebar-width);
  background: var(--vana-sidebar);
}
.site-branding { display: grid; width: 150px; height: 150px; place-items: center; background: var(--vana-sidebar); }
.brand-mark {
  display: grid;
  width: var(--vana-brand-size);
  height: var(--vana-brand-size);
  padding: 11px;
  border-radius: 50%;
  place-items: center;
  background: var(--vana-orange);
}
.brand-mark img { width: 80%; height: 80%; object-fit: contain; }
.site-title { margin: 0; padding: 20px 10px; font-size: 20px; }
.site-title a { color: #fff; }
.site-navigation { padding-top: 35px; }
.widget-area { padding-top: 0; }
.site-navigation ul { margin: 0; padding: 0; list-style: none; }
.site-navigation li {
  margin: 13px 0 0 5px;
  font-family: var(--vana-font-condensed);
  font-size: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
}
.site-navigation li:first-child { margin-top: 0; }
.site-navigation a { color: #fff; }
.widget-area::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  margin: 0 0 35px 5px;
  background: var(--vana-orange);
}
.widget-area::before { margin-top: 35px; }
.widget { margin: 0; color: #647d7d; }
.widget + .widget { margin-top: 70px; }
.widget-title {
  margin: 0 0 5px 5px;
  color: #fff;
  font-family: var(--vana-font-condensed);
  font-size: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
}
.widget ul { margin: 0 0 0 5px; padding: 0; list-style: none; }
.widget li { margin-top: 3px; line-height: 1.4; }
.widget a { color: #647d7d; }
.widget_categories a, .widget_archive a, .widget_meta a,
.widget_nav_menu a, .widget_pages a, .tagcloud {
  font-family: var(--vana-font-strait);
  font-size: 1.2em;
}
.widget p { margin: 0 5px; font-family: var(--vana-font-strait); font-size: .9em; line-height: 1.6; }
.widget_search form { display: block; width: 100%; height: 30px; margin: 0; }
.widget_search label { min-width: 0; flex: 1; }
.widget_search input[type="search"] { width: 100%; height: 30px; border: 0; border-radius: 0; outline: 0; box-shadow: none; appearance: none; background: #2b333a; color: #fff; font-family: var(--vana-font-body); font-size: .95em; }
.widget_search input[type="search"]:focus { outline: 0; box-shadow: none; background: #303940; }
.widget_search input[type="search"]::placeholder { color: #647d7d; font-family: var(--vana-font-strait); font-size: 1.2em; opacity: 1; }
.widget_search input[type="submit"] { display: none; }

.site-wrapper { margin-left: var(--vana-sidebar-width); }
.site-content {
  width: var(--vana-content-width);
  max-width: 95%;
  margin: 24px auto 50px;
}
.card-grid { position: relative; }
.card-grid::after { content: ""; display: block; clear: both; }
.card-slot {
  width: 33.33333%;
  padding: var(--vana-card-gutter);
}
.card {
  position: relative;
  width: 100%;
  padding: 5px;
  background: #fff;
}
.card-media { position: relative; overflow: hidden; }
.card-media a { display: block; }
.card-media img { width: 100%; transition: transform .4s ease-in-out; }
.card-media:hover img { transform: scale(1.1); }
.card-categories {
  display: block;
  padding: 7px 0 2px;
  color: var(--vana-accent);
  font-family: var(--vana-font-strait);
  font-size: .9em;
}
.card-categories a { color: inherit; }
.card-rule { width: 16px; height: 1px; margin: 3px 0 10px; background: var(--vana-orange); }
.card-title { margin: 4px 0 0; font-size: 1.15em; line-height: 1.2; font-weight: 700; word-break: break-word; }
.card-title a { color: var(--vana-text); }
.card-title a:hover { color: var(--vana-accent); }
.card-excerpt { margin-top: 8px; font-size: .9em; }
.card-excerpt p { margin: 0; color: var(--vana-muted); line-height: 1.45; }
.new-badge {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 26px;
  color: #fff;
  background: #e23e3e;
  font: 700 14px/1 Arial, sans-serif;
  letter-spacing: .5px;
  transform-origin: 50% 0;
}
.new-badge::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 5px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 7px solid #e23e3e;
}
.new-badge.wiggle { animation: vana-wiggle 3.8s ease-in-out infinite; }
@keyframes vana-wiggle {
  0%, 10%, 100% { transform: rotate(0); }
  2% { transform: rotate(-8deg); }
  4% { transform: rotate(8deg); }
  6% { transform: rotate(-5deg); }
  8% { transform: rotate(5deg); }
}
.pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 54px;
  margin: 24px 10px 0;
  border-top: 1px solid #ddd;
  font-family: var(--vana-font-condensed);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.pagination-side a { display: inline-block; padding: 14px 0 10px; color: #666; border-bottom: 2px solid transparent; }
.pagination-side a:hover { color: var(--vana-accent); border-bottom-color: var(--vana-orange); }
.pagination-newer { padding-left: 100px; }
.pagination-older { padding-right: 100px; text-align: right; }
.pagination-status { color: #aaa; font-family: var(--vana-font-strait); font-size: .9em; font-weight: 400; }
.menu-toggle { display: none; }

.popular-tag-card { padding: 4px; background: #f4f4f4; }
.popular-tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  aspect-ratio: 3 / 2;
  background: #f4f4f4;
}
.popular-tag-label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px;
  color: #fff;
  background: #c1632e;
  font-family: var(--vana-font-strait);
}
.popular-tag-heading { font-size: 14px; font-weight: 700; line-height: 1.3; }
.popular-tag-rule { width: 14px; height: 1px; margin: 4px 0; background: #fff; }
.popular-tag-name {
  align-self: flex-end;
  max-width: 100%;
  margin-top: auto;
  overflow: hidden;
  color: #fff;
  font-size: clamp(12px, 3.4vw, 17px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.05em;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.popular-tag-thumb { position: relative; aspect-ratio: 1; overflow: hidden; }
.popular-tag-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.popular-tag-thumb:hover img { transform: scale(1.1); }
.popular-tag-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 4px 6px;
  color: #fff;
  background: rgb(0 0 0 / 60%);
  font-size: 12px;
  opacity: 0;
  transition: opacity .3s ease;
}
.popular-tag-thumb:hover .popular-tag-overlay { opacity: 1; }
.archive-pick-card { border-bottom: 1px solid #9b9b9b; margin-bottom: 4px; }
.archive-pick-image { filter: grayscale(10%) brightness(90%) saturate(90%); transition: filter .3s ease; }
.archive-pick-slot:hover .archive-pick-image { filter: none; }
.archive-pick-banner {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  height: 24px;
  padding: 0 6px;
  color: #fff;
  background: #c1632e;
  box-shadow: 0 1px 2px rgb(0 0 0 / 15%);
  font-family: var(--vana-font-strait);
  font-size: 14px;
}
.archive-pick-meta { display: flex; align-items: center; gap: 6px; padding: 8px 0 2px; white-space: nowrap; }
.archive-pick-category { color: #0090d7; font-family: var(--vana-font-strait); font-size: 13px; }
.archive-pick-category a { color: inherit; }
.archive-pick-separator { width: 1px; height: 12px; background: var(--vana-orange); }
.archive-pick-title { min-width: 0; flex: 1; margin: 4px 0 0; overflow: hidden; font-size: 1.05em; line-height: 1.2; text-overflow: ellipsis; }
.archive-pick-title a { color: var(--vana-text); }

.site-content-thin { width: 960px; margin-top: 40px; }
.single-entry { background: #fff; }
.single-media img { width: 100%; }
.single-inner, .comments-inner { width: 800px; max-width: 90%; margin: 0 auto; padding: 5% 0; }
.single-title { margin: 0 0 40px; font-size: 1.65em; font-weight: 700; line-height: 1.2; word-break: break-word; }
.single-date { margin-bottom: 4px; color: #bababa; font-family: var(--vana-font-strait); font-size: 1.2em; }
.single-category { margin: 2px 0 10px; color: #555; font-family: var(--vana-font-strait); font-size: .9em; }
.single-divider { width: 2em; height: 2px; margin: 0 0 40px; border: 0; background: #e36000; }
.post-content { color: var(--vana-text); }
.post-content p, .post-content blockquote, .post-content ul, .post-content ol, .post-content table, .post-content pre { margin: 0 0 1.1em; line-height: 1.7; }
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 { margin: 50px 0 25px; font-weight: 700; }
.post-content h1 { font-size: 2em; }
.post-content h2 { font-size: 1.8em; }
.post-content h3 { font-size: 1.6em; }
.post-content h4 { font-size: 1.4em; }
.post-content h5 { font-size: 1.2em; }
.post-content h6 { font-size: .9em; text-transform: uppercase; }
.post-content blockquote { margin: 2.5em 0; padding-right: 80px; color: #666; }
.post-content blockquote p { font-size: 1.25em; font-style: italic; line-height: 1.6; }
.post-content iframe, .post-content video, .post-content embed, .post-content object { max-width: 100%; }
.post-content video {
  box-sizing: border-box;
  height: auto;
  padding: 5px;
  border: 1px solid #eee;
}
.post-content .vertical-video {
  width: 512px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.post-content .vertical-video .wp-block-video {
  margin-right: 0;
  margin-left: 0;
}
.post-content .vertical-video video {
  display: block;
  width: 100%;
}
.post-content .wp-caption {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.post-content .wp-caption-text,
.post-content figcaption { text-align: center; }
.post-content table { width: 100%; border-collapse: collapse; }
.post-content th, .post-content td { min-width: 0; padding: .5em; border: 1px solid #ddd; overflow-wrap: anywhere; }
.single-meta { margin-top: 40px; color: #aab8b8; font-family: var(--vana-font-strait); font-size: 1.08em; line-height: 1.45; }
.single-meta::before { content: ""; display: block; width: 40px; height: 2px; margin-bottom: 18px; background: var(--vana-orange); }
.single-meta-primary { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.single-meta-date { color: #666; }
.single-meta-categories a { color: var(--vana-accent); }
.single-tags { margin-top: 3px; overflow-wrap: anywhere; }
.single-tags a { color: #aab8b8; }
.single-tags a::before { content: "#"; }
.single-edit-link { margin-top: 3px; }
.single-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 0; background: var(--vana-background); }
.single-nav-slot { min-width: 0; min-height: 102px; background: #e8e8e8; }
.single-nav-slot:empty { background: transparent; }
.single-navigation a { display: flex; min-height: 102px; align-items: center; gap: 14px; padding: 10px 16px; color: #555; transition: background .2s ease; }
.single-navigation a:hover { background: #ddd; }
.single-nav-thumb { width: 82px; height: 82px; flex: 0 0 82px; border: 3px solid #fff; object-fit: cover; }
.single-nav-copy { display: flex; min-width: 0; align-self: stretch; flex-direction: column; justify-content: center; gap: 8px; }
.single-nav-copy strong { display: -webkit-box; overflow: hidden; font-size: .95em; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.single-nav-direction { position: relative; display: flex; width: fit-content; padding-bottom: 6px; border-bottom: 1px solid #bbb; color: #777; font-family: var(--vana-font-condensed); font-size: .95em; font-weight: 700; line-height: 1; letter-spacing: .03em; text-transform: uppercase; }
.single-nav-arrow { position: absolute; top: -1px; font-family: Arial, sans-serif; font-size: 1.05em; font-weight: 400; }
.single-nav-newer .single-nav-arrow { right: calc(100% + 2px); }
.single-nav-older .single-nav-direction { align-self: flex-end; }
.single-nav-older .single-nav-arrow { left: calc(100% + 2px); }
.single-nav-older a { justify-content: flex-end; text-align: right; }
.comments-area { background: #fff; }
.comments-inner { padding: 2% 0; }
.comments-title, .comment-reply-title { margin: 0 0 20px; color: #888; font-size: 1em; font-weight: 400; }
.comments-title::after, .comment-reply-title::after { content: ""; display: block; width: 48px; height: 2px; margin-top: 14px; background: #ddd; }
.commentlist, .commentlist .children { margin: 0; padding: 0; list-style: none; }
.commentlist .children { margin-left: 52px; }
.commentlist div.comment { position: relative; margin-top: 18px; padding-top: 18px; border-top: 1px solid #eee; }
.commentlist > li.comment:first-child > div.comment:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.comment-header { position: relative; margin-bottom: 12px; }
.comment-header::after { display: table; clear: both; content: ""; }
.comment .avatar { float: left; width: 44px; height: auto; }
.comment-owner-mark {
  position: absolute;
  z-index: 1;
  top: -6px;
  left: -9px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--vana-accent);
}
.comment-owner-mark::before { content: ""; position: absolute; top: 5px; left: 9px; width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.comment-owner-mark::after { content: ""; position: absolute; top: 12px; left: 6px; width: 12px; height: 8px; border-radius: 6px 6px 2px 2px; background: #fff; }
.comment-header-inner { padding: 2px 0 0 55px; }
.comment-header h4 { margin: 0; color: #333; font-size: 1em; font-weight: 700; }
.comment-header h4 a { color: #333; }
.comment-meta { margin-top: 4px; color: #999; font-size: .75em; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.comment-meta a { color: #999; }
.comment-content { line-height: 1.6; }
.comment-content p { margin-bottom: .65em; line-height: 1.6; }
.comment-content > :last-child { margin-bottom: 0; }
.comment-actions { margin-top: 12px; font-family: var(--vana-font-strait); font-size: .9em; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }
.comment-action-separator { color: #ddd; }
.comments-container + .respond-container, .comments-inner + .respond-container { border-top: 5px solid #eee; }
.comment-respond { position: relative; width: 800px; max-width: 90%; margin: 0 auto; padding: 2% 0; }
.comment-form { margin-top: 20px; }
.comment-form p { margin: 12px 0 0; }
.comment-form-author, .comment-form-email { float: left; width: 47.5%; }
p.comment-form-author { margin: 10px 5% 10px 0; }
p.comment-form-email { margin: 10px 0; }
.comment-form-url, .form-submit { clear: both; }
.comment-form label { display: block; margin-bottom: 2px; color: #666; font-family: var(--vana-font-strait); font-size: 1.2em; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 10px; border: 0; border-radius: 3px; background: var(--vana-background); font: inherit; font-size: .95em; }
.comment-form textarea { height: 120px; }
.comment-form input[type="submit"] { padding: 11px 60px 12px; border: 0; color: #fff; background: #333; }
.page-heading { padding: 1% 10px 10px; }
.page-heading h1 { margin: 0; padding-bottom: 10px; border-bottom: 1px solid #e1e1e1; color: #666; font-family: var(--vana-font-condensed); font-size: 1.2em; line-height: 1.2; }
.results-heading { display: flex; align-items: baseline; gap: 8px; margin: 0 10px 14px; padding: 0 0 10px; border-bottom: 1px solid #ddd; color: #666; }
.results-kicker { color: var(--vana-orange); font-family: var(--vana-font-condensed); font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.results-heading h1 { min-width: 0; margin: 0; overflow-wrap: anywhere; font-size: 1.15em; line-height: 1.3; }
.results-count { margin-left: 4px; color: #999; font-family: var(--vana-font-strait); font-size: .9em; line-height: 1.3; white-space: nowrap; }
.search-results .card-excerpt strong { color: var(--vana-orange); font-weight: 700; }
.search-empty { margin: 0 10px; }
.back-to-top {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 62px;
  height: 62px;
  padding: 8px 0 7px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
  opacity: 0;
  color: #fff;
  background: rgba(23, 28, 32, .92);
  box-shadow: 0 3px 14px rgba(0, 0, 0, .2);
  font-family: var(--vana-font-condensed);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--vana-orange); }
.back-to-top:focus-visible { outline: 3px solid var(--vana-accent); outline-offset: 3px; }
.back-to-top-icon { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 1200px) {
  .card-slot { width: 50%; }
}
@media (max-width: 1000px) {
  .site-sidebar { position: relative; width: 100%; min-height: 120px; padding: 0; background: var(--vana-sidebar); font-size: 1em; }
  .site-sidebar::before { content: none; }
  .site-branding { width: 120px; height: 120px; background: transparent; }
  .brand-mark { width: 92px; height: 92px; padding: 9px; }
  .site-wrapper { margin-left: 0; }
  .site-content { max-width: 90%; margin: 5% auto; }
  .site-navigation, .widget-area { display: none; }
  .menu-toggle {
    position: absolute;
    top: 34px;
    right: 16px;
    display: flex;
    min-width: 104px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 16px;
    border: 0;
    color: #fff;
    background: #171c20;
    font-family: var(--vana-font-condensed);
    font-size: 1em;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
  }
  .menu-toggle:hover { background: #111518; }
  .menu-label-close { display: none; }
  .menu-toggle-icon { position: relative; width: 18px; height: 14px; }
  .menu-toggle-icon span { position: absolute; right: 0; width: 18px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease, top .2s ease; }
  .menu-toggle-icon span:nth-child(1) { top: 0; }
  .menu-toggle-icon span:nth-child(2) { top: 6px; }
  .menu-toggle-icon span:nth-child(3) { top: 12px; }
  .navigation-open .menu-label-open { display: none; }
  .navigation-open .menu-label-close { display: inline; }
  .navigation-open .menu-toggle-icon span:nth-child(1) { top: 6px; transform: rotate(45deg); }
  .navigation-open .menu-toggle-icon span:nth-child(2) { opacity: 0; }
  .navigation-open .menu-toggle-icon span:nth-child(3) { top: 6px; transform: rotate(-45deg); }
  .site-sidebar.navigation-open .site-navigation,
  .site-sidebar.navigation-open .widget-area { display: block; background: var(--vana-sidebar); }
  .site-sidebar.navigation-open .site-navigation { padding: 28px 20px 0; }
  .site-sidebar.navigation-open .widget-area { padding: 0 20px 35px; }
  .site-navigation li { margin-left: 0; }
  .widget-area::before { margin-left: 0; }
  .widget-title, .widget ul { margin-left: 0; }
  .widget p, .widget_search form { margin-right: 0; margin-left: 0; }
}
@media (max-width: 600px) {
  .site-sidebar { min-height: 92px; }
  .site-branding { width: 92px; height: 92px; }
  .brand-mark { width: 70px; height: 70px; padding: 7px; }
  .menu-toggle { top: 24px; right: 12px; min-width: 98px; min-height: 44px; padding: 0 13px; }
  .card-slot { width: 100%; padding: 0; }
  .card-slot + .card-slot { margin-top: 20px; }
  .site-content-thin { width: 100%; max-width: 100%; margin: 0; }
  .single-inner { padding-top: 30px; }
  .single-title { margin-bottom: 20px; }
  .single-navigation { grid-template-columns: 1fr; gap: 1px; padding: 0; }
  .single-nav-slot { min-height: 92px; }
  .single-navigation a { min-height: 92px; padding: 8px 10px; }
  .single-nav-thumb { width: 72px; height: 72px; flex-basis: 72px; }
  .results-heading { flex-wrap: wrap; }
  .commentlist .children { margin-left: 24px; }
  .pagination-newer { padding-left: 78px; }
  .pagination-older { padding-right: 78px; }
  .back-to-top { right: 14px; bottom: 14px; width: 56px; height: 56px; padding-top: 7px; font-size: .68rem; }
  .back-to-top-icon { width: 21px; height: 21px; }
  .comment-form-author, .comment-form-email { float: none; width: 100%; margin-right: 0 !important; }
}
@media (prefers-reduced-motion: reduce) {
  .new-badge.wiggle { animation: none; }
  .card-media img, .popular-tag-thumb img, .menu-toggle-icon span, .back-to-top { transition: none; }
}
