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

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100%;
}

a {
  text-decoration: none;
  transition: color 0.15s ease;
}

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

.container {
  width: 100%;
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-header {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

.page-header h1 {
  font-size: clamp(2.25rem, 2.5vw + 2rem, 3rem);
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1.1rem;
  max-width: 48rem;
  line-height: 1.65;
  margin: 0;
  color: var(--text);
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.brand-sections {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.brand-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.brand-card h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  line-height: 1.3;
}

.brand-card__content :where(p, ul, ol) {
  margin-bottom: 1rem;
}

.brand-card__content ul,
.brand-card__content ol {
  padding-left: 1.25rem;
}

@media (min-width: 640px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--card-border);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 15rem;
}

.card h2 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0;
}

.card p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.card time {
  font-size: 0.85rem;
  color: var(--muted-text);
}

.meta-line {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted-text);
}

.content article {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}

.content h1,
.content h2,
.content h3,
.content h4 {
  margin-top: 2.4rem;
  margin-bottom: 1.1rem;
  line-height: 1.25;
}

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

.content h2 {
  font-size: clamp(1.8rem, 1.5vw + 1.5rem, 2.4rem);
}

.content h3 {
  font-size: clamp(1.4rem, 1vw + 1.2rem, 1.8rem);
}

.content p {
  margin-bottom: 1.5rem;
}

.content ul,
.content ol {
  margin: 0 0 1.5rem 1.25rem;
  padding-left: 1rem;
}

.content blockquote {
  border-left: 4px solid #e4e4e7;
  padding-left: 1.25rem;
  margin: 0 0 1.75rem 0;
  font-style: italic;
  color: var(--text);
}

.content pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.content code {
  background: rgba(15, 23, 42, 0.08);
  border-radius: 0.5rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.95rem;
}

.content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.75rem;
}

.content th,
.content td {
  border: 1px solid var(--card-border);
  padding: 0.75rem 1rem;
  text-align: left;
}

.footer {
  margin-top: auto;
  padding: 4rem 2.5rem;
  font-size: 0.9rem;
  color: #a1a1aa;
  text-align: left;
}

:root {
      --background: #FAFAF9;
      --surface: #FAFAF9;
      --text: #09090b;
      --muted-text: #a1a1aa;
      --accent: #F59E0B;
      --card-border: rgba(148, 163, 184, 0.28);
    }

    html,
    body {
      background: var(--background);
    }

    body {
      color: var(--text);
      font-family: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    p,
    li,
    a,
    button,
    input,
    textarea {
      font-family: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--text);
    }

    a,
    a:visited {
      color: #F59E0B;
      text-decoration: none;
    }

    a:hover,
    a:focus {
      color: #d67f00;
      text-decoration: none;
    }

    .card h2 a {
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .card h2 a:hover {
      color: #d67f00;
    }

    .tag {
      display: inline-flex;
      align-items: left;
      gap: 0;
      padding: 0;
      border-radius: 999px;
      color: var(--accent);
      background: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    button {
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 999px;
      padding: 0.6rem 1.5rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    button:hover,
    button:focus {
      background: #d67f00;
      color: #fff;
    }

    .page-shell--pseo .card {
      border-radius: 1.25rem;
      padding: 2.25rem;
      box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
    }

    .page-shell--pseo .content article {
      max-width: 60rem;
    }
:root {
      --background: #FAFAF9;
      --surface: #ffffff;
      --text: #09090b;
      --muted-text: #a1a1aa;
      --accent: #F59E0B;
      --card-border: rgba(148, 163, 184, 0.28);
    }

    html,
    body {
      background: var(--background);
    }

    body {
      color: var(--text);
      font-family: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    p,
    li,
    a,
    button,
    input,
    textarea {
      font-family: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--text);
    }

    a,
    a:visited {
      color: #F59E0B;
      text-decoration: none;
    }

    a:hover,
    a:focus {
      color: #d67f00;
      text-decoration: none;
    }

    .card h2 a {
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .card h2 a:hover {
      color: #d67f00;
    }

    .tag {
      display: inline-flex;
      align-items: left;
      gap: 0;
      padding: 0;
      border-radius: 999px;
      color: var(--accent);
      background: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    button {
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 999px;
      padding: 0.6rem 1.5rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    button:hover,
    button:focus {
      background: #d67f00;
      color: #fff;
    }

    .page-shell--pseo .card {
      border-radius: 1.25rem;
      padding: 2.25rem;
      box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
    }

    .page-shell--pseo .content article {
      max-width: 60rem;
    }