.article {
    background: #ffffff;
  }

  .article-toc-nav-button {
    display: inline-flex;
    width: auto;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    padding: 7px 12px;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition:
      border-color 0.2s ease,
      color 0.2s ease,
      background 0.2s ease;
  }

  .article-toc-nav-button:hover,
  .article-toc-nav-button[aria-expanded="true"] {
    border-color: #3339f1;
    background: #eef2ff;
    color: #3339f1;
  }

  .article-header {
    padding: 100px 0 50px;
    border-bottom: 0;
  }

  .article-hero {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .mobile-breadcrumbs {
    display: none;
  }

  .article-hero .breadcrumbs {
    margin-bottom: 30px;
    color: #6b7280;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
  }

  .article-hero .breadcrumbs span {
    color: #374151;
    font-weight: 600;
  }

  h1 {
    max-width: 750px;
    margin: 0;
    overflow-wrap: anywhere;
    color: #111827;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .subtitle {
    margin: 20px 0 0;
    color: #374151;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
  }

  .article-meta-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 32px;
    margin-top: 40px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .meta-person,
  .meta-updated,
  .meta-reading-time {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    min-width: 0;
  }

  .meta-person img {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    border-radius: 50%;
  }

  .meta-person span,
  .meta-updated span,
  .meta-reading-time span {
    display: block;
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
  }

  .meta-person strong,
  .meta-updated strong,
  .meta-reading-time strong {
    display: block;
    margin-top: 3px;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
  }

  .meta-updated,
  .meta-reading-time {
    display: block;
    align-self: end;
  }

  .article-shell {
    box-sizing: border-box;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .article-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1216px) auto;
    column-gap: 0;
    position: relative;
    padding-top: 60px;
    padding-bottom: 96px;
  }

  .article-content-grid {
    grid-column: 2;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 50px;
    width: 100%;
    min-width: 0;
  }

  .article-content-grid.has-no-toc {
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
  }

  .article-toc {
    display: block;
    min-width: 0;
  }

  .toc-card {
    position: sticky;
    top: 112px;
    max-height: calc(100vh - 144px);
    overflow: auto;
    background: #ffffff;
    padding: 20px 0;
  }

  .toc-card nav {
    display: grid;
    gap: 0;
  }

  .toc-card a {
    display: block;
    border-left: 2px solid #e5e7eb;
    padding: 5px 0 5px 14px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .toc-card a:hover,
  .toc-card a.is-active {
    color: #3339f1;
    border-left-color: #3339f1;
  }

  .toc-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: start;
    gap: 4px;
  }

  .toc-heading-row a:not(.has-children) {
    grid-column: 1 / -1;
  }

  .toc-toggle {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: #f9fafb;
    color: #6b7280;
    cursor: pointer;
    transition:
      background 0.2s ease,
      color 0.2s ease;
  }

  .toc-toggle:hover,
  .toc-toggle.is-open {
    background: #eff6ff;
    color: #3339f1;
  }

  .toc-toggle svg {
    width: 14px;
    height: 14px;
    transition: 0.2s ease;
  }

  .toc-toggle.is-open svg {
    transform: rotate(-90deg);
  }

  .toc-card a.is-sub {
    padding-left: 28px;
    font-weight: 400;
    font-size: 13px;
  }

  .toc-card a.is-sub {
    display: none;
  }

  .toc-card a.is-sub.is-visible {
    display: block;
  }

  .article-toc-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    background: #000000;
    color: #ffffff;
  }

  .article-toc-overlay.is-open {
    display: block;
  }

  .article-toc-panel {
    display: flex;
    height: 100%;
    flex-direction: column;
  }

  .article-toc-panel-header {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0 20px;
  }

  .article-toc-panel-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
  }

  .article-toc-close {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
  }

  .article-toc-close svg {
    width: 24px;
    height: 24px;
  }

  .article-toc-panel-nav {
    display: grid;
    align-content: start;
    gap: 0;
    overflow: auto;
    padding: 20px 20px 40px;
  }

  .article-toc-panel-nav a {
    display: block;
    min-width: 0;
    border-left: 0;
    padding: 9px 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
  }

  .article-toc-panel-nav a.is-active {
    font-weight: 800;
  }

  .article-toc-panel-nav a.is-sub {
    display: none;
    padding-left: 14px;
    font-size: 14px;
    font-weight: 400;
  }

  .article-toc-panel-nav a.is-sub.is-visible {
    display: block;
  }

  .article-toc-panel-nav .toc-toggle {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
  }

  .article-toc-panel-nav .toc-toggle:hover,
  .article-toc-panel-nav .toc-toggle.is-open {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
  }

  .article-body {
    min-width: 0;
  }

  .post-share-buttons {
    grid-column: 3;
    grid-row: 1;
    position: sticky;
    top: 112px;
    align-self: start;
    width: 40px;
    min-width: 0;
    margin-left: 20px;
    padding-top: 20px;
  }

  .post-share-buttons ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .post-share-buttons li {
    margin: 0;
    padding: 0;
  }

  .post-share-buttons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #f9fafb;
    color: #6b7280;
    text-decoration: none;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      0.2s ease;
  }

  .post-share-buttons a:hover {
    transform: translateY(-2px);
    background: #eff6ff;
    color: #2563eb;
  }

  .post-share-buttons svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .content {
    color: #374151;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    overflow-wrap: anywhere;
  }

  .content *,
  .content *::before,
  .content *::after {
    box-sizing: border-box;
  }

  .content :first-child {
    margin-top: 0;
  }

  .content :last-child {
    margin-bottom: 0;
  }

  .content h1,
  .content h2,
  .content h3,
  .content h4,
  .content h5,
  .content h6 {
    scroll-margin-top: 112px;
    color: #111827;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .content h1 {
    margin: 64px 0 24px;
    font-size: 40px;
  }

  .content h2 {
    scroll-margin-top: 112px;
    margin: 60px 0 20px;
    font-size: 32px;
  }

  .content h3 {
    margin: 40px 0 16px;
    font-size: 24px;
    line-height: 1.4;
  }

  .content h4 {
    margin: 34px 0 14px;
    font-size: 22px;
    line-height: 1.4;
  }

  .content h5 {
    margin: 30px 0 12px;
    font-size: 19px;
    line-height: 1.45;
  }

  .content h6 {
    margin: 28px 0 12px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.45;
    text-transform: uppercase;
  }

  .content p,
  .content address {
    margin: 0 0 24px;
  }

  .content a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
  }

  .content a:hover {
    color: #1d4ed8;
    text-decoration-color: #1d4ed8;
  }

  .content strong,
  .content b {
    color: #111827;
    font-weight: 700;
  }

  .content em,
  .content i {
    color: #1f2937;
  }

  .content mark {
    border-radius: 4px;
    background: #fef3c7;
    padding: 0 4px;
    color: #92400e;
  }

  .content small {
    font-size: 0.875em;
  }

  .content sub,
  .content sup {
    font-size: 0.75em;
    line-height: 0;
  }

  .content abbr[title] {
    cursor: help;
    text-decoration: underline dotted;
    text-underline-offset: 3px;
  }

  .content hr,
  .content .wp-block-separator {
    height: 1px;
    margin: 48px 0;
    border: 0;
    background: #e5e7eb;
  }

  .content .wp-block-separator.is-style-wide {
    height: 2px;
  }

  .content .wp-block-separator.is-style-dots {
    height: auto;
    background: transparent;
    text-align: center;
  }

  .content .wp-block-separator.is-style-dots::before {
    color: #9ca3af;
    content: "...";
    font-size: 28px;
    letter-spacing: 12px;
  }

  .content ul,
  .content ol {
    margin: 0 0 24px;
    padding-left: 28px;
  }

  .content ul {
    list-style: disc;
  }

  .content ol {
    list-style: decimal;
  }

  .content li {
    margin: 8px 0;
    padding-left: 4px;
  }

  .content li::marker {
    color: #2563eb;
    font-weight: 700;
  }

  .content li > ul,
  .content li > ol {
    margin: 8px 0 0;
  }

  .content dl {
    margin: 0 0 24px;
  }

  .content dt {
    color: #111827;
    font-weight: 700;
  }

  .content dd {
    margin: 6px 0 16px 20px;
    color: #4b5563;
  }

  .content figure {
    margin: 36px 0 44px;
  }

  .content img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }

  .content figure img {
    margin: 0;
  }

  .content p:has(> img:only-child) {
    margin: 36px 0 44px;
  }

  .content figure + p,
  .content figure + h2,
  .content figure + h3,
  .content p:has(img + p),
  .content p:has(img + h2),
  .content p:has(img + h3) {
    margin-top: 36px;
  }

  .content figcaption,
  .content .wp-caption-text {
    margin-top: 10px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
  }

  .content .aligncenter {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .content .alignleft {
    float: left;
    max-width: min(50%, 360px);
    margin: 8px 24px 16px 0;
  }

  .content .alignright {
    float: right;
    max-width: min(50%, 360px);
    margin: 8px 0 16px 24px;
  }

  .content .alignwide,
  .content .alignfull {
    width: 100%;
    max-width: 100%;
  }

  .content blockquote,
  .content .wp-block-quote {
    margin: 32px 0;
    border-left: 4px solid #2563eb;
    border-radius: 0 12px 12px 0;
    background: #f8fafc;
    padding: 24px 28px;
    color: #374151;
    font-size: 16px;
    font-style: normal;
    line-height: 1.7;
  }

  .content blockquote p {
    margin-bottom: 14px;
  }

  .content blockquote cite,
  .content .wp-block-quote cite {
    display: block;
    margin-top: 14px;
    color: #6b7280;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
  }

  .content .wp-block-pullquote {
    margin: 40px 0;
    border-top: 2px solid #e5e7eb;
    border-bottom: 2px solid #e5e7eb;
    padding: 28px 20px;
    text-align: center;
  }

  .content .wp-block-pullquote blockquote {
    margin: 0;
    border: 0;
    background: transparent;
    padding: 0;
    color: #111827;
    font-size: 24px;
  }

  .content .wp-block-table {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 32px 0;
    overflow-x: auto;
  }

  .table-responsive-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 32px 0;
    border-radius: 12px;
    box-shadow: 0 0 0 1px #e5e7eb;
    background: #ffffff;
  }

  .content table {
    display: table !important;
    width: max-content !important; /* Force table to size to its content instead of container */
    min-width: 100% !important; /* Stretch to container if content is smaller */
    max-width: none !important;
    margin: 0 !important; /* Move margin to wrapper */
    border-collapse: collapse;
    border-radius: 12px;
    border-style: hidden;
    font-size: 16px;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    /* No need to change display block on table anymore, the wrapper handles it */
  }

  .content tr:first-child th:first-child,
  .content tr:first-child td:first-child {
    border-top-left-radius: 12px;
  }

  .content tr:first-child th:last-child,
  .content tr:first-child td:last-child {
    border-top-right-radius: 12px;
  }

  .content tr:last-child th:first-child,
  .content tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
  }

  .content tr:last-child th:last-child,
  .content tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
  }

  .content caption {
    caption-side: bottom;
    padding-top: 10px;
    color: #6b7280;
    font-size: 14px;
    text-align: left;
  }

  .content th,
  .content td {
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 16px;
    vertical-align: top;
    text-align: left;
    word-break: normal;
  }

  .content th {
    background: #f9fafb;
    color: #111827;
    font-weight: 700;
    white-space: nowrap;
  }

  .content td {
    max-width: 260px; /* Encourage wrapping on long content */
  }

  .content tr:nth-child(even) td {
    background: #fcfcfd;
  }

  .content tr:last-child td,
  .content tr:last-child th {
    border-bottom: 0;
  }

  .content code,
  .content kbd,
  .content samp {
    border-radius: 6px;
    background: #f3f4f6;
    padding: 2px 6px;
    color: #be123c;
    font-size: 0.9em;
    font-weight: 600;
  }

  .content kbd {
    border: 1px solid #d1d5db;
    box-shadow: inset 0 -1px 0 #d1d5db;
    color: #111827;
  }

  .content pre,
  .content .wp-block-code {
    position: relative;
    display: block;
    max-width: 100%;
    margin: 32px 0;
    overflow-x: auto;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 12px;
    background: #111827;
    padding: 20px 24px;
    color: #f9fafb;
    line-height: 1.6;
    white-space: pre;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
  }

  .content pre[data-language] {
    padding-top: 52px;
  }

  .content pre[data-language]::before {
    content: attr(data-language);
    position: absolute;
    top: 14px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
    padding: 4px 10px;
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .content pre[data-language="bash"]::before {
    content: "Bash";
  }

  .content pre[data-language="nginx"]::before {
    content: "Nginx";
  }

  .content pre[data-language="html"]::before {
    content: "HTML";
  }

  .content pre[data-language="css"]::before {
    content: "CSS";
  }

  .content pre[data-language="javascript"]::before {
    content: "JavaScript";
  }

  .content pre[data-language="typescript"]::before {
    content: "TypeScript";
  }

  .content pre[data-language="jsx"]::before {
    content: "JSX";
  }

  .content pre[data-language="tsx"]::before {
    content: "TSX";
  }

  .content pre[data-language="json"]::before {
    content: "JSON";
  }

  .content pre[data-language="yaml"]::before {
    content: "YAML";
  }

  .content pre[data-language="php"]::before {
    content: "PHP";
  }

  .content pre[data-language="sql"]::before {
    content: "SQL";
  }

  .content pre[data-language="markdown"]::before {
    content: "Markdown";
  }

  .content pre[data-language="diff"]::before {
    content: "Diff";
  }

  .content pre[data-language="plaintext"]::before {
    content: "Plain Text";
  }

  .content pre code,
  .content pre span,
  .content .wp-block-code code {
    background: transparent;
    padding: 0;
    color: inherit;
    font-size: 15px;
    font-weight: 500;
    white-space: pre;
  }

  .content .wp-block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0;
  }

  .content .wp-block-button__link,
  .content .wp-block-file__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #2563eb;
    padding: 10px 18px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
  }

  .content .wp-block-button__link:hover,
  .content .wp-block-file__button:hover {
    background: #1d4ed8;
    color: #ffffff;
  }

  .content .wp-block-file {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f9fafb;
    padding: 16px;
  }

  .content .wp-block-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 32px 0;
  }

  .content .wp-block-column {
    min-width: 0;
  }

  .content .wp-block-media-text {
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin: 36px 0;
  }

  .content .wp-block-media-text__media img {
    margin: 0;
  }

  .content .wp-block-cover {
    display: grid;
    min-height: 280px;
    place-items: center;
    overflow: hidden;
    border-radius: 16px;
    background: #111827;
    padding: 40px 28px;
    color: #ffffff;
  }

  .content .wp-block-cover a,
  .content .wp-block-cover strong {
    color: inherit;
  }

  .content .wp-block-gallery,
  .content .blocks-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin: 32px 0;
    padding: 0;
    list-style: none;
  }

  .content .wp-block-gallery figure,
  .content .blocks-gallery-item {
    margin: 0;
  }

  .content .wp-block-gallery img,
  .content .blocks-gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .content .wp-block-embed,
  .content .wp-block-video,
  .content .wp-block-audio {
    margin: 32px 0;
  }

  .content iframe,
  .content video,
  .content embed,
  .content object {
    max-width: 100%;
    border-radius: 12px;
  }

  .content video,
  .content audio {
    width: 100%;
  }

  .content details:not([data-service-accordion]),
  .content .wp-block-details {
    margin: 24px 0;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    padding: 16px 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  }

  .content details:not([data-service-accordion]) summary {
    cursor: pointer;
    color: #111827;
    font-weight: 700;
  }

  .content details:not([data-service-accordion]) > *:not(summary) {
    margin-top: 14px;
  }

  html[data-theme="dark"] .article {
    background: #080b12;
  }

  html[data-theme="dark"] .article-hero .breadcrumbs {
    color: #cbd5e1;
  }

  html[data-theme="dark"] .article-hero .breadcrumbs span {
    color: #f8fafc;
  }

  html[data-theme="dark"] h1 {
    color: #f8fafc;
  }

  html[data-theme="dark"] .subtitle {
    color: #cbd5e1;
  }

  html[data-theme="dark"] .article-meta-grid,
  html[data-theme="dark"] .meta-person span,
  html[data-theme="dark"] .meta-updated span {
    color: #94a3b8;
  }

  html[data-theme="dark"] .meta-person strong,
  html[data-theme="dark"] .meta-updated strong,
  html[data-theme="dark"] .meta-updated small {
    color: #f8fafc;
  }

  html[data-theme="dark"] .article-shell {
    background: #080b12;
  }

  html[data-theme="dark"] .toc-card {
    background: #080b12;
    color: #cbd5e1;
  }

  html[data-theme="dark"] .article-toc-nav-button {
    background: #0f172a;
    border-color: #243044;
    color: #cbd5e1;
  }

  html[data-theme="dark"] .toc-card a {
    border-left-color: #243044;
    color: #cbd5e1;
  }

  html[data-theme="dark"] .toc-card a:hover,
  html[data-theme="dark"] .toc-card a.is-active {
    color: #93c5fd;
  }

  html[data-theme="dark"] .article-toc-nav-button:hover,
  html[data-theme="dark"] .article-toc-nav-button[aria-expanded="true"] {
    background: #111827;
    color: #93c5fd;
  }

  html[data-theme="dark"] .toc-card a:hover,
  html[data-theme="dark"] .toc-card a.is-active {
    border-left-color: #60a5fa;
  }

  html[data-theme="dark"] .toc-toggle {
    background: #080b12;
    box-shadow: inset 0 0 0 1px #243044;
    color: #cbd5e1;
  }

  html[data-theme="dark"] .toc-toggle:hover,
  html[data-theme="dark"] .toc-toggle.is-open {
    background: #111827;
    color: #e5e7eb;
    box-shadow: inset 0 0 0 1px #334155;
  }

  html[data-theme="dark"] .post-share-buttons a {
    background: #0f172a;
    color: #cbd5e1;
    box-shadow: inset 0 0 0 1px #243044;
  }

  html[data-theme="dark"] .post-share-buttons a:hover {
    background: #172554;
    color: #93c5fd;
  }

  html[data-theme="dark"] .content {
    color: #cbd5e1;
  }

  html[data-theme="dark"] .content h1,
  html[data-theme="dark"] .content h2,
  html[data-theme="dark"] .content h3,
  html[data-theme="dark"] .content h4,
  html[data-theme="dark"] .content h5,
  html[data-theme="dark"] .content h6,
  html[data-theme="dark"] .content strong,
  html[data-theme="dark"] .content b,
  html[data-theme="dark"] .content em,
  html[data-theme="dark"] .content i {
    color: #f8fafc;
  }

  html[data-theme="dark"] .content a {
    color: #93c5fd;
    text-decoration-color: transparent;
  }

  html[data-theme="dark"] .content a:hover {
    color: #bfdbfe;
    text-decoration-color: #bfdbfe;
  }

  html[data-theme="dark"] .content blockquote,
  html[data-theme="dark"] .content .wp-block-quote,
  html[data-theme="dark"] .content details:not([data-service-accordion]),
  html[data-theme="dark"] .content .wp-block-details {
    background: #0f172a;
    border-color: #2563eb;
    color: #cbd5e1;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  }

  html[data-theme="dark"] .content blockquote cite,
  html[data-theme="dark"] .content .wp-block-quote cite,
  html[data-theme="dark"] .content figcaption,
  html[data-theme="dark"] .content .wp-caption-text,
  html[data-theme="dark"] .content caption {
    color: #94a3b8;
  }

  html[data-theme="dark"] .content .wp-block-pullquote {
    border-color: #334155;
  }

  html[data-theme="dark"] .content table {
    background: #0f172a;
    border-color: #334155;
  }

  html[data-theme="dark"] .content th,
  html[data-theme="dark"] .content td {
    border-color: #334155;
  }

  html[data-theme="dark"] .content th {
    background: #111827;
    color: #f8fafc;
  }

  html[data-theme="dark"] .content tr:nth-child(even) td {
    background: #0b1220;
  }

  html[data-theme="dark"] .content code,
  html[data-theme="dark"] .content kbd,
  html[data-theme="dark"] .content samp {
    background: #111827;
    color: #bfdbfe;
  }

  html[data-theme="dark"] .content pre,
  html[data-theme="dark"] .content .wp-block-code {
    background: #020617;
    border-color: #243044;
  }

  html[data-theme="dark"] .content pre[data-language]::before {
    background: rgba(51, 65, 85, 0.95);
    color: #e2e8f0;
  }

  html[data-theme="dark"] .content pre code,
  html[data-theme="dark"] .content pre span,
  html[data-theme="dark"] .content .wp-block-code code {
    background: transparent;
    color: inherit;
  }

  html[data-theme="dark"] .content summary {
    color: #f8fafc;
  }

  .content .resource-download-card {
    margin-top: 3rem;
    padding: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.9), #ffffff);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.08);
  }

  .content .resource-download-header {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .content .resource-download-eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    padding: 0.35rem 0.8rem;
    color: #1d4ed8;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .content .resource-download-card h2 {
    margin: 0;
    color: #0f172a;
    font-size: 1.6rem;
  }

  .content .resource-download-card p {
    margin: 0;
    color: #475569;
  }

  .content .resource-download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin: 0 0 1.25rem;
  }

  .content .resource-download-primary,
  .content .resource-download-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background 0.2s ease,
      color 0.2s ease;
  }

  .content .resource-download-primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
  }

  .content .resource-download-primary:hover {
    background: #1d4ed8;
    color: #ffffff;
    transform: translateY(-1px);
  }

  .content .resource-download-secondary {
    border: 1px solid rgba(37, 99, 235, 0.18);
    background: rgba(255, 255, 255, 0.92);
    color: #1d4ed8;
  }

  .content .resource-download-secondary:hover {
    background: #eff6ff;
    color: #1d4ed8;
    transform: translateY(-1px);
  }

  .content .resource-download-meta {
    display: grid;
    gap: 0.9rem;
    margin: 0;
  }

  .content .resource-download-meta div {
    display: grid;
    gap: 0.25rem;
  }

  .content .resource-download-meta dt {
    color: #1e3a8a;
    font-size: 0.8125rem;
    font-weight: 700;
  }

  .content .resource-download-meta dd {
    margin: 0;
    color: #334155;
  }

  html[data-theme="dark"] .content .resource-download-card {
    border-color: #1d4ed8;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.4);
  }

  html[data-theme="dark"] .content .resource-download-eyebrow {
    background: rgba(59, 130, 246, 0.18);
    color: #bfdbfe;
  }

  html[data-theme="dark"] .content .resource-download-card h2 {
    color: #f8fafc;
  }

  html[data-theme="dark"] .content .resource-download-card p,
  html[data-theme="dark"] .content .resource-download-meta dd {
    color: #cbd5e1;
  }

  html[data-theme="dark"] .content .resource-download-meta dt {
    color: #93c5fd;
  }

  html[data-theme="dark"] .content .resource-download-secondary {
    border-color: #334155;
    background: rgba(15, 23, 42, 0.9);
    color: #bfdbfe;
  }

  html[data-theme="dark"] .content .resource-download-secondary:hover {
    background: #172554;
    color: #dbeafe;
  }

  .content .article-source-note {
    margin-top: 3rem;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.98), rgba(239, 246, 255, 0.72));
    box-shadow: 0 18px 40px rgba(148, 163, 184, 0.12);
  }

  .content .article-source-note-header {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
  }

  .content .article-source-note-title {
    margin: 0;
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 800;
  }

  .content .article-source-note-body {
    display: grid;
    gap: 0.9rem;
    color: #475569;
    font-size: 0.95em;
  }

  .content .article-source-note-body p {
    margin: 0;
  }

  .content .article-source-note-body a {
    color: #2563eb;
    text-decoration: none;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    transition: all 0.2s ease;
  }

  .content .article-source-note-body a:hover {
    color: #1d4ed8;
    text-decoration: underline;
  }

  .content .article-source-note-supplemental {
    display: grid;
    gap: 0.55rem;
  }

  .content .article-source-note-sources {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding-left: 1.2rem;
  }

  .content .article-source-note-sources li {
    margin: 0;
    color: #334155;
  }

  html[data-theme="dark"] .content .article-source-note {
    border-color: #334155;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.4);
  }

  html[data-theme="dark"] .content .article-source-note-title {
    color: #f8fafc;
  }

  html[data-theme="dark"] .content .article-source-note-body,
  html[data-theme="dark"] .content .article-source-note-sources li {
    color: #cbd5e1;
  }

  html[data-theme="dark"] .content .article-source-note-body a {
    color: #93c5fd;
  }

  html[data-theme="dark"] .content .article-source-note-body a:hover {
    color: #dbeafe;
  }




  @media (max-width: 960px) {
    .article-shell {
      display: block;
      width: 100%;
      max-width: 1280px;
      padding: 35px 16px 72px;
    }

    .article-content-grid {
      display: block;
    }

    .article-toc {
      display: none;
    }

    .post-share-buttons {
      display: none;
    }
  }

  @media (max-width: 1180px) and (min-width: 961px) {
    .article-content-grid {
      grid-template-columns: 240px minmax(0, 1fr);
      gap: 32px;
    }

    .post-share-buttons {
      display: none;
    }
  }

  @media (max-width: 640px) {
    .article-header {
      padding: 120px 0 40px;
    }

    .desktop-breadcrumbs {
      display: none;
    }

    .mobile-breadcrumbs {
      display: block;
    }

    h1 {
      font-size: 26px;
      line-height: 38px;
    }

    .article-meta-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, auto));
      justify-content: space-between;
      gap: 12px;
      margin-top: 28px;
    }

    .meta-person {
      gap: 8px;
    }

    .meta-person img {
      width: 34px;
      height: 34px;
    }

    .meta-person span,
    .meta-person strong,
    .meta-updated span,
    .meta-updated strong,
    .meta-reading-time span,
    .meta-reading-time strong,
    .meta-updated small {
      font-size: 12px;
      line-height: 18px;
    }

    .content {
      font-size: 17px;
    }

    .content h1 {
      font-size: 30px;
    }

    .content h2 {
      font-size: 26px;
    }

    .content h3 {
      font-size: 22px;
    }

    .content h4 {
      font-size: 20px;
    }

    .content h5 {
      font-size: 18px;
    }

    .content h6 {
      font-size: 15px;
    }

    .content blockquote {
      padding: 16px;
      font-size: 15px;
    }

    .content .alignleft,
    .content .alignright {
      float: none;
      max-width: 100%;
      margin: 24px 0;
    }

    .content img {
      margin: 24px 0;
    }

    .content table {
      min-width: 560px;
      font-size: 15px;
    }

    .content pre {
      padding: 16px;
    }

    .content pre span,
    .content pre code {
      font-size: 14px;
    }

    .content .wp-block-media-text {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .content .wp-block-columns {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .content .wp-block-gallery,
    .content .blocks-gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }
  }

