:root {
--bg: #f6f1ea;
--card: #ffffff;
--text: #2f2a26;
--muted: #7a6f66;
--accent: #7a4b2a;
--accent-hover: #5f391f;
--border: #e7ddd3;
--shadow: 0 10px 30px rgba(47, 42, 38, 0.08);
--radius: 18px;
--container: 1200px;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--text);
background: linear-gradient(180deg, #fbf8f4 0%, var(--bg) 100%);
line-height: 1.6;
}
a {
color: inherit;
text-decoration: none;
}
img {
max-width: 100%;
display: block;
height: auto;
}
button,
input,
textarea,
select {
font: inherit;
}
.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;
}
.screen-reader-text:focus {
clip: auto;
top: 0;
left: 0;
width: auto;
height: auto;
margin: 0;
padding: 8px 12px;
background: #fff;
color: var(--text);
z-index: 100000;
}
.container {
width: min(100% - 32px, var(--container));
margin: 0 auto;
}
.site-header {
position: relative;
z-index: 100;
backdrop-filter: blur(12px);
background: rgba(251, 248, 244, 0.88);
border-bottom: 1px solid rgba(122, 75, 42, 0.08);
}
.header-inner {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
padding: 18px 0;
flex-wrap: wrap;
}
.logo {
display: flex;
flex-direction: column;
}
.logo__title {
font-size: 1.5rem;
font-weight: 800;
letter-spacing: 0.02em;
color: var(--accent);
}
.logo__subtitle {
font-size: 0.9rem;
color: var(--muted);
}
.header-tools {
display: flex;
align-items: center;
gap: 18px;
margin-left: auto;
}
.menu-toggle {
display: none;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 5px;
width: 48px;
height: 48px;
padding: 0;
border: 1px solid var(--border);
border-radius: 14px;
background: #fff;
color: var(--text);
box-shadow: var(--shadow);
cursor: pointer;
}
.menu-toggle__line {
display: block;
width: 20px;
height: 2px;
border-radius: 999px;
background: currentColor;
transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
.search-form {
display: flex;
align-items: center;
gap: 10px;
width: min(100%, 420px);
}
.search-form label {
flex: 1;
min-width: 0;
}
.search-form input {
width: 100%;
border: 1px solid var(--border);
background: #fff;
border-radius: 999px;
padding: 14px 18px;
font-size: 0.95rem;
outline: none;
transition: border-color 0.2s, box-shadow 0.2s;
}
.search-form input:focus {
border-color: rgba(122, 75, 42, 0.5);
box-shadow: 0 0 0 4px rgba(122, 75, 42, 0.08);
}
.search-form button,
.read-more,
.pagination .page-numbers {
border: 0;
cursor: pointer;
transition: 0.2s ease;
}
.search-form button,
.read-more {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 5px;
background: var(--accent);
color: #fff;
border-radius: 999px;
padding: 13px 18px;
font-weight: 600;
}
.search-form button svg,
.read-more svg {
width: 18px;
height: 18px;
stroke: currentColor;
fill: none;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
flex-shrink: 0;
}
.search-form button:hover,
.read-more:hover {
background: var(--accent-hover);
}
.hero {
padding: 24px 0 0;
}
.hero-box {
background: radial-gradient(circle at top left, rgba(122, 75, 42, 0.12), transparent 35%), var(--card);
border: 1px solid var(--border);
border-radius: 24px;
padding: 24px;
box-shadow: var(--shadow);
}
.hero-box h1,
.page-title {
margin: 0 0 2px;
font-size: clamp(1.8rem, 4vw, 2rem);
line-height: 1.1;
}
.hero-box p,
.archive-description,
.search-results-text {
margin: 8px 0 0;
max-width: 720px;
color: var(--muted);
font-size: 1.05rem;
}
.archive-description > :first-child {
margin-top: 0;
}
.archive-description > :last-child {
margin-bottom: 0;
}
.layout {
display: grid;
grid-template-columns: minmax(0, 1fr) 320px;
gap: 20px;
padding: 20px 0 44px;
}
.content,
.sidebar,
.sidebar-widget {
min-width: 0;
}
.posts {
display: grid;
gap: 18px;
}
.post-card,
.sidebar-widget {
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: var(--shadow);
}
.post-card {
padding: 24px;
}
.post-thumbnail {
margin: 0 0 20px;
overflow: hidden;
border-radius: 16px;
}
.post-thumbnail img {
width: 100%;
}
.post-meta {
display: flex;
flex-wrap: wrap;
gap: 10px;
align-items: center;
margin-bottom: 14px;
color: var(--muted);
font-size: 0.92rem;
}
.post-category {
background: rgba(122, 75, 42, 0.1);
color: var(--accent);
padding: 6px 12px;
border-radius: 999px;
font-weight: 600;
transition: background-color 0.2s ease, color 0.2s ease;
}
.post-category:hover {
background: rgba(122, 75, 42, 0.16);
}
.post-card h2,
.post-card h1 {
margin: 0 0 12px;
font-size: clamp(1.35rem, 2vw, 1.8rem);
line-height: 1.25;
}
.entry-content,
.post-excerpt {
color: #5d544d;
}
.post-card p,
.post-excerpt p {
margin: 0 0 20px;
}
.post-footer {
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
margin-top: 24px;
padding-top: 20px;
border-top: 1px solid var(--border);
}
.post-footer__meta {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 16px;
color: var(--muted);
font-size: 0.92rem;
}
.post-footer .read-more {
margin-top: 0;
}
.meta-item {
display: inline-flex;
align-items: center;
gap: 4px;
}
.meta-item svg {
width: 16px;
height: 16px;
stroke: currentColor;
fill: none;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
flex-shrink: 0;
}
.entry-content .yarpp-related {
margin: 34px 0 4px;
padding: 24px;
border: 1px solid var(--border);
border-radius: calc(var(--radius) - 2px);
background:
radial-gradient(circle at top left, rgba(122, 75, 42, 0.1), transparent 36%),
#fbf8f4;
}
.entry-content .yarpp-related h3 {
margin: 0 0 18px;
padding: 0 0 14px;
border-bottom: 1px solid rgba(122, 75, 42, 0.12);
color: var(--accent);
font-size: 1.25rem;
font-weight: 700;
line-height: 1.3;
text-transform: none;
}
.entry-content .yarpp-related ol {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
margin: 0;
padding: 0;
list-style: none;
}
.entry-content .yarpp-related li {
min-width: 0;
margin: 0;
}
.entry-content .yarpp-related li a {
display: flex;
align-items: center;
gap: 8px;
min-height: 44px;
height: 100%;
padding: 7px 10px;
border: 1px solid rgba(122, 75, 42, 0.11);
border-radius: 12px;
background: #fff;
color: #514941;
font-weight: 600;
line-height: 1.35;
transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.entry-content .yarpp-related li a::before {
content: "\2192";
display: inline-flex;
align-items: center;
justify-content: center;
width: 18px;
flex-shrink: 0;
color: var(--accent);
font-size: 1.05rem;
line-height: 1;
}
.entry-content .yarpp-related li a:hover {
border-color: rgba(122, 75, 42, 0.17);
background: rgba(255, 255, 255, 0.74);
color: var(--accent);
}
.entry-content .yarpp-related li a:focus-visible {
outline: 3px solid rgba(122, 75, 42, 0.16);
outline-offset: 2px;
}
.read-more {
margin-top: 8px;
}
.sidebar {
display: grid;
gap: 16px;
align-self: start;
}
.sidebar-widget {
padding: 20px;
}
.sidebar-widget h2,
.sidebar-widget h3 {
margin: 0 0 16px;
font-size: 1.15rem;
}
.site-menu {
padding: 20px;
background:
radial-gradient(circle at top right, rgba(122, 75, 42, 0.09), transparent 42%),
var(--card);
}
.site-menu h3 {
margin: 0 0 14px;
padding: 0 4px 14px;
border-bottom: 1px solid rgba(122, 75, 42, 0.1);
color: var(--text);
font-size: 1.15rem;
font-weight: 750;
}
.sidebar-widget.site-menu ul {
gap: 5px;
}
.sidebar-widget.site-menu li {
width: 100%;
}
.sidebar-widget.site-menu li a {
width: 100%;
align-items: center;
gap: 10px;
min-height: 44px;
padding: 8px 8px 8px 10px;
border-bottom: 1px solid rgba(122, 75, 42, 0.08);
border-radius: 13px;
color: #514941;
transition: background-color 0.18s ease, color 0.18s ease;
}
.sidebar-widget.site-menu li a:hover,
.sidebar-widget.site-menu li.is-current a {
background: rgba(122, 75, 42, 0.09);
color: var(--accent);
}
.sidebar-widget.site-menu li.is-current a {
font-weight: 600;
}
.sidebar-widget ul {
list-style: none;
margin: 0;
padding: 0;
display: grid;
gap: 12px;
}
.sidebar-widget li a,
.sidebar-widget li {
display: flex;
justify-content: space-between;
gap: 16px;
color: #4a413b;
transition: color 0.2s ease;
}
.sidebar-widget .cat-item {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.sidebar-widget .cat-item a {
display: inline-flex;
align-items: center;
gap: 6px;
min-width: 0;
}
.sidebar-widget .cat-item a::before {
content: "";
width: 14px;
height: 14px;
flex-shrink: 0;
background-color: currentColor;
opacity: 0.9;
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 7.5V5.75A1.75 1.75 0 0 1 5.75 4h5.54c.46 0 .9.18 1.23.51l7.97 7.97a1.75 1.75 0 0 1 0 2.47l-5.04 5.04a1.75 1.75 0 0 1-2.47 0l-7.97-7.97A1.75 1.75 0 0 1 4 10.79V7.5Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='8.25' cy='8.25' r='1.25' fill='none' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
-webkit-mask-repeat: no-repeat;
-webkit-mask-position: center;
-webkit-mask-size: contain;
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 7.5V5.75A1.75 1.75 0 0 1 5.75 4h5.54c.46 0 .9.18 1.23.51l7.97 7.97a1.75 1.75 0 0 1 0 2.47l-5.04 5.04a1.75 1.75 0 0 1-2.47 0l-7.97-7.97A1.75 1.75 0 0 1 4 10.79V7.5Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='8.25' cy='8.25' r='1.25' fill='none' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
mask-repeat: no-repeat;
mask-position: center;
mask-size: contain;
}
.sidebar-category__label {
display: inline-flex;
align-items: center;
gap: 9px;
min-width: 0;
}
.site-menu .sidebar-category__label span {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
}
.site-menu .sidebar-category__label svg {
width: 16px;
height: 16px;
stroke: currentColor;
fill: none;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
flex-shrink: 0;
}
.sidebar-widget a:hover {
color: var(--accent);
}
.sidebar-widget span,
.sidebar-widget .count {
color: var(--muted);
white-space: nowrap;
}
.site-menu .sidebar-category__label,
.site-menu .sidebar-category__label span {
color: inherit;
}
.site-menu .sidebar-category__label {
flex: 1;
}
.site-menu .count {
flex-shrink: 0;
min-width: 38px;
padding: 3px 8px;
color: var(--muted);
background: rgba(122, 75, 42, 0.07);
border-radius: 999px;
font-size: 0.8rem;
font-variant-numeric: tabular-nums;
line-height: 1.5;
text-align: center;
}
.site-menu li a:hover .count,
.site-menu li.is-current .count {
color: var(--accent);
background: rgba(122, 75, 42, 0.12);
}
.pagination {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 10px;
}
.pagination .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 46px;
height: 46px;
padding: 0 16px;
background: #fff;
color: var(--text);
border-radius: 14px;
border: 1px solid var(--border);
box-shadow: var(--shadow);
font-weight: 600;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
background: var(--accent);
color: #fff;
border-color: transparent;
}
.site-footer {
border-top: 1px solid rgba(122, 75, 42, 0.1);
background: rgba(255, 255, 255, 0.45);
}
.back-to-top {
position: fixed;
right: max(20px, calc((100vw - var(--container)) / 2));
bottom: 28px;
z-index: 50;
display: inline-flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
padding: 0;
color: #fff;
background: var(--accent);
border: 0;
border-radius: 18px;
box-shadow: 0 12px 28px rgba(95, 57, 31, 0.28);
cursor: pointer;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: background-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.back-to-top.is-visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.back-to-top:hover {
background: var(--accent-hover);
box-shadow: 0 14px 32px rgba(95, 57, 31, 0.34);
}
.back-to-top:focus-visible {
outline: 3px solid rgba(122, 75, 42, 0.2);
outline-offset: 3px;
}
.back-to-top svg {
width: 22px;
height: 22px;
stroke: currentColor;
fill: none;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}
.footer-inner {
padding: 24px 0 34px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
color: var(--muted);
font-size: 0.95rem;
}
.liveinternet-counter {
display: none;
}
.no-posts-message {
margin: 0;
}
.entry-content > :last-child,
.post-excerpt > :last-child {
margin-bottom: 0;
}
.entry-content a,
.post-card h2 a:hover,
.post-card h1 a:hover {
color: var(--accent);
}
.story-navigation {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
}
.story-navigation__link {
display: flex;
align-items: center;
min-width: 0;
min-height: 90px;
padding: 16px 18px;
color: var(--text);
background:
radial-gradient(circle at top left, rgba(122, 75, 42, 0.08), transparent 56%),
var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: var(--shadow);
transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.story-navigation__link:hover {
color: var(--accent);
border-color: rgba(122, 75, 42, 0.28);
box-shadow: 0 14px 34px rgba(47, 42, 38, 0.1);
}
.story-navigation__link:only-child {
grid-column: 1 / -1;
}
.story-navigation__link svg {
width: 24px;
height: 24px;
flex: 0 0 auto;
color: var(--accent);
fill: none;
stroke: currentColor;
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 2;
}
.story-navigation__content {
display: grid;
min-width: 0;
gap: 3px;
}
.story-navigation__link--previous {
gap: 12px;
}
.story-navigation__link--next {
justify-content: flex-end;
gap: 12px;
text-align: right;
}
.story-navigation__label {
color: var(--muted);
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 0.02em;
text-transform: uppercase;
}
.story-navigation__title {
overflow: hidden;
font-size: 1rem;
font-weight: 700;
line-height: 1.3;
text-overflow: ellipsis;
white-space: nowrap;
}
.comments-area {
padding: 24px;
background:
radial-gradient(circle at top left, rgba(122, 75, 42, 0.09), transparent 38%),
var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: var(--shadow);
}
.comments-header {
padding-bottom: 16px;
border-bottom: 1px solid var(--border);
}
.comments-title,
.comment-reply-title {
margin: 0;
color: var(--text);
font-size: clamp(1.25rem, 2vw, 1.5rem);
line-height: 1.25;
}
.comment-list,
.comment-list .children {
display: grid;
gap: 16px;
margin: 0;
padding: 0;
list-style: none;
}
.comment-list {
margin-top: 20px;
}
.comment-list .children {
margin: 16px 0 0 32px;
padding-left: 18px;
border-left: 2px solid rgba(122, 75, 42, 0.14);
}
.comment-body {
display: grid;
grid-template-columns: 48px minmax(0, 1fr);
gap: 14px;
padding: 18px;
background: #fff;
border: 1px solid rgba(122, 75, 42, 0.11);
border-radius: 15px;
}
.comment-avatar img {
width: 48px;
height: 48px;
border-radius: 50%;
}
.comment-main {
min-width: 0;
}
.comment-meta {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 12px;
margin-bottom: 10px;
}
.comment-author-name {
display: block;
color: var(--text);
font-weight: 700;
line-height: 1.3;
}
.comment-author-name a {
color: inherit;
}
.comment-author-name a:hover {
color: var(--accent);
}
.comment-meta time {
display: block;
margin-top: 2px;
color: var(--muted);
font-size: 0.84rem;
}
.comment-content {
color: #5d544d;
overflow-wrap: anywhere;
}
.comment-content > :last-child {
margin-bottom: 0;
}
.comment-awaiting-moderation,
.comments-closed {
margin: 16px 0 0;
padding: 10px 12px;
color: var(--accent);
background: rgba(122, 75, 42, 0.08);
border-radius: 10px;
font-size: 0.92rem;
}
.comment-reply-link,
#cancel-comment-reply-link {
display: inline-flex;
align-items: center;
min-height: 34px;
padding: 6px 10px;
color: var(--accent);
border-radius: 9px;
font-size: 0.88rem;
font-weight: 700;
}
.comment-reply-link:hover,
#cancel-comment-reply-link:hover {
background: rgba(122, 75, 42, 0.09);
}
.comment-respond {
margin-top: 28px;
padding-top: 24px;
border-top: 1px solid var(--border);
}
.comment-reply-title {
display: flex;
flex-wrap: wrap;
align-items: baseline;
gap: 8px;
}
.cancel-reply {
font-size: 0.85rem;
}
.comment-notes,
.logged-in-as {
margin: 8px 0 18px;
color: var(--muted);
font-size: 0.92rem;
}
.comment-form {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
}
.comment-form > p {
margin: 0;
}
.comment-form-comment,
.form-submit,
.comment-form-cookies-consent {
grid-column: 1 / -1;
}
.comment-form label {
display: block;
margin-bottom: 7px;
color: var(--text);
font-size: 0.92rem;
font-weight: 700;
}
.comment-form .required {
color: var(--accent);
}
.comment-form-cookies-consent {
display: flex;
align-items: flex-start;
gap: 9px;
color: var(--muted);
font-size: 0.88rem;
line-height: 1.45;
}
.comment-form-cookies-consent label {
margin: 0;
color: inherit;
font-size: inherit;
font-weight: 400;
}
.comment-form input,
.comment-form textarea {
display: block;
width: 100%;
padding: 12px 14px;
color: var(--text);
background: #fff;
border: 1px solid var(--border);
border-radius: 12px;
outline: none;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.comment-form textarea {
min-height: 150px;
resize: vertical;
}
.comment-form input:focus,
.comment-form textarea:focus {
border-color: rgba(122, 75, 42, 0.55);
box-shadow: 0 0 0 4px rgba(122, 75, 42, 0.09);
}
.comment-form .comment-form-cookies-consent input {
width: 16px;
min-width: 16px;
height: 16px;
padding: 0;
margin: 2px 0 0;
border: 0;
border-radius: 0;
box-shadow: none;
accent-color: var(--accent);
}
.form-submit {
margin-top: 2px !important;
}
.comment-form .submit {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 46px;
padding: 12px 18px;
color: #fff;
background: var(--accent);
border: 0;
border-radius: 999px;
cursor: pointer;
font-weight: 700;
transition: background-color 0.2s ease;
}
.comment-form .submit:hover {
background: var(--accent-hover);
}
.comment-navigation {
margin-top: 18px;
}
.comment-navigation .nav-links {
display: flex;
justify-content: space-between;
gap: 12px;
}
.comment-navigation a {
color: var(--accent);
font-weight: 700;
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
outline: 3px solid rgba(122, 75, 42, 0.28);
outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
*,
*::before,
*::after {
scroll-behavior: auto !important;
transition-duration: 0.01ms !important;
}
}
@media (max-width: 980px) {
.layout {
grid-template-columns: 1fr;
}
.sidebar {
position: static;
grid-template-columns: 1fr;
}
}
@media (max-width: 720px) {
.hero {
padding-top: 16px;
}
.layout {
gap: 16px;
padding: 16px 0 32px;
}
.back-to-top {
right: 16px;
bottom: 18px;
width: 48px;
height: 48px;
border-radius: 16px;
}
.header-inner {
align-items: center;
}
.footer-inner {
flex-direction: column;
align-items: stretch;
}
.menu-toggle {
display: inline-flex;
margin-left: auto;
}
.header-tools {
display: none;
}
.search-form {
width: 100%;
flex-direction: column;
}
.search-form button {
width: 100%;
}
.hero-box,
.post-card,
.sidebar-widget {
padding: 18px;
}
.post-card h2 {
font-size: 1.6rem;
}
.post-footer {
flex-direction: column;
align-items: stretch;
}
.post-footer__meta {
justify-content: space-between;
}
.post-footer .read-more {
width: 100%;
}
.story-navigation {
grid-template-columns: 1fr;
}
.story-navigation__link {
min-height: 76px;
}
.story-navigation__title {
white-space: normal;
}
.entry-content .yarpp-related {
margin-top: 28px;
padding: 18px;
}
.entry-content .yarpp-related h3 {
margin-bottom: 14px;
padding-bottom: 12px;
font-size: 1.15rem;
}
.entry-content .yarpp-related ol {
grid-template-columns: 1fr;
gap: 10px;
}
.entry-content .yarpp-related li a {
min-height: 42px;
}
.comments-area {
padding: 18px;
}
.comment-list .children {
margin-left: 12px;
padding-left: 12px;
}
.comment-body {
grid-template-columns: 40px minmax(0, 1fr);
gap: 11px;
padding: 14px;
}
.comment-avatar img {
width: 40px;
height: 40px;
}
.comment-meta {
display: block;
}
.comment-reply-link {
margin-top: 8px;
}
.comment-form {
grid-template-columns: 1fr;
}
.sidebar {
grid-template-columns: 1fr;
}
.site-menu {
position: fixed;
top: var(--mobile-menu-top, 96px);
left: 16px;
right: 16px;
z-index: 120;
display: none;
max-height: calc(100vh - var(--mobile-menu-top, 96px) - 16px);
overflow-y: auto;
padding: 14px;
border-radius: 22px;
box-shadow: 0 18px 44px rgba(47, 42, 38, 0.16);
overscroll-behavior: contain;
}
.site-menu.is-open {
display: block;
}
.site-menu h3 {
margin-bottom: 10px;
}
}