/*
 * Issue Note V4 — friendly blog home and Brunch-style reading layout.
 * Loaded after the base stylesheet so archive, search, comments and core
 * WordPress components keep their mature defaults.
 */

:root {
  --v4-ink: #202124;
  --v4-heading: #17181a;
  --v4-muted: #62666b;
  --v4-soft-text: #70757c;
  --v4-paper: #f7f8fb;
  --v4-white: #ffffff;
  --v4-line: #e4e6eb;
  --v4-purple: #6656c7;
  --v4-purple-soft: #f0edff;
  --v4-coral: #d85850;
  --v4-coral-soft: #fff0ee;
  --v4-yellow: #9b6200;
  --v4-yellow-soft: #fff5da;
  --v4-blue: #3268b7;
  --v4-blue-soft: #eaf2ff;
  --v4-green: #2f7650;
  --v4-green-soft: #e8f6ed;
  --v4-shell: 1160px;
}

body {
  color: var(--v4-ink);
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic",
    "Segoe UI", sans-serif;
}

.site-container,
.container {
  width: min(calc(100% - 48px), var(--v4-shell));
}

/* Header */
.site-header {
  min-height: 74px;
  border-bottom-color: var(--v4-line);
  background: rgba(255, 255, 255, 0.97);
}

.site-header__inner {
  grid-template-columns: minmax(290px, 1fr) auto 86px;
  min-height: 74px;
  column-gap: 20px;
}

.site-branding {
  gap: 0;
}

.site-branding__link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.site-branding__link:hover {
  color: inherit;
}

.site-branding__avatar,
.site-footer__avatar {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  overflow: hidden;
  place-items: center;
  border: 1px solid #d9dbe0;
  border-radius: 50%;
  background: #f1f1f1;
}

.site-branding__avatar-image,
.site-footer__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.42) translateY(3%);
}

.site-branding__text {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 14px;
}

.site-title {
  color: var(--v4-heading);
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.2;
  white-space: nowrap;
}

.site-title::before,
.site-title a::before {
  display: none;
}

.site-description {
  color: var(--v4-soft-text);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.primary-navigation {
  justify-self: end;
}

.primary-navigation ul,
.primary-menu {
  gap: 3px;
}

.primary-navigation a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #45494f;
  font-size: 13px;
  font-weight: 660;
  line-height: 1.2;
}

.primary-navigation a::after {
  display: none;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.primary-navigation .current-menu-item > a,
.primary-navigation .current-menu-ancestor > a,
.primary-navigation .current_page_item > a {
  color: #493a9e;
  background: var(--v4-purple-soft);
}

.header-actions {
  gap: 2px;
}

.header-search-toggle,
.menu-toggle {
  width: 40px;
  height: 40px;
}

.header-search-toggle:hover,
.menu-toggle:hover {
  background: #f0f1f4;
}

.header-search {
  border-bottom-color: var(--v4-line);
}

/* Shared home typography */
.issue-home {
  min-height: 55vh;
  padding: 0;
  background: var(--v4-paper);
}

.issue-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}

.issue-section-kicker {
  display: block;
  margin: 0 0 7px;
  color: var(--v4-purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.issue-section-heading h1,
.issue-section-heading h2 {
  margin: 0;
  color: var(--v4-heading);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.issue-section-heading h1 {
  font-size: 36px;
}

.issue-section-heading h2 {
  font-size: 30px;
}

.issue-section-heading > p {
  margin: 0 0 4px;
  color: var(--v4-muted);
  font-size: 12px;
}

.issue-category-chip {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 760;
  line-height: 1.25;
  text-decoration: none;
}

.issue-category-chip--society { color: #7a2925; background: var(--v4-coral-soft); }
.issue-category-chip--economy { color: #684000; background: var(--v4-yellow-soft); }
.issue-category-chip--international { color: #174477; background: var(--v4-blue-soft); }
.issue-category-chip--technology { color: #48358f; background: var(--v4-purple-soft); }
.issue-category-chip--life { color: #245f40; background: var(--v4-green-soft); }
.issue-category-chip--neutral { color: #52565b; background: #eff0f2; }

.issue-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.issue-post-meta time {
  color: #686d74;
  font-size: 11px;
}

.issue-post-meta time:only-child {
  margin-left: auto;
}

.issue-read-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4b3ba0;
  font-size: 11px;
  font-weight: 720;
  text-decoration: none;
}

.issue-read-link:hover {
  color: #4b3ba0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.issue-read-link span {
  font-size: 16px;
}

/* Monthly Top 3 */
.issue-popular-section {
  padding-block: 62px 92px;
}

.issue-popular-heading {
  margin-bottom: 30px;
}

.issue-popular-grid {
  display: grid;
  grid-template-columns: 1.48fr 0.78fr 0.78fr;
  gap: 16px;
}

.issue-popular-grid--1 {
  grid-template-columns: minmax(0, 1fr);
}

.issue-popular-grid--2 {
  grid-template-columns: 1.48fr 0.78fr;
}

.issue-popular-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--v4-line);
  border-radius: 17px;
}

.issue-popular-card--lead {
  display: grid;
  grid-template-columns: minmax(230px, 0.92fr) minmax(0, 1.08fr);
  background: var(--v4-white);
}

.issue-popular-image {
  position: relative;
  min-height: 355px;
  overflow: hidden;
  background: #e7e9ed;
}

.issue-popular-image img,
.issue-popular-image__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.issue-popular-image:hover img {
  transform: scale(1.025);
}

.issue-popular-image__placeholder {
  display: grid;
  place-items: center;
  color: #493a9e;
  background: linear-gradient(145deg, #f0edff, #eaf2ff);
  font-size: 58px;
  font-weight: 300;
}

.issue-rank-label {
  position: absolute;
  top: 16px;
  left: 16px;
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  color: #7a2925;
  background: #fff0ee;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  font-size: 10px;
  font-weight: 760;
}

.issue-popular-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 27px;
}

.issue-popular-card h2 {
  margin: 23px 0 15px;
  color: var(--v4-ink);
  font-size: 24px;
  font-weight: 780;
  line-height: 1.36;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.issue-popular-card h2 a {
  color: inherit;
  text-decoration: none;
}

.issue-popular-card h2 a:hover {
  color: var(--v4-purple);
}

.issue-popular-card p {
  margin: 0 0 22px;
  color: var(--v4-muted);
  font-size: 12px;
  line-height: 1.7;
}

.issue-popular-content .issue-read-link {
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid var(--v4-line);
}

.issue-popular-card--compact {
  display: flex;
  min-height: 355px;
  flex-direction: column;
  padding: 25px;
}

.issue-popular-card--rank-2 {
  border-color: #dfdcf5;
  background: #f7f6ff;
}

.issue-popular-card--rank-3 {
  border-color: #eee2c1;
  background: #fffaf0;
}

.issue-rank-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 15px;
  font-size: 17px;
  font-weight: 840;
}

.issue-rank-mark--2 { color: #4f3da1; background: #e4e0ff; }
.issue-rank-mark--3 { color: #815300; background: #ffe9ad; }
.issue-rank-mark--fallback {
  color: #245f40;
  background: var(--v4-green-soft);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.issue-popular-card--compact h2 {
  margin-top: 25px;
  font-size: 20px;
}

.issue-popular-card--compact .issue-read-link {
  margin-top: auto;
}

/* Latest posts */
.issue-latest-section {
  padding-block: 88px 100px;
  border-top: 1px solid var(--v4-line);
  background: var(--v4-white);
}

.issue-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: start;
}

.issue-latest-heading {
  margin-bottom: 30px;
}

.issue-post-list {
  border-top: 1px solid #d9dce1;
}

.issue-post-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr);
  gap: 25px;
  padding-block: 25px;
  border-bottom: 1px solid var(--v4-line);
}

.issue-post-thumbnail,
.issue-post-placeholder {
  align-self: start;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 11px;
  background: #eeeeee;
  text-decoration: none;
}

.issue-post-thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.issue-post-thumbnail:hover img {
  transform: scale(1.03);
}

.issue-post-placeholder {
  display: grid;
  place-items: center;
}

.issue-post-placeholder span {
  font-size: 46px;
  font-weight: 230;
}

.issue-post-placeholder--society { color: #8b3830; background: var(--v4-coral-soft); }
.issue-post-placeholder--economy { color: #805300; background: var(--v4-yellow-soft); }
.issue-post-placeholder--international { color: #23598f; background: var(--v4-blue-soft); }
.issue-post-placeholder--technology { color: #4f3da1; background: var(--v4-purple-soft); }
.issue-post-placeholder--life { color: #2f7650; background: var(--v4-green-soft); }
.issue-post-placeholder--neutral { color: #62666b; background: #eff0f2; }

.issue-post-row__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-block: 3px;
}

.issue-post-row h3 {
  margin: 15px 0 8px;
  color: #242629;
  font-size: 21px;
  font-weight: 750;
  line-height: 1.42;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.issue-post-row h3 a {
  color: inherit;
  text-decoration: none;
}

.issue-post-row h3 a:hover {
  color: var(--v4-purple);
}

.issue-post-row p {
  margin: 0 0 14px;
  color: var(--v4-muted);
  font-size: 12px;
  line-height: 1.68;
}

.issue-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.issue-post-tags a {
  color: #666a70;
  font-size: 10px;
  text-decoration: none;
}

.issue-post-tags a:hover {
  color: var(--v4-purple);
  text-decoration: underline;
}

.issue-home-empty {
  padding: 32px;
  border: 1px dashed #d8dae0;
  border-radius: 14px;
  color: var(--v4-muted);
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.issue-home-pagination {
  margin-top: 30px;
}

.issue-home-pagination ul,
.issue-home-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.issue-home-pagination a,
.issue-home-pagination span {
  min-width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 5px 10px;
  border-radius: 10px;
  background: #f3f2fb;
  color: #4b3ba0;
  font-size: 12px;
  text-decoration: none;
}

.issue-home-pagination .current {
  background: var(--v4-purple);
  color: #ffffff;
}

/* Home sidebar */
.issue-home-sidebar {
  min-width: 0;
}

.issue-sidebar-card {
  margin-bottom: 15px;
  padding: 25px;
  border: 1px solid var(--v4-line);
  border-radius: 14px;
  background: var(--v4-white);
}

.issue-sidebar-title {
  display: block;
  margin: 0 0 21px;
  color: #25272a;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.issue-profile-card {
  border-color: #dfdcf5;
  background: #f7f6ff;
}

.issue-profile-intro {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
}

.issue-profile-avatar {
  width: 82px;
  height: 82px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
}

.issue-profile-intro h3 {
  margin: 0 0 6px;
  color: #29272f;
  font-size: 15px;
  font-weight: 780;
}

.issue-profile-intro p {
  margin: 0;
  color: #5d5969;
  font-size: 11px;
  line-height: 1.62;
}

.issue-category-card nav {
  display: grid;
}

.issue-category-card nav a {
  min-height: 43px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--v4-line);
  color: inherit;
  font-size: 11px;
  text-decoration: none;
}

.issue-category-card nav a:last-child {
  border-bottom: 0;
}

.issue-category-card nav a > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 650;
}

.issue-category-card nav b {
  color: #767a81;
  font-weight: 530;
}

.issue-category-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.issue-category-dot--society { background: var(--v4-coral); }
.issue-category-dot--economy { background: #d59821; }
.issue-category-dot--international { background: var(--v4-blue); }
.issue-category-dot--technology { background: var(--v4-purple); }
.issue-category-dot--life { background: var(--v4-green); }
.issue-category-dot--neutral { background: #8a8e94; }

.issue-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.issue-tag-cloud a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: #493a91;
  background: var(--v4-purple-soft);
  font-size: 10px;
  font-weight: 620;
  text-decoration: none;
}

.issue-tag-cloud a:hover {
  color: #493a91;
  background: #e1dcff;
}

/* Brunch-like single article */
.issue-article-page {
  padding-block: 68px 110px;
  background: #ffffff;
}

.issue-article-layout {
  grid-template-columns: minmax(0, 740px) 310px;
  justify-content: space-between;
  gap: 72px;
}

.issue-back-link {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--v4-muted);
  font-size: 11px;
  font-weight: 650;
  text-decoration: none;
}

.issue-back-link:hover {
  color: var(--v4-purple);
  text-decoration: underline;
}

.issue-article-header {
  margin-bottom: 0;
}

.issue-article-header .entry-title {
  max-width: 720px;
  margin: 20px 0 18px;
  color: var(--v4-heading);
  font-size: clamp(44px, 4.2vw, 56px);
  font-weight: 820;
  line-height: 1.14;
  letter-spacing: -0.058em;
}

.issue-article-deck {
  max-width: 660px;
  margin: 0 0 25px;
  color: #5c6168;
  font-size: 16px;
  line-height: 1.72;
}

.issue-article-meta {
  margin: 0 0 38px;
  color: #686d74;
  font-size: 11px;
}

.issue-article-meta > * + *::before {
  margin: 0 9px 0 0;
  color: #a0a4aa;
  content: "·";
}

.issue-article-cover {
  margin: 0 0 53px;
}

.issue-article-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 13px;
  object-fit: cover;
}

.issue-article-cover figcaption {
  margin-top: 9px;
  color: #6d7279;
  font-size: 10px;
}

.issue-article-body {
  max-width: 680px;
  color: #2f3236;
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: -0.012em;
}

.issue-article-body > p {
  margin-bottom: 29px;
}

.issue-article-body h2 {
  margin: 72px 0 24px;
  color: #1e2023;
  font-size: 29px;
  font-weight: 790;
  line-height: 1.38;
  letter-spacing: -0.045em;
}

.issue-article-body blockquote,
.issue-article-body .wp-block-quote {
  padding: 36px 24px;
  margin: 63px 0;
  border: 0;
  border-block: 1px solid var(--v4-line);
  color: #45388c;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.62;
  text-align: center;
}

.issue-article-layout > .sidebar {
  padding-top: 95px;
}

.issue-article-layout .sidebar-card {
  border-radius: 14px;
}

.issue-article-layout .profile-card {
  border-color: #dfdcf5;
  background: #f7f6ff;
}

.issue-article-layout .profile-card__avatar {
  object-fit: cover;
}

/* Footer */
.site-footer {
  padding: 42px 0;
  border-top-color: var(--v4-line);
  background: #f0f1f4;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 46px;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.site-footer__avatar {
  width: 36px;
  height: 36px;
}

.site-footer__brand strong,
.site-footer__brand small {
  display: block;
}

.site-footer__brand strong {
  color: var(--v4-heading);
  font-size: 16px;
  font-weight: 800;
}

.site-footer__brand small {
  margin-top: 2px;
  color: #6e7279;
  font-size: 9px;
}

.site-footer__nav {
  display: flex;
  gap: 22px;
}

.site-footer__nav a {
  color: #55595f;
  font-size: 11px;
  font-weight: 620;
  text-decoration: none;
}

.site-footer__nav a:hover {
  text-decoration: underline;
}

.site-footer__copyright {
  margin: 0;
  color: #767b82;
  font-size: 9px;
}

@media (max-width: 1060px) {
  .site-header__inner {
    grid-template-columns: minmax(210px, 1fr) auto 86px;
    gap: 12px;
  }

  .site-branding .site-description {
    display: none;
  }

  .primary-navigation a {
    padding-inline: 10px;
  }

  .issue-popular-grid {
    grid-template-columns: 1.28fr 0.8fr 0.8fr;
  }

  .issue-popular-card--lead {
    display: block;
  }

  .issue-popular-image {
    display: block;
    min-height: 230px;
  }

  .issue-popular-content {
    min-height: 280px;
  }

  .issue-home-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 42px;
  }

  .issue-article-layout {
    grid-template-columns: minmax(0, 1fr) 285px;
    gap: 46px;
  }
}

@media (max-width: 820px) {
  .site-container,
  .container {
    width: min(calc(100% - 32px), var(--v4-shell));
  }

  .site-header,
  .site-header__inner {
    min-height: 66px;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) 84px;
  }

  .site-branding__avatar {
    width: 34px;
    height: 34px;
  }

  .site-title {
    font-size: 18px;
  }

  .header-actions {
    grid-column: 2;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .primary-navigation {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: stretch;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--v4-line);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  }

  .has-js .primary-navigation {
    display: none;
  }

  .has-js .primary-navigation.is-open,
  .has-js .primary-navigation.toggled {
    display: block;
  }

  .primary-navigation ul,
  .primary-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .primary-navigation a {
    justify-content: center;
    padding: 10px 8px;
  }

  .issue-popular-grid {
    grid-template-columns: 1fr 1fr;
  }

  .issue-popular-card--lead {
    grid-column: 1 / -1;
    display: grid;
  }

  .issue-home-layout {
    grid-template-columns: 1fr;
  }

  .issue-home-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .issue-home-sidebar .issue-sidebar-card {
    margin: 0;
  }

  .issue-profile-card {
    grid-column: 1 / -1;
  }

  .issue-article-page {
    padding-top: 50px;
  }

  .issue-article-layout {
    display: block;
  }

  .issue-article-main {
    max-width: 740px;
    margin-inline: auto;
  }

  .issue-article-layout > .sidebar {
    max-width: 740px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 40px auto 0;
    padding-top: 45px;
    border-top: 1px solid var(--v4-line);
  }

  .issue-article-layout > .sidebar .sidebar-card {
    margin: 0;
  }

  .issue-article-layout > .sidebar .profile-card {
    grid-column: 1 / -1;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer__copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .issue-popular-section {
    padding-block: 46px 72px;
  }

  .issue-section-heading {
    display: block;
    margin-bottom: 24px;
  }

  .issue-section-heading h1 {
    font-size: 32px;
  }

  .issue-section-heading h2 {
    font-size: 27px;
  }

  .issue-section-heading > p {
    margin-top: 9px;
    line-height: 1.55;
  }

  .issue-popular-grid,
  .issue-popular-grid--2 {
    display: block;
  }

  .issue-popular-card {
    margin-bottom: 12px;
  }

  .issue-popular-card--lead {
    display: block;
  }

  .issue-popular-image {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .issue-popular-content {
    min-height: 0;
    padding: 23px 21px;
  }

  .issue-popular-card h2 {
    font-size: 22px;
  }

  .issue-popular-card--compact {
    min-height: 300px;
    padding: 22px;
  }

  .issue-rank-mark {
    width: 49px;
    height: 49px;
    margin-bottom: 20px;
  }

  .issue-latest-section {
    padding-block: 72px 80px;
  }

  .issue-post-row {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 15px;
    padding-block: 19px;
  }

  .issue-post-thumbnail,
  .issue-post-placeholder {
    aspect-ratio: 1 / 1;
  }

  .issue-post-row h3 {
    margin-top: 11px;
    font-size: 17px;
  }

  .issue-post-row p {
    display: none;
  }

  .issue-home-sidebar,
  .issue-article-layout > .sidebar {
    display: block;
  }

  .issue-home-sidebar .issue-sidebar-card,
  .issue-article-layout > .sidebar .sidebar-card {
    margin-bottom: 13px;
  }

  .issue-article-header .entry-title {
    font-size: 39px;
  }

  .issue-article-deck {
    font-size: 15px;
  }

  .issue-article-cover {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .issue-article-cover img {
    border-radius: 0;
  }

  .issue-article-cover figcaption {
    padding-inline: 16px;
  }

  .issue-article-body {
    font-size: 16.5px;
    line-height: 1.86;
  }

  .issue-article-body h2 {
    margin-top: 58px;
    font-size: 26px;
  }

  .site-footer__inner {
    display: block;
  }

  .site-footer__nav {
    margin: 27px 0;
  }
}

@media (max-width: 360px) {
  .site-container,
  .container {
    width: min(calc(100% - 24px), var(--v4-shell));
  }

  .issue-post-row {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 12px;
  }

  .issue-article-cover {
    width: calc(100% + 24px);
    margin-left: -12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .issue-popular-image img,
  .issue-post-thumbnail img {
    transition: none;
  }
}

@media print {
  .issue-popular-section,
  .issue-home-sidebar,
  .issue-article-layout > .sidebar,
  .issue-back-link {
    display: none !important;
  }
}
