:root {
  --ink: #17201d;
  --muted: #647067;
  --line: #dce5df;
  --paper: #fbfcf8;
  --soft: #eef5ef;
  --mint: #2f7d64;
  --mint-dark: #205947;
  --coral: #ce6750;
  --gold: #d9a441;
  --blue: #426e9f;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(22, 31, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 229, 223, 0.88);
  background: rgba(251, 252, 248, 0.93);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 232px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--mint);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.77rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 28px);
  color: #35443e;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--mint-dark);
}

.nav a.is-current {
  color: var(--mint-dark);
  font-weight: 850;
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 0.18s ease, background 0.18s ease, border 0.18s ease;
}

.header-action,
.button.primary {
  color: var(--white);
  background: var(--mint);
}

.button.secondary {
  color: var(--mint-dark);
  border-color: #bad3c7;
  background: var(--white);
}

.header-action:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #18231f;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(20, 31, 27, 0.86), rgba(20, 31, 27, 0.46) 52%, rgba(20, 31, 27, 0.18));
}

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

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 72px) 58px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd39a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.16rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.page-hero {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 6vw, 72px);
  color: var(--white);
  background: #203a48;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.home-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(54px, 8vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.link-card {
  display: grid;
  min-height: 230px;
  gap: 12px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(22, 31, 28, 0.05);
}

.link-card span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.link-card p {
  color: var(--muted);
}

.role-workspace-section {
  background: #f7fbfc;
}

.workspace-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.workspace-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 300px;
  border: 1px solid #d8e4e9;
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(22, 31, 28, 0.05);
}

.workspace-grid span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.workspace-grid p {
  color: var(--muted);
}

.workspace-grid .button {
  justify-self: start;
  margin-top: auto;
}

.platform-flow-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
  color: var(--white);
  background: #18342b;
}

.platform-flow-section .eyebrow {
  color: #ffd39a;
}

.flow-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.flow-timeline article {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.flow-timeline strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #18342b;
  background: #ffd39a;
}

.flow-timeline span {
  font-weight: 850;
}

.flow-timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.dashboard-hero {
  background: #244b5f;
}

.dashboard-section {
  display: grid;
  gap: 20px;
  background: #f4faf6;
}

.dashboard-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-card {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid #d8e4e9;
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(22, 31, 28, 0.05);
}

.dashboard-card > span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-card h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.dashboard-card p {
  color: var(--muted);
}

.dashboard-card .button {
  justify-self: start;
  margin-top: auto;
}

.dashboard-lists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card-heading-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.card-heading-row h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.dashboard-list {
  display: grid;
  gap: 10px;
}

.dashboard-list-item {
  display: grid;
  gap: 6px;
  border: 1px solid #e0ece6;
  border-radius: 8px;
  padding: 14px;
  background: #f8fbfc;
}

.dashboard-list-item span,
.dashboard-list-item small,
.dashboard-list-item p {
  margin: 0;
  color: var(--muted);
}

.dashboard-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.dashboard-row-actions .button {
  margin-top: 0;
}

.blog-studio-tools {
  display: grid;
  gap: 10px;
  border: 1px solid #d9edf5;
  border-radius: 8px;
  padding: 12px;
  background: #eefaff;
}

.blog-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  border: 1px solid #bddbe8;
  border-radius: 999px;
  padding: 8px 12px;
  background: #ffffff;
  color: #174863;
  font-weight: 850;
  cursor: pointer;
}

.filter-chip.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.library-count {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.blog-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.blog-stats-grid span {
  display: grid;
  gap: 2px;
  border: 1px solid #d9edf5;
  border-radius: 8px;
  padding: 10px;
  background: #f7fcff;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.blog-stats-grid b {
  color: var(--ink);
  font-size: 1.35rem;
}

.blog-post-row {
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
}

.blog-post-thumb {
  width: 112px;
  aspect-ratio: 1.35;
  border: 1px solid #d4e7ee;
  border-radius: 8px;
  object-fit: cover;
  background: #eaf5f8;
}

.blog-post-copy {
  display: grid;
  gap: 6px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 8px;
  color: #1d4c39;
  background: #dff8e7;
  font-size: 0.78rem;
}

.status-pill.is-draft {
  color: #695223;
  background: #fff0c7;
}

.profile-linked-library {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  border: 1px solid #d8e9ef;
  border-radius: 8px;
  padding: 18px;
  background: #f6fcff;
}

.profile-linked-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.profile-linked-grid article {
  display: grid;
  gap: 7px;
  border: 1px solid #dcecef;
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
}

.profile-linked-grid span {
  width: max-content;
  border-radius: 999px;
  padding: 4px 8px;
  background: #e7f6eb;
  color: #1d5f42;
  font-size: 0.78rem;
  font-weight: 850;
}

.profile-linked-grid p {
  margin: 0;
  color: var(--muted);
}

.launch-hero {
  background:
    linear-gradient(135deg, rgba(239, 250, 255, 0.96), rgba(246, 255, 245, 0.98)),
    repeating-linear-gradient(135deg, rgba(35, 144, 206, 0.09) 0 20px, rgba(255, 214, 66, 0.12) 20px 40px);
}

.books-hero {
  background:
    linear-gradient(135deg, rgba(255, 250, 239, 0.96), rgba(239, 249, 255, 0.98)),
    linear-gradient(90deg, rgba(217, 164, 65, 0.18), rgba(47, 125, 100, 0.14));
}

.launch-stack-section,
.production-flow-section,
.launch-schema-section,
.payment-production-section,
.launch-checklist-section {
  background: #fbfdfc;
}

.launch-stack-grid,
.schema-grid,
.payment-readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.launch-stack-grid article,
.schema-grid article,
.payment-readiness-grid article {
  display: grid;
  gap: 8px;
  border: 1px solid #d9e8ed;
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(28, 49, 48, 0.05);
}

.launch-stack-grid span,
.schema-grid strong,
.payment-readiness-grid strong {
  width: max-content;
  border-radius: 999px;
  padding: 5px 9px;
  background: #e5f5ff;
  color: #174863;
  font-size: 0.82rem;
  font-weight: 900;
}

.launch-stack-grid h3,
.payment-readiness-grid p,
.schema-grid span {
  margin: 0;
}

.launch-stack-grid p,
.payment-readiness-grid p,
.schema-grid span {
  color: var(--muted);
}

.launch-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.launch-checklist label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid #d9e8ed;
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
  color: #244052;
  font-weight: 750;
}

.admin-hero {
  background:
    linear-gradient(135deg, rgba(239, 250, 255, 0.96), rgba(255, 250, 232, 0.95)),
    repeating-linear-gradient(135deg, rgba(37, 146, 205, 0.08) 0 18px, rgba(71, 183, 115, 0.1) 18px 36px);
}

.admin-section {
  display: grid;
  gap: 18px;
  background: #f7fbfc;
}

.admin-summary-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.admin-summary-grid article,
.admin-panel {
  border: 1px solid #d9e8ed;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(28, 49, 48, 0.05);
}

.admin-summary-grid article {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.admin-summary-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.admin-summary-grid strong {
  color: var(--ink);
  font-size: 1.65rem;
}

.admin-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.admin-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.admin-review-item p b {
  color: var(--ink);
}

.launch-readiness-panel {
  margin-bottom: 20px;
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.readiness-item {
  display: grid;
  gap: 7px;
  border: 1px solid #d9e8ed;
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
}

.readiness-item span {
  width: max-content;
  border-radius: 999px;
  padding: 4px 9px;
  color: #17354a;
  background: #e8f5ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.readiness-item strong,
.readiness-item p {
  margin: 0;
}

.readiness-item p {
  color: var(--muted);
}

.readiness-item.is-ready {
  border-color: #bfe4ce;
  background: #f2fff6;
}

.readiness-item.is-ready span {
  color: #1d653e;
  background: #dff7e8;
}

.readiness-item.is-warning {
  border-color: #ead596;
  background: #fffaf0;
}

.readiness-item.is-warning span {
  color: #694d08;
  background: #ffecad;
}

.receipt-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.receipt-mini-grid span {
  display: grid;
  gap: 2px;
  border: 1px solid #d7e8ef;
  border-radius: 8px;
  padding: 8px;
  background: #ffffff;
  color: #113245;
  font-weight: 800;
}

.receipt-mini-grid b {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.link-card strong {
  margin-top: auto;
  color: var(--mint-dark);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  color: rgba(255, 255, 255, 0.82);
  gap: 18px;
}

.trust-row span {
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.trust-row span:last-child {
  border-right: 0;
}

.access-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.access-panel article {
  min-height: 210px;
  padding: clamp(24px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.access-panel article:last-child {
  border-right: 0;
}

.parent-support {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1fr);
  gap: 32px;
  padding: clamp(54px, 8vw, 86px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.parent-support p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.parent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.parent-grid article {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper);
}

.parent-grid span {
  color: var(--muted);
}

.intake-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.75fr);
  gap: 38px;
  align-items: start;
  padding: clamp(54px, 8vw, 86px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: #203a48;
  color: var(--white);
}

.intake-section .eyebrow {
  color: #ffd39a;
}

.intake-copy p:last-child {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.intake-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
}

.intake-form label {
  color: rgba(255, 255, 255, 0.9);
}

.intake-form .form-note {
  color: #ffd39a;
}

.condition-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(320px, 1fr);
  gap: 32px;
  padding: clamp(54px, 8vw, 86px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: #f7f4ec;
}

.condition-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.condition-grid span {
  border: 1px solid #d9caa8;
  border-radius: 999px;
  padding: 9px 12px;
  color: #42351d;
  background: #fffaf0;
  font-size: 0.92rem;
  font-weight: 760;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(280px, 0.42fr);
  gap: 24px;
  align-items: start;
}

.contact-form textarea {
  min-height: 180px;
}

.policy-card {
  display: grid;
  gap: 14px;
  border: 1px solid #d9e8ed;
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(22, 31, 28, 0.08);
}

.policy-card h2,
.policy-card p {
  margin: 0;
}

.policy-list {
  display: grid;
  gap: 10px;
}

.policy-list span {
  display: grid;
  gap: 3px;
  border-left: 4px solid #2f7d64;
  padding: 8px 0 8px 12px;
  color: var(--muted);
}

.policy-list strong {
  color: var(--ink);
}

.book-grid {
  display: grid;
  gap: 18px;
}

.book-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  border: 1px solid #d9e8ed;
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(22, 31, 28, 0.07);
}

.book-card-soft {
  background: #f7fbff;
}

.book-cover-placeholder {
  display: grid;
  min-height: 260px;
  align-content: center;
  justify-items: center;
  gap: 14px;
  border-radius: 8px;
  padding: 20px;
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(23, 32, 29, 0.82), rgba(47, 125, 100, 0.86)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.11) 0 12px, transparent 12px 24px);
}

.book-cover-placeholder span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 950;
}

.book-cover-placeholder strong {
  max-width: 160px;
  font-size: 1.2rem;
}

.book-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.book-copy h2,
.book-copy p {
  margin: 0;
}

.book-copy h2 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.book-copy p {
  max-width: 780px;
  color: var(--muted);
}

.book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.book-meta span {
  border: 1px solid #d9e8ed;
  border-radius: 999px;
  padding: 7px 10px;
  background: #f8fbfc;
  color: #244136;
  font-size: 0.88rem;
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-content {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 18px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--mint-dark);
  background: var(--soft);
  font-weight: 850;
}

.section,
.workflow-section,
.join-section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
}

.filters {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 12px;
  margin-bottom: 22px;
}

label {
  display: grid;
  gap: 7px;
  color: #3d4b45;
  font-size: 0.9rem;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cddbd3;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 98px;
  resize: vertical;
}

.specialist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.specialist-card,
.blog-card,
.resource-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(22, 31, 28, 0.05);
}

.specialist-card {
  display: grid;
  min-height: 360px;
  padding: 20px;
}

.profile-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 850;
}

.profile-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 15px 0;
}

.tag {
  border-radius: 999px;
  padding: 5px 9px;
  color: #2f453d;
  background: var(--soft);
  font-size: 0.78rem;
  font-weight: 760;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  align-items: center;
}

.price {
  color: var(--mint-dark);
  font-weight: 850;
}

.rating {
  color: #755719;
  font-weight: 750;
}

.specialist-directory-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: 46px clamp(18px, 6vw, 72px) 28px;
  color: var(--white);
  background: #348fed;
}

.specialist-directory-hero h1 {
  font-size: clamp(2.25rem, 4.6vw, 4.2rem);
}

.specialist-directory-hero p:last-child {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
}

.specialist-directory {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: start;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 6%, rgba(255, 255, 255, 0.96) 6% 94%, rgba(255, 255, 255, 0) 94%),
    repeating-linear-gradient(135deg, rgba(36, 158, 224, 0.12) 0 18px, rgba(255, 223, 44, 0.14) 18px 36px);
}

.specialist-results {
  min-width: 0;
}

.directory-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(320px, 1fr);
  gap: 16px;
  align-items: end;
  margin-bottom: 16px;
  border: 1px solid #cce5f8;
  border-radius: 8px;
  padding: 18px;
  background: #eaf9ff;
}

.directory-toolbar h2 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.directory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.directory-actions .button {
  margin-top: 0;
}

.button.is-active,
.save-specialist-button.is-saved {
  border-color: #2f915d;
  background: #e1f8ea;
  color: #1e6040;
}

.specialist-list {
  display: grid;
  gap: 8px;
}

.specialist-row-card {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 160px;
  gap: 14px;
  align-items: center;
  border: 1px solid #d6e4ec;
  border-radius: 8px;
  padding: 10px;
  background: var(--white);
}

.specialist-row-card:hover {
  border-color: #7dc6ef;
  box-shadow: 0 10px 24px rgba(42, 143, 208, 0.12);
}

.specialist-photo {
  display: grid;
  min-height: 112px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  overflow: hidden;
}

.specialist-photo span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(17, 26, 23, 0.2);
  font-size: 1.55rem;
  font-weight: 900;
}

.specialist-photo.large {
  width: 190px;
  height: 190px;
  min-height: 190px;
  flex: 0 0 auto;
}

.specialist-row-copy {
  display: grid;
  gap: 5px;
}

.specialist-row-copy h3 {
  color: #102042;
}

.specialist-row-copy p {
  margin: 0;
}

.specialist-focus {
  color: var(--muted);
}

.specialist-row-meta {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  color: #526a77;
  font-size: 0.86rem;
}

.specialist-row-meta span {
  border-radius: 999px;
  padding: 4px 8px;
  background: #f0f8fc;
}

.location-side-note {
  border: 1px solid #cde5ef;
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
  color: #174863;
  font-weight: 800;
}

.specialist-row-price {
  display: grid;
  gap: 7px;
  justify-items: stretch;
  text-align: center;
}

.specialist-row-price strong {
  border-radius: 8px;
  padding: 10px;
  color: #11263b;
  background: #fff35d;
  font-size: 1rem;
}

.specialist-row-price span {
  color: #55707b;
  font-size: 0.82rem;
}

.specialist-filter-panel {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 14px;
  border: 1px solid #bde2f2;
  border-radius: 8px;
  padding: 16px;
  background: #eaf9ff;
}

.filter-note {
  margin: 0;
  border-top: 1px solid #c9e4ef;
  padding-top: 10px;
  color: #496877;
  font-size: 0.86rem;
}

.range-note {
  color: #24516b;
  font-size: 0.84rem;
  font-weight: 800;
}

.specialist-profile-view {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 7%, rgba(255, 255, 255, 0.98) 7% 93%, rgba(255, 255, 255, 0) 93%),
    repeating-linear-gradient(135deg, rgba(36, 158, 224, 0.12) 0 18px, rgba(255, 223, 44, 0.14) 18px 36px);
}

.provider-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.provider-main-profile {
  display: grid;
  gap: 22px;
}

.provider-profile-head {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 210px;
  gap: 20px;
  align-items: start;
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.provider-profile-head h1 {
  color: #102042;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.profile-booking-card {
  display: grid;
  gap: 9px;
  border-radius: 8px;
  padding: 16px;
  background: #fff35d;
}

.profile-booking-card strong {
  color: #11263b;
  font-size: 1.45rem;
}

.availability-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 8px;
  padding: 14px;
  background: #dcffc6;
}

.availability-strip span {
  border-radius: 999px;
  padding: 6px 10px;
  color: #6c9f48;
  background: #f1ffe7;
  font-weight: 850;
}

.availability-strip span.is-on {
  color: var(--white);
  background: #68b32a;
}

.provider-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.provider-info-grid section,
.provider-about,
.achievement-grid,
.comment-box {
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}

.provider-info-grid h2,
.provider-about h2 {
  font-size: 1.45rem;
}

.provider-info-grid section:nth-child(1) {
  background: #e4f5ff;
}

.provider-info-grid section:nth-child(2) {
  background: #fff0e8;
}

.provider-info-grid section:nth-child(3) {
  background: #f1ddff;
}

.provider-about ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.achievement-grid article {
  display: grid;
  min-height: 120px;
  place-items: center;
  border: 1px solid #bfe3ef;
  border-radius: 8px;
  padding: 10px;
  background: linear-gradient(135deg, #effcff, #fff4bf);
  text-align: center;
}

.achievement-grid span {
  color: #2877a9;
  font-size: 0.78rem;
}

.comment-box {
  display: grid;
  gap: 10px;
  background: #e6f7ff;
}

.profile-side .check-row {
  display: flex;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
}

.profile-side .check-row input {
  width: auto;
}

.side-slot {
  border: 1px solid #bde2f2;
  border-radius: 8px;
  padding: 9px 10px;
  color: #24516b;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  font-weight: 760;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(300px, 1fr);
  gap: 34px;
  background: #18342b;
  color: var(--white);
}

.workflow-section .eyebrow {
  color: #ffd39a;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.steps span {
  color: rgba(255, 255, 255, 0.76);
}

.materials-section {
  background: var(--soft);
}

.account-access-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid #cfe0d7;
  border-radius: 8px;
  padding: clamp(18px, 3vw, 26px);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(22, 31, 28, 0.05);
}

.account-access-bar h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.account-access-bar p {
  max-width: 820px;
  margin: 8px 0 0;
  color: var(--muted);
}

.account-access-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.materials-dashboard {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: start;
}

.teacher-access-panel,
.material-upload-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 26px);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(22, 31, 28, 0.05);
}

.teacher-access-panel h2,
.material-upload-form h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.teacher-access-panel p,
.material-upload-form p {
  margin: 0;
  color: var(--muted);
}

.teacher-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.teacher-stats span {
  border: 1px solid #cfe0d7;
  border-radius: 8px;
  padding: 12px;
  color: #31433b;
  background: #f4faf6;
  font-size: 0.92rem;
}

.teacher-stats strong {
  display: block;
  color: var(--mint-dark);
  font-size: 1.45rem;
}

.educator-access-actions,
.author-library-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.educator-access-actions .button,
.author-library-actions .button {
  min-height: 40px;
}

.material-upload-form textarea {
  min-height: 118px;
}

.editor-form {
  gap: 18px;
  border-color: #b7dded;
  background: #e6f7ff;
}

.editor-form.is-disabled-for-role {
  position: relative;
  border-color: #d8e1dc;
  background: #f5f8f6;
}

.editor-form.is-disabled-for-role::before {
  content: "Educator registration required to publish author materials";
  display: block;
  border: 1px solid #d8c294;
  border-radius: 8px;
  padding: 12px;
  color: #5c4517;
  background: #fff7e3;
  font-weight: 850;
}

.editor-form.is-disabled-for-role input,
.editor-form.is-disabled-for-role select,
.editor-form.is-disabled-for-role textarea,
.editor-form.is-disabled-for-role button {
  opacity: 0.62;
  cursor: not-allowed;
}

.role-access-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.role-access-grid article {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
}

.role-access-grid span {
  color: var(--muted);
}

.registration-progress {
  border: 1px solid #cce5f8;
  border-radius: 8px;
  padding: 12px;
  background: #eaf9ff;
  color: #174863;
  font-weight: 800;
}

.login-panel {
  border-color: #bfe8ca;
  background: #f3fff6;
}

.educator-verification-fields,
.educator-verification-summary {
  display: grid;
  gap: 12px;
  border: 1px solid #bfe3ef;
  border-radius: 8px;
  padding: 16px;
  background: #eefaff;
}

.educator-verification-fields h3 {
  font-size: 1.2rem;
}

.educator-verification-fields p,
.educator-verification-summary span {
  margin: 0;
  color: var(--muted);
}

.educator-verification-fields textarea {
  min-height: 96px;
}

.form-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.profile-publish-check {
  align-items: center;
  border: 1px solid #bfe8ca;
  border-radius: 8px;
  padding: 10px 12px;
  background: #f0fff4;
  font-weight: 750;
}

.specialist-studio {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 18px;
  align-items: start;
  background: #f4faf6;
}

.studio-menu,
.studio-form,
.studio-side-card,
.studio-lessons-card {
  border: 1px solid #d8e4e9;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(22, 31, 28, 0.05);
}

.studio-menu {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 16px;
}

.studio-menu a {
  border-radius: 8px;
  padding: 9px 10px;
  color: #174863;
  background: #ecf8ff;
  font-weight: 800;
}

.studio-form,
.studio-side-card,
.studio-lessons-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.studio-lessons-card {
  grid-column: 2 / -1;
}

.lesson-request-item {
  border-color: #cfe4ee;
  background: #fbfdff;
}

.studio-form textarea {
  min-height: 150px;
}

.profile-status-pill {
  border-radius: 999px;
  padding: 7px 12px;
  color: #174863;
  background: #e5f6ff;
  font-weight: 850;
}

.studio-summary-list {
  display: grid;
  gap: 10px;
}

.studio-summary-list span {
  display: grid;
  gap: 2px;
  border: 1px solid #e1edf2;
  border-radius: 8px;
  padding: 10px;
  background: #f8fbfc;
}

.studio-summary-list b {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.educator-verification-summary {
  border-color: #78d17c;
  background: #edffe7;
}

.educator-verification-summary strong {
  color: #22612b;
}

.editor-breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: #2877a9;
  font-size: 0.88rem;
  font-weight: 760;
}

.editor-breadcrumb span::before,
.editor-breadcrumb strong::before {
  content: ">";
  margin-right: 8px;
  color: #7fa8bd;
}

.editor-title input {
  border-width: 2px;
  border-color: #b7d9e8;
  background: #ffffff;
  font-size: 1.02rem;
}

.editor-block {
  display: grid;
  gap: 8px;
}

.editor-block > label,
.cover-upload > span {
  color: #54666f;
  font-weight: 760;
}

.rich-toolbar {
  display: grid;
  gap: 5px;
  border: 2px solid #55b8d7;
  border-bottom: 1px dashed #9bd1e3;
  border-radius: 8px 8px 0 0;
  padding: 8px;
  background: #ffffff;
}

.toolbar-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
}

.toolbar-row button,
.toolbar-row select {
  min-height: 30px;
  border: 1px solid #b8ced8;
  border-radius: 5px;
  padding: 4px 7px;
  color: #18333f;
  background: #f7fbfd;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
}

.swatch {
  border-radius: 5px;
  padding: 5px 8px;
  color: #10242c;
  font-size: 0.78rem;
  font-weight: 850;
}

.swatch.yellow {
  background: #ffe15d;
}

.swatch.blue {
  color: #ffffff;
  background: #33a7e0;
}

.swatch.green {
  color: #ffffff;
  background: #39b86a;
}

.swatch.pink {
  color: #ffffff;
  background: #f276bd;
}

.editor-block textarea {
  min-height: 360px;
  border: 2px solid #55b8d7;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  padding: 16px;
  background: #ffffff;
  font-size: 1.02rem;
}

.quality-note {
  color: #21a657 !important;
  font-size: 0.92rem;
  font-weight: 760;
}

.ai-row,
.pin-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3f5058;
  font-size: 1rem;
  font-weight: 720;
}

.ai-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  width: fit-content;
  border-radius: 8px;
  padding: 10px 14px;
  background: linear-gradient(90deg, #eaffbd, #f2b8ff);
}

.ai-row input,
.pin-row input {
  width: 24px;
  height: 24px;
  accent-color: var(--mint);
}

.ai-row small {
  max-width: 280px;
  color: #6c7a81;
  font-size: 0.78rem;
  font-weight: 650;
}

.cover-upload {
  display: grid;
  gap: 10px;
}

.drop-zone {
  border: 2px dashed #4aa9ff;
  border-radius: 8px;
  padding: 18px;
  color: #253b46;
  background: #ffffff;
  cursor: pointer;
}

.drop-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.drop-zone strong,
.drop-zone small {
  display: block;
}

.drop-zone small {
  color: #2877a9;
}

.cover-preview {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 8px;
  padding: 10px;
  color: #263941;
  background: #c9efff;
}

.cover-thumb {
  height: 70px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 74% 24%, #f7c266 0 24px, transparent 25px),
    linear-gradient(135deg, #f5a35f, #49a7b1);
}

.folder-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.schedule-date {
  max-width: 520px;
}

.schedule-date small {
  color: #8a98a0;
  font-size: 0.82rem;
}

.save-material-button {
  justify-self: start;
  min-width: 190px;
  background: #2d9fe3;
}

.material-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: clamp(24px, 4vw, 38px) 0 14px;
}

.material-library-tools {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: end;
  margin: clamp(26px, 4vw, 42px) 0 14px;
  border: 1px solid #bfe3ef;
  border-radius: 8px;
  padding: 18px;
  background: #e8f8fb;
}

.material-library-tools h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.material-search-label {
  gap: 8px;
}

.material-search-label input {
  border-width: 2px;
  border-color: #9ccfe3;
  background: #ffffff;
}

.author-library-actions {
  justify-content: flex-end;
}

.material-result-count {
  min-height: 24px;
  margin: 0 0 12px;
  color: #426e9f;
  font-weight: 850;
}

.material-tabs button {
  border: 1px solid #cbdad2;
  border-radius: 8px;
  padding: 10px 14px;
  color: #31433b;
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.material-tabs button.is-active {
  border-color: var(--mint);
  color: var(--white);
  background: var(--mint);
}

.materials-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 1fr);
  gap: 18px;
}

.material-feature {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 18px;
  align-items: center;
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.material-feature img {
  height: 230px;
  width: 155px;
  border-radius: 8px;
  object-fit: cover;
}

.material-feature span,
.blog-card span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.resource-list {
  display: grid;
  gap: 12px;
}

.resource-card {
  padding: 18px;
}

.material-library-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.material-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.material-cover {
  width: 100%;
  max-height: 360px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #d5e1e8;
}

.task-preview {
  display: grid;
  gap: 6px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  padding: 14px;
  color: #263c35;
  background: #fff8df;
}

.task-preview p {
  margin: 0;
  color: #3d4b45;
}

.material-card-top,
.material-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.visibility-pill {
  border-radius: 999px;
  padding: 5px 9px;
  color: #24516b;
  background: #e8f5fb;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.material-meta {
  display: grid;
  gap: 5px;
  color: #3d4b45;
  font-size: 0.9rem;
}

.material-actions {
  justify-content: flex-start;
  margin-top: 6px;
}

.material-actions .button {
  min-height: 38px;
  padding: 8px 12px;
}

.material-preview-modal {
  width: min(920px, calc(100% - 28px));
  max-height: calc(100vh - 30px);
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: var(--shadow);
}

.material-preview-modal::backdrop {
  background: rgba(17, 26, 23, 0.62);
}

.material-preview-card {
  position: relative;
  display: grid;
  gap: 16px;
  max-height: calc(100vh - 30px);
  overflow: auto;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
}

.material-preview-card h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.preview-cover {
  width: min(360px, 100%);
  max-height: 430px;
  border: 1px solid #d5e1e8;
  border-radius: 8px;
  object-fit: cover;
}

.preview-meta {
  margin: 12px 0;
}

.preview-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.preview-image-grid a {
  display: grid;
  gap: 8px;
  border: 1px solid #d8e4e9;
  border-radius: 8px;
  padding: 10px;
  background: #f8fbfc;
  color: #24516b;
  font-weight: 850;
}

.preview-image-grid img {
  width: 100%;
  max-height: 260px;
  border-radius: 6px;
  object-fit: cover;
}

.preview-actions {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.library-topbar {
  background: #0e6aa8;
  color: var(--white);
}

.library-topbar .brand small,
.library-topbar .nav,
.library-topbar .nav a {
  color: rgba(255, 255, 255, 0.86);
}

.library-topbar .brand-mark {
  background: #49a8e8;
}

.methodical-hero {
  padding: 34px clamp(18px, 6vw, 72px) 0;
  color: var(--white);
  background: #348fed;
}

.methodical-hero h1 {
  max-width: 920px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.publish-button {
  min-height: 48px;
  margin-top: 14px;
  border: 0;
  border-radius: 8px;
  padding: 11px 18px;
  color: #1d2630;
  background: #ffd51f;
  box-shadow: 0 5px 0 #d3a900;
  cursor: pointer;
  font-weight: 900;
}

.methodical-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.methodical-tabs a {
  border: 1px solid rgba(20, 86, 137, 0.75);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  padding: 12px 18px;
  background: #247bd0;
  font-weight: 850;
}

.methodical-tabs a.is-active {
  color: #23679f;
  background: var(--white);
}

.methodical-shell {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 7%, rgba(255, 255, 255, 0.94) 7% 93%, rgba(255, 255, 255, 0) 93%),
    repeating-linear-gradient(135deg, rgba(36, 158, 224, 0.12) 0 18px, rgba(255, 223, 44, 0.16) 18px 36px);
}

.educator-site-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(210px, 0.28fr);
  gap: 18px;
  align-items: start;
}

.educator-profile-card,
.educator-menu-panel,
.methodical-search-panel,
.methodical-item {
  border: 1px solid #cce5f8;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(22, 31, 28, 0.05);
}

.educator-profile-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.educator-profile-top {
  display: flex;
  gap: 18px;
  align-items: center;
}

.educator-photo {
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  border: 6px solid #c5ecf6;
  border-radius: 999px;
  color: var(--white);
  background: #426e9f;
  font-size: 2rem;
  font-weight: 900;
}

.rating-line {
  color: #21a6eb;
  font-weight: 850;
}

.pro-badge {
  display: inline-flex;
  margin-top: 10px;
  border-radius: 8px;
  padding: 7px 10px;
  color: #2b6b12;
  background: #c8f69c;
  font-weight: 850;
}

.educator-stats {
  display: grid;
  gap: 10px;
}

.educator-stats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #46a1f0;
  border-radius: 8px;
  padding: 12px 16px;
  color: #2877cf;
  font-weight: 850;
}

.educator-menu-panel {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: #eefaff;
}

.educator-menu-panel a,
.educator-menu-panel button {
  border: 0;
  border-radius: 6px;
  padding: 8px 10px;
  color: #24516b;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  font-weight: 760;
}

.methodical-search-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: end;
  margin-top: 18px;
  padding: 18px;
  background: #eaf9ff;
}

.methodical-search-panel h2 {
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.methodical-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.methodical-filters button {
  border: 1px solid #cae4f5;
  border-radius: 8px;
  padding: 9px 13px;
  color: #2674ad;
  background: #eefaff;
  cursor: pointer;
  font-weight: 850;
}

.methodical-filters button.is-active {
  color: var(--white);
  border-color: #2783c6;
  background: #2d9fe3;
}

.methodical-list {
  display: grid;
  gap: 8px;
}

.methodical-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
}

.methodical-thumb {
  position: relative;
  display: grid;
  min-height: 94px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d7e4ed;
  border-radius: 6px;
  background: linear-gradient(#f8fbfc, #e6edf1);
}

.methodical-thumb img {
  width: 100%;
  height: 108px;
  object-fit: cover;
}

.methodical-thumb span {
  color: #238ad2;
  font-weight: 900;
}

.methodical-thumb small {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4px 6px;
  color: var(--white);
  background: rgba(18, 40, 51, 0.65);
  font-size: 0.72rem;
}

.methodical-copy {
  display: grid;
  gap: 5px;
}

.methodical-copy p {
  margin: 0;
  color: var(--muted);
}

.methodical-meta,
.mini-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #5c6d78;
  font-size: 0.84rem;
}

.mini-stats {
  color: #2b8fd0;
  font-weight: 760;
}

.methodical-actions {
  display: grid;
  gap: 8px;
  min-width: 130px;
}

.methodical-actions .button {
  min-height: 36px;
  padding: 7px 10px;
}

.material-publisher-modal {
  width: min(980px, calc(100% - 28px));
  max-height: calc(100vh - 30px);
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: var(--shadow);
}

.material-publisher-modal::backdrop {
  background: rgba(17, 26, 23, 0.62);
}

.publisher-form {
  position: relative;
  display: grid;
  gap: 16px;
  max-height: calc(100vh - 30px);
  overflow: auto;
  padding: 26px;
  background: #e6f7ff;
}

.publisher-form h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.publisher-form label {
  display: grid;
  gap: 7px;
}

.publisher-form small {
  color: #7d8d94;
}

.large-drop-zone {
  display: grid;
  min-height: 110px;
  place-items: center;
  border: 2px dashed #ffca2e;
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
  text-align: center;
}

.large-drop-zone input {
  max-width: 300px;
}

.grade-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 0;
  padding: 0;
}

.grade-grid legend {
  grid-column: 1 / -1;
  color: #54666f;
  font-weight: 760;
}

.grade-grid label,
.paid-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
}

.professional-note {
  border: 1px solid #78d17c;
  border-radius: 8px;
  padding: 14px;
  color: #22612b;
  background: #edffe7;
  font-weight: 850;
}

.publish-submit {
  justify-self: start;
  min-width: 190px;
}

.resource-card p,
.blog-card p,
.specialist-card p {
  color: var(--muted);
}

.conferences-section {
  background: var(--white);
}

.conference-grid,
.update-grid,
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.conference-card,
.update-card,
.course-card {
  display: grid;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(22, 31, 28, 0.05);
}

.conference-card {
  border-top: 5px solid var(--blue);
}

.update-card {
  min-height: 260px;
  border-top: 5px solid var(--mint);
}

.course-card {
  border-top: 5px solid var(--gold);
}

.conference-date,
.course-level {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.conference-card p,
.update-card p,
.course-card p {
  color: var(--muted);
}

.conference-meta,
.course-meta {
  display: grid;
  gap: 6px;
  color: #3d4b45;
  font-size: 0.92rem;
}

.conference-card a,
.update-card a,
.course-card button {
  align-self: end;
  justify-self: start;
  margin-top: 18px;
}

.updates-heading {
  margin: clamp(34px, 5vw, 54px) 0 18px;
}

.updates-heading h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.course-card button {
  border: 0;
}

.courses-section {
  background: #f7f4ec;
}

.blog-page {
  background-color: #ffffff;
  background-image:
    linear-gradient(135deg, rgba(54, 169, 225, 0.92) 0 9px, transparent 9px 18px),
    linear-gradient(135deg, transparent 0 12px, rgba(255, 219, 57, 0.9) 12px 21px, transparent 21px 36px);
  background-position: 24px 72px, 36px 84px;
  background-size: 112px 112px;
}

.blog-portal-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(56px, 8vw, 92px) clamp(18px, 6vw, 72px) 34px;
  border-bottom: 1px solid #bfcdd6;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 244, 246, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(66, 110, 159, 0.08) 42px 54px);
}

.blog-portal-hero h1 {
  max-width: 840px;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  color: #111a17;
}

.blog-portal-hero p:last-child {
  max-width: 720px;
  color: #44514b;
  font-size: 1.08rem;
}

.blog-section {
  padding-top: 24px;
  background: rgba(255, 255, 255, 0.88);
}

.blog-shell,
.blog-reader {
  width: min(1040px, 100%);
  margin: 0 auto;
  border: 1px solid #d4e0e7;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(22, 31, 28, 0.08);
}

.blog-shell {
  display: grid;
  gap: 18px;
  padding: clamp(16px, 3vw, 26px);
}

.blog-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: #eef2f4;
}

.blog-profile .profile-top span:not(.avatar) {
  display: block;
  color: var(--muted);
}

.blog-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.blog-stats span {
  border: 1px solid #d0dde5;
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--white);
  color: #405049;
  font-size: 0.9rem;
}

.blog-tools {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #e8f8fb;
}

.blog-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.blog-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.blog-list-heading h2 {
  font-size: 1.75rem;
}

.blog-list-heading span {
  color: var(--muted);
  font-weight: 800;
}

.blog-grid,
.blog-feed {
  display: grid;
  gap: 10px;
}

.blog-feed-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  border: 1px solid #d5e1e8;
  padding: 10px;
  background: var(--white);
}

.blog-thumb {
  position: relative;
  display: block;
  min-height: 120px;
  overflow: hidden;
  border: 1px solid #cfdde4;
  background: #eef3f5;
}

.blog-thumb img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.blog-thumb span {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 5px 8px;
  color: var(--white);
  background: rgba(17, 26, 23, 0.72);
  font-size: 0.82rem;
  font-weight: 760;
}

.blog-feed-copy {
  display: grid;
  gap: 7px;
  align-content: start;
}

.blog-title-link h3 {
  font-size: 1.02rem;
  line-height: 1.25;
}

.blog-title-link:hover {
  color: var(--mint-dark);
}

.blog-feed-copy p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #53625b;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-meta-line,
.blog-actions,
.vote-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-meta-line {
  color: #426e9f;
  font-size: 0.86rem;
  font-weight: 760;
}

.blog-actions {
  justify-content: space-between;
  margin-top: 4px;
}

.vote-group button {
  min-width: 52px;
  border: 1px solid #cbd9df;
  border-radius: 6px;
  padding: 4px 8px;
  color: #32423c;
  background: #f8fbfc;
  cursor: pointer;
  font-weight: 850;
}

.vote-group button:hover,
.vote-group button.is-selected {
  border-color: var(--mint);
  color: var(--mint-dark);
  background: #eaf5ef;
}

.read-link,
.back-link {
  color: #1970a9;
  font-weight: 850;
}

.read-link:hover,
.back-link:hover {
  color: var(--mint-dark);
}

.blog-reader {
  padding: clamp(16px, 3vw, 28px);
}

.reader-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  margin-top: 16px;
}

.reader-main {
  min-width: 0;
}

.reader-image {
  width: 100%;
  max-height: 340px;
  border: 1px solid #cfdde4;
  object-fit: cover;
}

.reader-kicker {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 8px;
  color: #426e9f;
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.reader-main h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.reader-side {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 10px;
  align-self: start;
  border: 1px solid #d8e4e9;
  border-radius: 8px;
  padding: 16px;
  background: #f7fbfc;
}

.reader-side span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.reader-side p {
  margin: 0;
  color: var(--muted);
}

.reader-votes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.featured-article {
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-stack {
  display: grid;
  gap: 26px;
}

.featured-article h2 {
  max-width: 880px;
  margin-top: 8px;
}

.article-lede {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
}

.article-body {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.article-body p {
  max-width: 860px;
  margin: 0;
  color: #35443e;
}

.blog-card {
  display: grid;
  min-height: 260px;
  padding: 22px;
}

.blog-card a {
  align-self: end;
  color: var(--mint-dark);
  font-weight: 800;
}

.local-status {
  align-self: end;
  color: var(--mint-dark);
  font-size: 0.9rem;
}

.join-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.65fr);
  gap: 40px;
  align-items: start;
  background: var(--white);
}

.join-copy p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.join-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--paper);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--mint-dark);
  font-weight: 750;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.75);
  background: #111a17;
}

.footer p {
  max-width: 700px;
  margin: 6px 0 0;
}

.footer strong,
.footer a {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
  color: #ffffff;
}

.booking-modal {
  width: min(640px, calc(100% - 28px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: var(--shadow);
}

.booking-modal::backdrop {
  background: rgba(17, 26, 23, 0.62);
}

.modal-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 26px;
}

.modal-card h2 {
  font-size: 1.8rem;
}

.close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-size: 1.4rem;
}

.payment-box {
  border: 1px solid #d8c294;
  border-radius: 8px;
  padding: 14px;
  color: #5c4517;
  background: #fff7e3;
}

.offline-request-fields {
  display: grid;
  gap: 12px;
  border: 1px solid #cde5ef;
  border-radius: 8px;
  padding: 12px;
  background: #f3fbff;
}

.offline-request-fields[hidden] {
  display: none;
}

.payment-receipt-modal::backdrop {
  background: rgba(5, 24, 35, 0.48);
}

.receipt-card {
  position: relative;
  width: min(620px, 92vw);
  border: 0;
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(9, 32, 45, 0.28);
}

.receipt-card h2 {
  font-size: 1.8rem;
}

.receipt-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.receipt-lines span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e3eef3;
  padding: 9px 0;
}

.receipt-lines em {
  max-width: 55%;
  color: #102f43;
  font-style: normal;
  font-weight: 850;
  text-align: right;
}

.receipt-lines .receipt-total {
  color: #0f5f37;
  font-size: 1.08rem;
}

.checkout-summary {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.checkout-summary span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(92, 69, 23, 0.16);
  padding: 6px 0;
}

.checkout-summary em {
  font-style: normal;
  font-weight: 800;
}

.checkout-summary .checkout-total {
  border-bottom: 0;
  color: #112a46;
  font-size: 1.05rem;
}

.payment-flow-note {
  margin-top: 10px;
  border: 1px solid rgba(42, 151, 220, 0.32);
  border-radius: 8px;
  padding: 10px;
  background: #eaf8ff;
  color: #174863;
  font-size: 0.92rem;
  font-weight: 700;
}

.free-summary {
  color: #215f3a;
  background: #ecfff3;
}

.payment-note {
  margin: 10px 0 0;
  color: #6e5a28;
  font-size: 0.9rem;
}

.payment-status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0;
}

.payment-status-line b,
.payment-status-line span {
  border-radius: 999px;
  background: #e8f7ff;
  color: #16628c;
  padding: 5px 9px;
  font-size: 0.82rem;
}

.payment-status-line b {
  background: #ecfff3;
  color: #217342;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .access-panel,
  .home-links,
  .workspace-grid,
  .platform-flow-section,
  .flow-timeline,
  .dashboard-grid,
  .dashboard-lists,
  .parent-support,
  .intake-section,
  .condition-panel,
  .section-heading,
  .filters,
  .account-access-bar,
  .educator-site-grid,
  .methodical-search-panel,
  .specialist-directory-hero,
  .specialist-directory,
  .directory-toolbar,
  .provider-profile-layout,
  .provider-profile-head,
  .provider-info-grid,
  .specialist-grid,
  .workflow-section,
  .materials-grid,
  .materials-dashboard,
  .material-library-list,
  .conference-grid,
  .update-grid,
  .course-grid,
  .blog-grid,
  .blog-feed-card,
  .reader-layout,
  .join-section {
    grid-template-columns: 1fr;
  }

  .methodical-item {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .methodical-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
  }

  .specialist-filter-panel {
    position: static;
  }

  .specialist-row-card {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .specialist-row-price {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
  }

  .achievement-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-linked-grid {
    grid-template-columns: 1fr;
  }

  .launch-stack-grid,
  .schema-grid,
  .payment-readiness-grid,
  .launch-checklist,
  .admin-summary-grid,
  .admin-columns,
  .readiness-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .blog-portal-hero,
  .blog-profile,
  .reader-votes {
    align-items: flex-start;
    flex-direction: column;
  }

  .reader-side {
    position: static;
  }

  .parent-grid {
    grid-template-columns: 1fr;
  }

  .book-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .header-action {
    width: 100%;
  }

  .hero-content {
    margin-bottom: 34px;
  }

  .trust-row {
    display: grid;
  }

  .trust-row span {
    border-right: 0;
  }

  .access-panel article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .material-feature {
    grid-template-columns: 1fr;
  }

  .material-feature img {
    width: 100%;
    height: 260px;
  }

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

  .blog-thumb img {
    height: 190px;
  }

  .blog-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .folder-row,
  .material-library-tools,
  .cover-preview,
  .ai-row {
    grid-template-columns: 1fr;
  }

  .toolbar-row select {
    width: 100%;
  }

  .grade-grid,
  .methodical-item,
  .blog-post-row,
  .specialist-row-card,
  .specialist-row-price,
  .achievement-grid,
  .specialist-studio,
  .form-two-column,
  .receipt-mini-grid {
    grid-template-columns: 1fr;
  }

  .studio-menu {
    position: static;
  }

  .studio-lessons-card {
    grid-column: auto;
  }

  .blog-post-thumb {
    width: 100%;
  }

  .educator-profile-top,
  .provider-profile-head,
  .account-access-actions {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
  }

  .specialist-photo.large {
    width: 150px;
    height: 150px;
    min-height: 150px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.payment-setup-section {
  display: grid;
  gap: 22px;
}

.payment-status-panel,
.payment-admin-note {
  background: #e9f7ff;
  border: 1px solid #b7def4;
  border-radius: 8px;
  padding: 22px;
}

.payment-status-panel {
  align-items: flex-start;
  display: flex;
  gap: 14px;
}

.payment-status-panel h2,
.payment-admin-note h2 {
  margin: 0 0 8px;
}

.payment-status-panel p,
.payment-admin-note p {
  margin: 0;
}

.status-dot {
  border-radius: 999px;
  flex: 0 0 auto;
  height: 16px;
  margin-top: 6px;
  width: 16px;
}

.status-dot.ready {
  background: #3dbb60;
}

.status-dot.pending {
  background: #f2b544;
}

.status-dot.offline {
  background: #d94d4d;
}

.payment-setup-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.payment-setup-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.payment-setup-grid span {
  align-items: center;
  background: #196fb3;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  margin-bottom: 10px;
  width: 30px;
}

.payment-setup-grid h3 {
  margin: 0 0 8px;
}

.payment-setup-grid p {
  margin: 0;
}

.payment-setup-grid code {
  background: #f5fbff;
  border: 1px solid #d5eaf7;
  border-radius: 6px;
  display: block;
  font-size: 0.85rem;
  line-height: 1.45;
  margin-top: 10px;
  overflow-wrap: anywhere;
  padding: 10px;
}

@media (max-width: 920px) {
  .payment-setup-grid {
    grid-template-columns: 1fr;
  }
}
