:root {
  --font-sans:
    "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-mono:
    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
}
.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;
}
body {
  font-family: var(--font-sans);
}
.resource-hero {
  padding: 82px 0 58px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82),
      rgba(245, 248, 252, 0.94)
    ),
    radial-gradient(circle, rgba(0, 118, 190, 0.12) 1px, transparent 1.5px);
  background-size:
    auto,
    24px 24px;
  border-bottom: 1px solid rgba(185, 201, 222, 0.62);
}
.author-avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 7px;
}
.resource-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: center;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #ebecef;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.resource-hero-grid h2 {
  font-size: 40px;
  letter-spacing: -1px;
}
.span-eyebrow {
  color: #0075d5;
}
.avatar {
  margin-top: 8px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}
.resource-hero h2 {
  margin-top: 9px;
  max-width: 830px;
  font-weight: 500;
  color: #000;
}
.resource-hero p {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(18px, 1vw, 22px);
  color: #4a4848;
}
.resource-hero-image img {
  border-radius: 10px;
}
.resource-feature img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 10px;
}
.resource-feature div {
  padding: 22px;
}
.guide-topic,
.resource-feature span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: var(--pill);
  background: #eef7ff;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.resource-feature h2 {
  font-size: clamp(24px, 2vw, 32px);
}
.resource-hero-grid a {
  display: inline-block;
  color: #0075d5;
  text-decoration: underline;
  margin-top: 14px;
}
.all-guides-list a,
.guide-card a,
.resource-feature a {
  color: var(--primary);
  font-weight: 800;
}
.resource-feature a {
  display: inline-flex;
  margin-top: 18px;
}
.resource-card-author,
.resource-feature-author {
  margin-top: 16px;
}
.resource-card-author strong,
.resource-feature-author strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}
.resource-card-author span,
.resource-feature-author span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.resource-card-meta,
.resource-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.resource-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}
.resource-category-tab {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.resource-category-tab.is-active,
.resource-category-tab:hover {
  border-color: var(--primary);
  background: #eef7ff;
  color: var(--primary);
}
.resource-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}
.resource-card.featured {
  background: #10233f;
  border-color: #10233f;
}
.guides-page .resource-card-media {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.guides-page .resource-card-media img {
  display: block !important;
  width: 100% !important;
  height: 220px !important;
  object-fit: fill !important;
}
.resource-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}
.resource-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.resource-card h3 {
  margin: 0;
  font-size: clamp(21px, 1.5vw, 27px);
  line-height: 1.12;
}
.resource-card h3 a {
  color: inherit;
}
.resource-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
}
.resource-card.featured .resource-card-author span,
.resource-card.featured .resource-card-author strong,
.resource-card.featured .resource-card-meta,
.resource-card.featured h3 a,
.resource-card.featured p {
  color: #fff;
}
.resource-card.featured .guide-topic {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.resource-card-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--primary);
  font-weight: 800;
}
.resource-card.featured .resource-card-link {
  color: #fff;
}
.resource-empty {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}
.resource-subscribe {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f4f8fb);
}
.resource-subscribe h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2vw, 32px);
}
.resource-subscribe p {
  margin: 0 0 18px;
  color: var(--muted);
}
.resource-subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.resource-subscribe-form input {
  flex: 1 1 240px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.resource-subscribe-form button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.resource-subscribe-note {
  margin-top: 12px;
  color: var(--dim);
  font-size: 13px;
}
.resource-subscribe-message {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 600;
}
.resource-subscribe-note a {
  color: var(--primary);
  font-weight: 700;
}
.resource-band {
  padding: 24px 0;
  background: #10233f;
}
.resource-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.resource-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}
.resource-stats strong {
  display: block;
  color: #fff;
  font-size: 22px;
}
.resource-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.resource-list-section {
  padding: 86px 0;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.guide-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}
.blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.guide-card.featured {
  background: #10233f;
  border-color: #10233f;
}
.guide-card.featured h3,
.guide-card.featured p {
  color: #fff;
}
.guide-card.featured .guide-topic {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.guide-card.featured a {
  color: #fff;
}
.featured-badge {
  width: fit-content;
  margin: -2px 0 12px;
  padding: 5px 8px;
  border-radius: var(--pill);
  background: #0e7a58;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.guide-card.featured .featured-badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.guide-card h3 {
  font-size: clamp(21px, 1.5vw, 27px);
  line-height: 1.12;
}
.guide-card p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.52;
}
.guide-card a {
  margin-top: auto;
  padding-top: 20px;
}
.all-guides {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}
.all-guides h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2vw, 34px);
}
.all-guides-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
}
.all-guides-list a {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.related-resources {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 28px;
  margin-top: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #10233f;
}
.related-resources h2 {
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
}
.related-resources .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}
.related-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}
.related-list a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 800;
}
@media (max-width: 980px) {
  .all-guides-list,
  .blog-grid,
  .related-list,
  .related-resources,
  .resource-grid,
  .resource-hero-grid,
  .resource-stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .resource-hero {
    padding-top: 58px;
  }
  .all-guides,
  .guide-card {
    padding: 22px;
  }
}
.article-page .article-hero {
  padding: 36px 0 32px;
  border-bottom: 1px solid rgba(185, 201, 222, 0.62);
  background: #f6f4ff;
}
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  gap: 40px 56px;
  align-items: stretch;
}
.article-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
  min-height: 100%;
}
.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.article-breadcrumb a {
  color: var(--muted);
}
.article-breadcrumb a:hover {
  color: var(--primary);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.article-hero-copy .guide-topic {
  display: none;
}
.article-hero-copy h1 {
  margin: 0 0 28px;
  color: #0b0925;
  font-size: clamp(34px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 8px;
}
.article-byline-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  line-height: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #0075d5, #793aff);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}
.article-byline strong {
  display: block;
  color: #0b0925;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.article-byline > div span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.article-hero-visual {
  position: relative;
  min-width: 0;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #f4f5f8;
  border: 1px solid rgba(185, 201, 222, 0.55);
  box-shadow: 0 16px 36px rgba(8, 18, 40, 0.1);
}
.article-hero-image {
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.article-hero-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}
.article-layout {
  display: block;
  padding: 36px 0 86px;
}
.article-body {
  max-width: 100%;
}
.article-body h2 {
  margin: 34px 0 14px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.15;
}
.article-body h3 {
  margin: 24px 0 10px;
  font-size: clamp(20px, 1.6vw, 24px);
}
.article-body li,
.article-body p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.article-body p {
  margin: 0 0 16px;
}
.article-body ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.article-body a {
  color: var(--primary);
  font-weight: 700;
}
.article-body table {
  width: 100%;
  margin: 20px 0 28px;
  border-collapse: collapse;
  font-size: 15px;
}
.article-body td,
.article-body th {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.article-body th {
  background: #eef7ff;
  color: var(--ink);
}
.article-callout {
  margin: 28px 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(238, 247, 255, 0.72);
}
.article-body > .article-callout:first-child {
  margin-top: 0;
}
.article-callout h2 {
  margin-top: 0;
}
.article-stats {
  display: grid;
  gap: 14px;
  padding-bottom: 24px;
}
.article-stats div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.article-stats strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}
.article-author {
  display: none;
}
.article-read-next {
  display: none;
}
.article-recommended {
  width: min(1100px, calc(100vw - 64px));
  max-width: none;
  margin: 56px auto 0;
  padding: 0;
}
.article-recommended[hidden] {
  display: none;
}
.article-recommended h2 {
  margin: 0 0 22px;
  color: #0b0925;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}
.article-recommended-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}
.article-recommended-featured {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(185, 201, 222, 0.75);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(8, 18, 40, 0.06);
  color: inherit;
  text-decoration: none;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.article-recommended-featured:hover {
  border-color: rgba(0, 138, 251, 0.28);
  box-shadow: 0 14px 32px rgba(8, 18, 40, 0.1);
}
.article-recommended-featured img {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 12/9;
  overflow: hidden;
  background-color: #f4f5f8;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.article-recommended-featured-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
}
.article-recommended-featured h3 {
  margin: 0;
  color: #0b0925;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1.25;
}
.article-recommended-author {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.article-recommended-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 6px;
  overscroll-behavior: contain;
}
.article-recommended-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 10px;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s ease;
}
.article-recommended-item:hover {
  background: rgba(238, 247, 255, 0.85);
}
.article-recommended-item img {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 12/12;
  overflow: hidden;
  background-color: #f4f5f8;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.article-recommended-item img,
.article-recommended-thumb {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 12/9;
  overflow: hidden;
  background-color: #f4f5f8;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.article-recommended-item strong {
  display: block;
  margin: 0 0 6px;
  color: #0b0925;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.article-recommended-item .article-recommended-author {
  font-size: 13px;
}
.article-faqs {
  position: relative;
  left: 50%;
  width: min(900px, calc(100vw - 64px));
  max-width: none;
  margin-top: 48px;
  margin-left: calc(-0.5 * min(900px, calc(100vw - 64px)));
  padding: 0;
}
.article-faqs:empty {
  display: none;
}
.article-faqs h2 {
  margin: 0 0 8px;
  color: #0b0925;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.article-faq-intro {
  margin: 0 auto 22px;
  max-width: 36em;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
.article-faq-list {
  display: grid;
  gap: 14px;
}
.article-faq-item {
  overflow: hidden;
  border: 1px solid rgba(185, 201, 222, 0.75);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(8, 18, 40, 0.06);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.article-faq-item[open] {
  border-color: rgba(0, 138, 251, 0.28);
  box-shadow: 0 10px 26px rgba(8, 18, 40, 0.08);
}
.article-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: #0b0925;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}
.article-faq-item summary::-webkit-details-marker {
  display: none;
}
.article-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #0b0925;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}
.article-faq-item[open] summary::after {
  content: "−";
}
.article-faq-item p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.article-page,
.blog-page,
.guides-page {
  background: #f6f4ff;
  color: #08122e;
}
.article-page .site-chrome,
.blog-page .site-chrome,
.guides-page .site-chrome {
  background: #f6f4ff;
}
.article-page main,
.blog-page .guides-intro,
.blog-page .resource-hero,
.blog-page .resource-list-section,
.blog-page .section-soft,
.blog-page main,
.guides-page .guides-intro,
.guides-page .resource-hero,
.guides-page .resource-list-section,
.guides-page .section-soft,
.guides-page main {
  background: 0 0;
}
.blog-page .guides-intro,
.guides-page .guides-intro {
  padding: 56px 0 36px;
}
.guides-page .guides-feature-eyebrow,
.guides-page .guides-intro .eyebrow {
  display: block;
  margin: 0 0 14px;
  color: #0a7656;
  font: 700 12px/1.4 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.guides-page .guides-intro .page-title {
  max-width: 820px;
  margin: 0 0 18px;
  color: #08122e;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.guides-page .guides-intro p {
  max-width: 760px;
  margin: 0;
  color: #52637a;
  font-size: 20px;
  line-height: 1.6;
}
.guides-page .resource-hero {
  padding: 0 0 44px;
  border: 0;
}
.guides-page .resource-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 44px;
  align-items: center;
  padding: 40px;
  border: 1px solid #dcdff0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(28, 35, 74, 0.08);
}
.guides-page .resource-hero-grid h2 {
  margin: 0;
  color: #08122e;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.guides-page .guides-feature-eyebrow {
  margin-bottom: 10px;
}
.guides-page .span-eyebrow {
  display: inline-flex;
  margin: 0;
  color: #0878e8;
  font: 700 12px/1.4 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.guides-page .resource-hero-grid p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #52637a;
  font-size: 18px;
  line-height: 1.65;
}
.guides-page .resource-hero-grid a {
  display: inline-flex;
  margin-top: 20px;
  color: #0878e8;
  font-weight: 700;
  text-decoration: none;
}
.guides-page .resource-hero-image {
  min-width: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #f4f5f8;
}

.guides-page .resource-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}
.guides-page .resource-list-section {
  padding: 36px 0 72px;
}
.guides-page .resource-list-section .section-head {
  max-width: 760px;
  margin: 0 0 26px;
  text-align: left;
}
.guides-page .resource-list-section .section-head .eyebrow {
  color: #0a7656;
}
.guides-page .resource-list-section .section-head h2 {
  margin: 0 0 12px;
  color: #08122e;
  font-size: clamp(30px, 3vw, 42px);
}
.guides-page .resource-list-section .section-head p {
  margin: 0;
  color: #52637a;
  font-size: 18px;
}
.guides-page .resource-category-tabs {
  gap: 10px;
  margin-bottom: 28px;
}
.guides-page .resource-category-tab {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid #dcdff0;
  border-radius: 999px;
  background: #fff;
  color: #52637a;
  transition:
    color 180ms ease-out,
    border-color 180ms ease-out,
    background 180ms ease-out;
}
.guides-page .resource-category-tab.is-active,
.guides-page .resource-category-tab:hover {
  border-color: #0878e8;
  background: #edf6ff;
  color: #075fae;
}
.guides-page .all-guides-list a:focus-visible,
.guides-page .related-list a:focus-visible,
.guides-page .resource-card a:focus-visible,
.guides-page .resource-category-tab:focus-visible,
.guides-page .resource-subscribe button:focus-visible,
.guides-page .resource-subscribe input:focus-visible {
  outline: 3px solid rgba(8, 120, 232, 0.28);
  outline-offset: 3px;
}
.guides-page .resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.guides-page .resource-card,
.guides-page .resource-card.featured {
  border: 1px solid #dcdff0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(28, 35, 74, 0.08);
  transition:
    transform 180ms ease-out,
    border-color 180ms ease-out,
    box-shadow 180ms ease-out;
}
.guides-page .resource-card:hover {
  transform: translateY(-3px);
  border-color: #c9d1e6;
  box-shadow: 0 18px 40px rgba(28, 35, 74, 0.11);
}
/* .guides-page .resource-card-media img {
  display: block !important;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #edf6ff;
} */
.guides-page .resource-card-body {
  padding: 24px;
}
.guides-page .resource-card h3 {
  color: #08122e;
}
.guides-page .resource-card h3 a,
.guides-page .resource-card.featured h3 a {
  color: #08122e;
}
.guides-page .resource-card p,
.guides-page .resource-card.featured p {
  color: #52637a;
}
.guides-page .resource-card-author strong,
.guides-page .resource-card.featured .resource-card-author strong {
  color: #08122e;
}
.guides-page .resource-card-author span,
.guides-page .resource-card-meta,
.guides-page .resource-card.featured .resource-card-author span,
.guides-page .resource-card.featured .resource-card-meta {
  color: #52637a;
}
.guides-page .guide-topic,
.guides-page .resource-card.featured .guide-topic {
  background: #edf6ff;
  color: #075fae;
}
.guides-page .featured-badge,
.guides-page .resource-card.featured .featured-badge {
  background: #edf6ff;
  color: #075fae;
}
.guides-page .resource-card-link,
.guides-page .resource-card.featured .resource-card-link {
  color: #0878e8;
}
.guides-page .all-guides {
  margin-top: 32px;
  padding: 30px;
  border: 1px solid #dcdff0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(28, 35, 74, 0.08);
}
.guides-page .all-guides h2 {
  margin: 0 0 18px;
  color: #08122e;
}
.guides-page .all-guides-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.guides-page .all-guides-list a {
  border-color: #dcdff0;
  color: #0878e8;
}
.guides-page .resource-subscribe {
  margin-top: 32px;
  padding: 30px;
  border: 1px solid #dcdff0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(28, 35, 74, 0.08);
}
.guides-page .resource-subscribe h2 {
  color: #08122e;
}
.guides-page .resource-subscribe p {
  color: #52637a;
}
.guides-page .resource-subscribe-form input {
  border: 1px solid #c9d1e6;
  background: #fff;
  color: #08122e;
}
.guides-page .resource-subscribe-form button {
  background: #0878e8;
  color: #fff;
}
.guides-page .resource-subscribe-note a {
  color: #075fae;
}
.guides-page .related-resources {
  grid-template-columns: minmax(260px, 0.8fr) 1fr;
  gap: 28px;
  margin-top: 32px;
  padding: 30px;
  border: 1px solid #dcdff0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(28, 35, 74, 0.08);
}
.guides-page .related-resources h2 {
  color: #08122e;
}
.guides-page .related-resources .eyebrow {
  color: #0a7656;
}
.guides-page .related-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.guides-page .related-list a {
  border-color: #dcdff0;
  color: #08122e;
  transition:
    color 180ms ease-out,
    border-color 180ms ease-out;
}
.guides-page .related-list a:hover {
  border-color: #c9d1e6;
  color: #075fae;
}
.guides-page .section-soft {
  padding: 32px 0 72px;
}
.guides-page .section-soft .section-head h2 {
  color: #08122e;
}
.guides-page .section-soft .section-head p {
  color: #52637a;
}
@media (max-width: 980px) {
  .guides-page .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guides-page .resource-hero-grid {
    grid-template-columns: 1fr;
  }
  .guides-page .related-resources {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .guides-page .all-guides-list,
  .guides-page .related-list,
  .guides-page .resource-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .guides-page .guides-intro {
    padding: 42px 0 28px;
  }
  .guides-page .guides-intro p {
    font-size: 18px;
  }
  .guides-page .all-guides,
  .guides-page .related-resources,
  .guides-page .resource-hero-grid,
  .guides-page .resource-subscribe {
    padding: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .guides-page .related-list a,
  .guides-page .resource-card,
  .guides-page .resource-category-tab {
    transition: none;
  }
  .guides-page .resource-card:hover {
    transform: none;
  }
}
.article-page .article-recommended {
  width: min(1100px, calc(100vw - 64px)) !important;
  max-width: 1100px !important;
  margin: 56px auto 0 !important;
  padding-bottom: 60px !important;
}
.article-page .article-recommended h2 {
  margin-left: 0 !important;
}
.article-page .article-recommended-grid {
  display: grid !important;
  grid-template-columns: 500px 500px !important;
  column-gap: 100px !important;
  row-gap: 0 !important;
  justify-content: start !important;
  align-items: start !important;
}
.article-page .article-recommended-featured {
  width: 500px !important;
  max-width: 500px !important;
  margin: 0 !important;
  justify-self: start !important;
  align-self: start !important;
}
.article-page .article-recommended-list {
  width: 500px !important;
  max-width: 500px !important;
  height: var(--recommended-featured-height, auto) !important;
  max-height: var(--recommended-featured-height, none) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  padding-right: 8px !important;
  align-self: start !important;
}
@media (max-width: 1100px) {
  .article-page .article-recommended {
    width: min(520px, calc(100vw - 40px)) !important;
    max-width: 520px !important;
  }
  .article-page .article-recommended-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .article-page .article-recommended-featured,
  .article-page .article-recommended-list {
    width: 100% !important;
    max-width: 100% !important;
  }
  .article-page .article-recommended-list {
    height: auto !important;
    max-height: 360px !important;
  }
}
@media (max-width: 980px) {
  .article-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .article-hero-copy {
    min-height: 0;
  }
  .article-byline {
    margin-top: 4px;
  }
  .article-layout {
    max-width: none;
  }
  .article-recommended-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .article-recommended-list {
    max-height: 360px;
  }
}
@media (max-width: 640px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .article-page .article-hero {
    padding: 20px 0 28px;
  }
  .article-hero-copy h1 {
    margin-bottom: 20px;
    font-size: clamp(28px, 9vw, 36px);
  }
  .article-recommended {
    width: min(1100px, calc(100vw - 32px));
    margin-top: 40px;
  }
  .article-recommended-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 6px;
  }
  .article-recommended-item img,
  .article-recommended-thumb {
    width: 72px;
    height: 54px;
  }
  .article-faqs {
    left: 0;
    width: 100%;
    margin-left: 0;
  }
  .article-faq-item summary {
    padding: 16px 18px;
    font-size: 15px;
  }
  .article-faq-item p {
    padding: 0 18px 16px;
    font-size: 15px;
  }
}
.article-faqs {
  position: relative;
  left: 50%;
  width: min(900px, calc(100vw - 64px));
  max-width: none;
  margin-top: 48px;
  margin-left: calc(-0.5 * min(900px, calc(100vw - 64px)));
  padding: 0;
}
.article-faqs:empty {
  display: none;
}
.article-faqs h2 {
  margin: 0 0 8px;
  color: #0b0925;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.article-faq-intro {
  margin: 0 auto 22px;
  max-width: 36em;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
.article-faq-list {
  display: grid;
  gap: 14px;
}
.article-faq-item {
  overflow: hidden;
  border: 1px solid rgba(185, 201, 222, 0.75);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(8, 18, 40, 0.06);
  transition: all 0.25s ease;
}
.article-faq-item:hover {
  border-color: #bad8f3;
  transform: translateY(-3px);
}
.article-faq-item[open] {
  border-color: #bad8f3;
}
.article-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: #0b0925;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}
.article-faq-item summary::-webkit-details-marker {
  display: none;
}
.article-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #0b0925;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}
.article-faq-item[open] summary::after {
  content: "−";
}
.article-faq-item p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
