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

:root {
  --accent: #ff6f5c;
  --accent-strong: #ff563e;
  --bg: #141414;
  --panel: #1b1b1b;
  --text: #f1f1f1;
  --text-soft: #d7d7d7;
  --text-muted: #8a8a8a;
  --border: #3b3b3b;
}

body {
  min-width: 320px;
  font-family: 'Source Sans 3', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  width: 100%;
  padding: 28px 18px 18px;
}

.topbar,
.content-area {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

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

.brand h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.brand-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.brand-link h1,
.brand-link p {
  transition: color 0.2s;
}

.brand-link:hover h1,
.brand-link:hover p {
  color: var(--accent);
}

.brand p {
  margin-top: 8px;
  font-size: 11px;
  font-style: italic;
  font-weight: 700;
  color: #fff;
}

.search-link {
  display: inline-block;
  margin-top: 2px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 111, 92, 0.7);
  border-radius: 999px;
  background: rgba(255, 111, 92, 0.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.search-link:hover,
.search-link[aria-expanded="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #121212;
}

.search-panel {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 20px;
  padding: 16px;
  background: #181818;
  border: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.search-panel label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-row input {
  min-width: 220px;
  flex: 1;
  padding: 11px 12px;
  background: #0f0f0f;
  border: 1px solid var(--border);
  color: var(--text);
  font: inherit;
}

.search-row button {
  padding: 11px 14px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.search-row button:hover {
  background: var(--accent);
  color: #111;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 6px;
  background: transparent;
  border: 0;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-drawer {
  display: none;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 18px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.nav-drawer a {
  display: block;
  padding: 10px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.nav-drawer a:last-child { border-bottom: none; }

.page-shell {
  padding: 0 0 24px;
}

.content-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
}

.post-featured {
  display: grid;
  background: var(--accent);
  color: #111;
}

.featured-copy {
  padding: clamp(28px, 7vw, 70px) clamp(22px, 7vw, 92px);
}

.post-featured h2,
.post-card h3 {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

.post-featured h2 {
  font-size: clamp(34px, 8vw, 48px);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.meta {
  font-size: 13px;
  font-weight: 700;
  color: inherit;
  margin-bottom: 16px;
}

.post-featured p:not(.meta),
.post-card p:not(.meta) {
  max-width: 650px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.85;
}

.featured-media,
.thumb {
  min-height: 250px;
}

.blogger-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.image-poster {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 26px;
  overflow: hidden;
  text-align: center;
  color: #123b92;
  background:
    radial-gradient(circle at 48% 70%, rgba(255,255,255,0.65) 0 3px, transparent 4px),
    linear-gradient(130deg, rgba(255,255,255,0.95), rgba(241,241,241,0.84)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(28, 86, 160, 0.2) 34px 54px);
}

.image-poster span {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.image-poster strong {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 4vw, 30px);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.post-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.post-actions a,
.card-actions a,
.share-button,
.sidebar a,
.author-block a,
.report-block a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.post-featured .post-actions a,
.post-featured .post-actions .share-button {
  font-size: 13px;
}

.post-actions a,
.card-actions a,
.share-button {
  color: inherit;
}

.comment-count-link:empty {
  display: none;
}

.share-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: inherit;
}

.share-button:hover {
  color: var(--accent);
}

.post-actions .read-more,
.card-actions .rm {
  margin-left: auto;
}

.post-title-link,
.featured-media,
.thumb {
  display: block;
  color: inherit;
  text-decoration: none;
}

.clickable-post {
  cursor: pointer;
}

.section-divider {
  padding: 48px 0 22px;
}

.section-divider span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
}

.post-card {
  display: grid;
  gap: 22px;
  padding: 28px 0 34px;
  border-bottom: 1px solid transparent;
}

.post-card h3 {
  color: var(--accent);
  font-size: clamp(32px, 7vw, 43px);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.post-card .meta {
  color: #f4f4f4;
}

.post-card p:not(.meta) {
  color: #fff;
  font-weight: 700;
}

.api-message {
  padding: 18px 0;
  color: var(--text-soft);
  font-size: 14px;
}

.api-message.error {
  color: var(--accent);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 34px 0 10px;
  border-top: 1px solid var(--border);
}

.pagination button {
  min-width: 160px;
  padding: 11px 16px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.thumb {
  position: relative;
  width: 100%;
}

.thumb .num {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 4px 9px;
}

.image-poster.small {
  min-height: 210px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(0, 74, 169, 0.95), rgba(0, 22, 73, 0.95)),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(255,255,255,0.08) 30px 31px);
}

.image-poster.small strong {
  font-size: 22px;
}

.image-poster.pitch {
  background:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.25)),
    repeating-linear-gradient(0deg, #347b3c 0 34px, #2f7137 34px 68px);
}

.image-poster.coral {
  color: #151515;
  background: linear-gradient(135deg, #ff917e, #f7d7ce);
}

.sidebar {
  display: grid;
  gap: 24px;
  align-content: start;
}

.sidebar-close,
.sidebar-overlay {
  display: none;
}

.sidebar-block {
  padding-bottom: 22px;
  border-bottom: 1px solid #b9b9b9;
}

.sidebar-block h4 {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 10px;
}

.translate-block label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
}

.translate-block select {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  background: #111;
  color: #ddd;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.translate-block select:focus {
  outline: 2px solid rgba(255, 111, 92, 0.35);
  border-color: var(--accent);
}

.sidebar-nav {
  display: grid;
  gap: 6px;
}

.sidebar-nav a {
  color: var(--accent);
  font-size: 13px;
  line-height: 1.2;
}

.author-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 16px;
}

.author-initials {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 111, 92, 0.75);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 111, 92, 0.12);
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.author-block p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 4px;
}

.author-block span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.25;
}

.author-block a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 111, 92, 0.55);
  border-radius: 999px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.author-block a:hover {
  background: var(--accent);
  color: #111;
}

footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 34px;
  color: var(--text-muted);
  font-size: 12px;
  border-top: 1px solid var(--border);
}

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

.static-page {
  width: min(840px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 7vw, 72px);
  background: var(--accent);
  color: #111;
}

.static-page h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 7vw, 58px);
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.static-page p {
  max-width: 650px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.8;
}

.about-page {
  width: min(1120px, calc(100% - 18px));
  margin: 0 auto 50px;
}

.about-hero {
  background: var(--accent);
  color: #111;
  padding: clamp(54px, 9vw, 100px) clamp(34px, 11vw, 120px);
}

.about-hero h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(46px, 9vw, 74px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-body {
  display: grid;
  grid-template-columns: minmax(0, 650px) 150px;
  gap: clamp(28px, 8vw, 80px);
  padding: clamp(36px, 7vw, 74px) clamp(26px, 10vw, 110px);
}

.about-copy {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.85;
  color: #fff;
}

.about-copy p {
  margin-bottom: 18px;
}

.about-copy p:first-of-type::first-letter {
  float: left;
  color: var(--accent);
  font-size: 70px;
  font-weight: 700;
  line-height: 0.82;
  padding: 8px 10px 0 0;
}

.about-share {
  padding-top: 72px;
}

.about-share .share-button {
  color: var(--accent);
}

.about-people {
  display: grid;
  gap: 56px;
  justify-items: center;
  margin-top: 70px;
}

.about-person {
  display: grid;
  gap: 14px;
  justify-items: center;
  color: #fff;
  text-decoration: none;
}

.about-photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #202020;
  border: 1px solid #2f2f2f;
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  overflow: hidden;
}

.about-person span:last-child {
  color: #fff;
  font-size: 14px;
}

.about-person strong {
  color: var(--accent);
}

.about-person:hover .about-photo {
  border-color: var(--accent);
}

.legal-page {
  width: min(1120px, calc(100% - 18px));
  margin: 0 auto 50px;
}

.legal-hero {
  background: var(--accent);
  color: #111;
  padding: clamp(54px, 9vw, 100px) clamp(34px, 11vw, 120px);
}

.legal-hero h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 7vw, 64px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
}

.legal-body {
  display: grid;
  grid-template-columns: minmax(0, 650px) 150px;
  gap: clamp(28px, 8vw, 80px);
  padding: clamp(36px, 7vw, 74px) clamp(26px, 10vw, 110px);
}

.legal-copy {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.85;
  color: #fff;
}

.legal-copy p {
  margin-bottom: 20px;
}

.legal-copy ul,
.legal-copy ol {
  display: grid;
  gap: 18px;
  margin: 18px 0 24px 20px;
}

.legal-copy > p:first-of-type::first-letter {
  float: left;
  color: var(--accent);
  font-size: 70px;
  font-weight: 700;
  line-height: 0.82;
  padding: 8px 10px 0 0;
}

.legal-copy h3 {
  margin: 34px 0 18px;
  color: var(--accent);
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.contact-form {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--accent);
  background: #fff;
  color: #111;
  font: inherit;
}

.contact-form textarea {
  min-height: 86px;
  resize: vertical;
}

.contact-form .check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.contact-form .check-row input {
  width: auto;
}

.contact-form .check-row a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form button {
  min-height: 38px;
  border: 0;
  background: var(--accent);
  color: #111;
  cursor: pointer;
  font-weight: 700;
}

.contact-form button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.form-status {
  min-height: 22px;
  color: var(--accent);
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.post-page-shell {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
}

.post-reader-shell {
  width: min(1120px, calc(100% - 18px));
}

.single-post {
  color: var(--text);
}

.single-post-header {
  background: var(--accent);
  color: #101010;
  padding: clamp(46px, 8vw, 110px) clamp(26px, 10vw, 110px);
}

.single-post-header h2 {
  max-width: 900px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 7vw, 56px);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.single-post-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding: 30px clamp(24px, 10vw, 110px) 70px;
}

.single-post-main {
  max-width: 680px;
}

.back-link {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.single-post-main .meta {
  color: var(--text-soft);
  font-size: 13px;
  margin-bottom: 26px;
}

.post-content {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.85;
  color: #fff;
}

.post-content > p:first-of-type::first-letter {
  float: left;
  color: var(--accent);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 0.82;
  padding: 8px 10px 0 0;
}

.post-content p,
.post-content ul,
.post-content ol,
.post-content blockquote,
.post-content table {
  margin-bottom: 18px;
}

.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 28px auto;
}

.post-content a {
  color: var(--accent);
  font-weight: 700;
}

.post-content > :last-child {
  margin-bottom: 0 !important;
}

.post-content br:last-child {
  display: none;
}

.post-comments {
  margin-top: 18px;
  padding: 14px 0 0;
  border-top: 3px solid var(--accent);
}

.comments-heading {
  margin-bottom: 12px;
}

.comments-heading span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-soft);
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.comments-heading h3 {
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.comments-intro,
.comments-note {
  margin: 0;
  color: var(--text-soft);
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.comments-intro {
  margin-bottom: 6px;
}

.comments-status {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.comments-feedback {
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 107, 79, 0.65);
  background: rgba(255, 107, 79, 0.12);
  color: #fff;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.comments-feedback[hidden] {
  display: none;
}

#cusdis_thread {
  width: 100%;
  min-height: var(--cusdis-frame-height, 760px);
  padding: 0;
  color-scheme: dark;
}

#cusdis_thread iframe {
  display: block;
  width: 100% !important;
  min-height: var(--cusdis-frame-height, 760px);
  height: var(--cusdis-frame-height, 760px);
  border: 0;
  overflow: hidden;
}

@media (max-width: 699px) {
  #cusdis_thread {
    min-height: var(--cusdis-frame-height, 820px);
  }

  #cusdis_thread iframe {
    min-height: var(--cusdis-frame-height, 820px);
    height: var(--cusdis-frame-height, 820px);
  }
}

.single-post-aside {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.post-tool-button {
  min-width: 108px;
  border: 1px solid rgba(255, 107, 79, 0.7) !important;
  background: transparent !important;
  color: var(--accent);
  cursor: pointer;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 12px !important;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.post-tool-top {
  min-width: 44px;
  font-size: 18px;
  z-index: 20;
}

.post-tool-button:hover,
.post-tool-button:focus-visible {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #101010;
  outline: none;
}

.mobile-share-button {
  display: none;
}

#google_translate_element {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (min-width: 820px) {
  .single-post-body {
    grid-template-columns: minmax(0, 680px) 160px;
    align-items: start;
  }

  .single-post-aside {
    position: sticky;
    top: 28px;
    flex-direction: column;
    padding-top: 76px;
    width: 100%;
  }

  .post-tool-button {
    width: 100%;
  }
}

@media (max-width: 819px) {
  .post-reader-shell {
    width: 100%;
  }

  .single-post-body {
    gap: 18px;
    padding-inline: 16px;
  }

  .single-post-aside {
    align-items: stretch;
    justify-content: flex-end;
    gap: 0;
    margin-top: -8px;
  }

  .single-post-aside a[href="#comments"] {
    display: none;
  }

  .single-post-aside > .share-button {
    display: none;
  }

  .mobile-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    float: right;
    min-width: 132px;
    margin: -2px 0 14px 16px;
    border-color: var(--accent) !important;
    background: rgba(255, 107, 79, 0.12) !important;
    color: var(--accent);
    box-shadow: inset 0 0 0 1px rgba(255, 107, 79, 0.18);
  }

  .post-tool-top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    min-width: 46px;
    padding: 0 !important;
    border-radius: 999px;
    border-color: var(--accent) !important;
    background: var(--accent) !important;
    color: #101010;
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
  }
}

@media (min-width: 700px) {
  .post-featured {
    grid-template-columns: minmax(0, 2fr) minmax(230px, 0.9fr);
  }

  .post-card {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
    align-items: center;
  }

  .post-card .thumb {
    min-height: 180px;
  }
}

@media (min-width: 980px) {
  .site-header {
    padding-top: 34px;
  }

  .menu-btn,
  .nav-drawer,
  .sidebar-close {
    display: none;
  }

  .content-area {
    grid-template-columns: minmax(0, 900px) 200px;
    align-items: start;
    gap: 28px;
  }

  .post-featured {
    min-height: 350px;
  }

  .post-card {
    grid-template-columns: minmax(0, 1fr) 260px;
    padding: 42px 90px 38px 0;
  }
}

@media (max-width: 699px) {
  body.sidebar-open {
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg);
    border-bottom: 2px solid var(--accent);
  }

  .topbar,
  .content-area,
  .search-panel,
  footer {
    width: min(100% - 28px, 520px);
  }

  .sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 190;
    display: block;
    background: rgba(0, 0, 0, 0.58);
  }

  .sidebar-overlay[hidden] {
    display: none;
  }

  .brand h1 {
    font-size: 20px;
  }

  .brand p {
    max-width: 230px;
  }

  .featured-copy {
    padding: 28px 22px;
  }

  .featured-media {
    min-height: 210px;
  }

  .post-actions .read-more,
  .card-actions .rm {
    margin-left: 0;
  }

  .post-card {
    padding: 34px 0;
  }

  .post-card p:not(.meta),
  .post-featured p:not(.meta) {
    font-size: 16px;
  }

  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    width: min(86vw, 340px);
    overflow-y: auto;
    padding: 24px 18px 34px;
    background: #111;
    border-left: 1px solid var(--border);
    box-shadow: -18px 0 35px rgba(0, 0, 0, 0.36);
    transform: translateX(105%);
    transition: transform 0.24s ease;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 111, 92, 0.65);
    border-radius: 999px;
    background: rgba(255, 111, 92, 0.08);
    color: var(--accent);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .sidebar-block {
    padding: 22px 0;
    margin: 0;
    border-bottom: 1px solid #4a4a4a;
  }

  .sidebar-block h4 {
    font-size: 15px;
  }

  .sidebar-nav a {
    padding: 4px 0;
    font-size: 15px;
    line-height: 1.2;
  }

  .translate-block select {
    min-height: 42px;
  }

  .author-card {
    grid-template-columns: 48px 1fr;
  }

  .author-initials {
    width: 48px;
    height: 48px;
  }

  .about-page {
    width: min(100% - 18px, 520px);
  }

  .about-body {
    grid-template-columns: 1fr;
    padding: 34px 24px 58px;
  }

  .about-share {
    padding-top: 0;
  }

  .about-people {
    margin-top: 46px;
    gap: 42px;
  }

  .about-photo {
    width: 108px;
    height: 108px;
  }

  .legal-page {
    width: min(100% - 18px, 520px);
  }

  .legal-body {
    grid-template-columns: 1fr;
    paddi
