:root {
  --text: #111318;
  --muted: #5d6675;
  --line: rgba(17, 19, 24, 0.1);
  --blue: #2563eb;
  --soft: #f5f7fb;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: #ffffff;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.blog-topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  display: block;
  border-radius: 10px;
}

.brand span {
  color: #0b0d18;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: normal;
  white-space: nowrap;
}

.blog-topbar nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-topbar nav a,
.resources-nav-menu summary {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  color: #20242c;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.resources-nav-menu {
  position: relative;
  display: inline-flex;
}

.resources-nav-menu summary {
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  list-style: none;
}

.resources-nav-menu summary::-webkit-details-marker {
  display: none;
}

.resources-nav-menu summary svg {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.resources-nav-menu[open] summary {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, 0.08);
}

.resources-nav-menu[open] summary svg {
  transform: rotate(180deg);
}

.resources-nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 246px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.14);
}

.resources-nav-panel a {
  justify-content: flex-start;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  color: #20242c;
  white-space: nowrap;
}

.resources-nav-panel a:hover,
.blog-topbar nav > a:not(.primary-link):hover,
.blog-topbar .mobile-nav-panel a:hover {
  background: rgba(37, 99, 235, 0.07);
  color: #0f3fb8;
}

.blog-topbar .primary-link {
  color: #ffffff;
  background: #111318;
  white-space: nowrap;
}

.tool-floating-ai {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: #111318;
  box-shadow: 0 22px 52px -30px rgba(15, 23, 42, 0.88);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.tool-floating-ai:hover {
  color: #ffffff;
  background: #20242c;
  transform: translateY(-2px);
  box-shadow: 0 26px 58px -30px rgba(15, 23, 42, 0.92);
}

.tool-floating-ai:active {
  transform: translateY(0) scale(0.985);
}

.tool-floating-ai svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
}

.mobile-nav-menu {
  display: none;
  position: relative;
}

.mobile-nav-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  list-style: none;
}

.mobile-nav-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-menu summary span {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #111318;
}

.mobile-nav-menu summary span:nth-child(1) {
  transform: translateY(-5px);
}

.mobile-nav-menu summary span:nth-child(3) {
  transform: translateY(5px);
}

.mobile-nav-menu[open] summary span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-nav-menu[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-menu[open] summary span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-nav-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: grid;
  min-width: 148px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.blog-topbar .mobile-nav-panel a {
  justify-content: flex-start;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
}

.blog-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0 96px;
  min-width: 0;
}

.blog-hero {
  max-width: 840px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: 4.6rem;
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: #ffffff;
  background: #111318;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #ffffff;
}

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

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: clamp(72px, 11vw, 128px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.blog-preview-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.blog-preview-grid h2 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.blog-preview-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.blog-index-shell {
  width: min(1240px, calc(100% - 32px));
  padding: 54px 0 84px;
}

.blog-index-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  align-items: center;
  gap: 64px;
  max-width: none;
  min-height: 360px;
  padding: 36px 26px 42px;
}

.blog-hero-copy {
  min-width: 0;
}

.blog-index-hero .kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  color: #4f46e5;
  background: #eef0ff;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.blog-index-hero h1 {
  margin: 18px 0 0;
  max-width: 620px;
  color: #071026;
  font-size: 4.05rem;
  line-height: 0.98;
  font-weight: 850;
  letter-spacing: 0;
  text-wrap: balance;
}

.blog-index-hero .lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: #34415a;
  font-size: 1.04rem;
  line-height: 1.62;
}

.blog-index-hero .actions {
  margin-top: 34px;
}

.blog-index-hero .button {
  min-width: 126px;
  min-height: 52px;
  border-radius: 8px;
  font-size: 0.98rem;
}

.blog-index-hero .button.primary {
  background: #4f46e5;
  box-shadow: 0 18px 34px -22px rgba(79, 70, 229, 0.85);
}

.blog-index-hero .button.secondary {
  color: #111827;
  border-color: rgba(17, 24, 39, 0.16);
  box-shadow: 0 14px 30px -24px rgba(15, 23, 42, 0.28);
}

.blog-hero-media {
  margin: 0;
  min-width: 0;
  aspect-ratio: 1.32 / 1;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 24px 58px -36px rgba(15, 23, 42, 0.58);
}

.blog-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-index-panel {
  margin-top: 28px;
  padding: 28px 32px 32px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 26px 68px -54px rgba(15, 23, 42, 0.34);
}

.blog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: min(410px, 100%);
  color: #738097;
}

.search-box svg {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.search-box input,
.control-group select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  color: #111827;
  background: #ffffff;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 650;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.search-box input {
  padding: 0 16px 0 46px;
}

.control-group {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.control-group select {
  min-width: 142px;
  padding: 0 42px 0 16px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #5f6b7d 50%),
    linear-gradient(135deg, #5f6b7d 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 52%,
    calc(100% - 16px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.search-box input:focus,
.control-group select:focus {
  border-color: rgba(79, 70, 229, 0.52);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.blog-index-panel .blog-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.blog-index-panel .post-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 38px -32px rgba(15, 23, 42, 0.44);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-index-panel .post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 70, 229, 0.26);
  box-shadow: 0 26px 48px -34px rgba(15, 23, 42, 0.52);
}

.post-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.35 / 1;
  background: #f1f5fb;
  text-decoration: none;
}

.post-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.post-card:hover .post-media img {
  transform: scale(1.03);
}

.post-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px 18px 16px;
}

.blog-index-panel .post-card h2 {
  margin: 0;
  color: #10172a;
  font-size: 1.08rem;
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: 0;
}

.blog-index-panel .post-card h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-index-panel .post-card h2 a:hover {
  color: #4f46e5;
}

.blog-index-panel .post-card p {
  margin: 10px 0 0;
  color: #455168;
  font-size: 0.96rem;
  line-height: 1.36;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  color: #667085;
  font-size: 0.84rem;
  font-weight: 650;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-meta span::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18M5 4h14a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E");
}

.post-meta a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  width: auto;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #4f46e5;
  font-size: 0.86rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.post-meta a:hover {
  background: #eef0ff;
}

.empty-state {
  margin: 28px 0 0;
  padding: 24px;
  border-radius: 12px;
  color: #455168;
  background: #f8fafc;
  text-align: center;
  font-weight: 700;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 42px 0 0;
  color: #34415a;
  font-size: 0.92rem;
  font-weight: 750;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  text-decoration: none;
}

.blog-pagination a {
  color: inherit;
  border: 1px solid transparent;
}

.blog-pagination a:hover {
  border-color: rgba(79, 70, 229, 0.18);
  color: #4f46e5;
}

.blog-pagination .is-active {
  color: #ffffff;
  background: #4f46e5;
  box-shadow: 0 14px 28px -18px rgba(79, 70, 229, 0.8);
}

@media (max-width: 1080px) {
  .blog-index-shell {
    width: min(100% - 28px, 920px);
  }

  .blog-index-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-inline: 18px;
  }

  .blog-index-hero h1,
  .blog-index-hero .lead {
    max-width: 720px;
  }

  .blog-hero-media {
    width: min(520px, 100%);
  }

  .blog-index-panel .blog-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .blog-index-shell {
    padding-top: 52px;
  }

  .blog-index-hero h1 {
    font-size: 3.15rem;
  }

  .blog-index-panel {
    padding: 20px;
  }

  .blog-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

  .control-group {
    width: 100%;
  }

  .control-group label {
    flex: 1 1 0;
  }

  .control-group select {
    min-width: 0;
  }

  .blog-index-panel .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.article-shell {
  width: min(980px, calc(100% - 32px));
  padding-top: 72px;
}

.blog-article {
  max-width: 760px;
  margin: 0 auto;
  min-width: 0;
}

.blog-article h1 {
  margin: 0;
  font-size: 2.72rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.article-dek {
  margin-top: 16px;
  color: #20242c;
  font-size: 1.18rem;
  line-height: 1.5;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.language-switch,
.language-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.language-switch a,
.language-switch span,
.language-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.language-switch span,
.language-links a[aria-current="page"] {
  color: #111318;
  background: #f8fafc;
}

.blog-article h2 {
  margin: 56px 0 14px;
  font-size: 1.68rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.blog-article h3 {
  margin: 34px 0 10px;
  font-size: 1.14rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.blog-article p,
.blog-article li {
  font-size: 1.02rem;
}

.blog-article p {
  margin: 18px 0 0;
}

.blog-article ul,
.blog-article ol {
  margin: 18px 0 0;
  padding-left: 24px;
}

.blog-article li + li {
  margin-top: 7px;
}

.blog-article blockquote {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  background: #ffffff;
}

.blog-article blockquote p {
  margin: 0;
}

.article-tldr,
.article-note {
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 8px;
  background: #ffffff;
  max-width: 100%;
  box-sizing: border-box;
}

.article-tldr h2,
.article-note h2 {
  margin-top: 0;
  font-size: 1.22rem;
}

.article-tldr p:first-of-type,
.article-note p:first-of-type {
  margin-top: 12px;
}

.article-visual {
  margin: 34px 0 0;
  max-width: 100%;
  overflow: hidden;
}

.article-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.article-visual figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.portrait-visual {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.article-cta {
  margin: 42px 0 0;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: #ffffff;
  max-width: 100%;
}

.article-cta h2 {
  margin: 0;
  font-size: 1.32rem;
}

.article-cta p {
  margin-top: 12px;
}

.strong-cta {
  border-color: rgba(17, 19, 24, 0.14);
  background: #111318;
  color: #ffffff;
}

.strong-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.strong-cta .button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.checklist li::marker {
  color: var(--blue);
}

.related-links {
  margin: 42px 0 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.related-links h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.related-links a {
  display: block;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.related-links a + a {
  margin-top: 10px;
}

.blog-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 8px 0 48px;
  color: var(--muted);
  text-align: center;
}

.blog-footer .copyright-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 8px;
  margin-bottom: 10px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.blog-footer .copyright-note,
.blog-footer a {
  color: #434242;
  text-decoration: none;
}

.blog-footer a:hover {
  color: #666;
  text-decoration: underline;
}

.blog-footer .merchant-footer-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 10px;
  color: rgba(17, 24, 39, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

.blog-footer .merchant-footer-note span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .blog-topbar {
    align-items: center;
    gap: 8px;
  }

  .brand span {
    font-size: 1.05rem;
  }

  .blog-topbar nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
  }

  .blog-topbar .primary-link {
    min-height: 40px;
    max-width: 132px;
    padding: 0 13px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .blog-topbar nav > a:not(.primary-link) {
    display: none;
  }

  .blog-topbar .resources-nav-menu {
    display: none;
  }

  .mobile-nav-menu {
    display: inline-flex;
  }

  .tool-floating-ai {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 48px;
    padding: 0 15px;
    font-size: 0.9rem;
  }

  .blog-hero h1 {
    max-width: 680px;
    font-size: 2.7rem;
  }

  .blog-index-hero {
    padding: 16px 0 22px;
    min-height: 0;
  }

  .blog-index-hero h1 {
    font-size: 2.52rem;
  }

  .blog-index-hero .lead {
    font-size: 1rem;
  }

  .blog-index-hero .button {
    flex: 1 1 0;
    min-width: 0;
  }

  .blog-hero-media {
    aspect-ratio: 1.36 / 1;
    border-radius: 16px;
  }

  .blog-index-panel {
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .blog-index-panel .blog-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .post-media {
    aspect-ratio: 1.45 / 1;
  }

  .blog-pagination {
    gap: 8px;
  }

  .blog-article h1 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .blog-article h2 {
    font-size: 1.42rem;
  }

  .article-dek {
    font-size: 1.05rem;
  }

  .blog-article p,
  .blog-article li {
    font-size: 1rem;
  }

  .article-shell {
    padding-top: 48px;
  }

  .blog-footer {
    width: min(100% - 28px, 720px);
  }
}
