/* Core Community experience — page-specific styling layered on the shared v6.2 chrome. */

:root {
  --community-navy: #0b3f83;
  --community-deep: #082c68;
  --community-gold: #f4b21b;
  --community-gold-dark: #dc9610;
  --community-blue-panel: #edf7ff;
  --community-yellow-panel: #fffaf0;
  --community-line: #d7e7f2;
  --community-muted: #46658c;
  --community-white: #fff;
  --community-radius: 26px;
  --community-shadow: 0 14px 32px rgba(8, 52, 111, .09);
}

html {
  background: #fff;
}

body.community-page {
  margin: 0;
  color: var(--community-deep);
  background: #fff;
  font-family: "Nunito Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

.community-page a {
  color: inherit;
  text-decoration: none;
}

.community-page img,
.community-page video {
  display: block;
  max-width: 100%;
}

.community-page button {
  font: inherit;
}

.community-page h1,
.community-page h2,
.community-page h3,
.community-page p {
  margin-top: 0;
}

.community-page h1,
.community-page h2,
.community-page h3 {
  color: var(--community-deep);
}

.community-page h1,
.community-page h2,
.community-page h3,
.community-page .community-eyebrow,
.community-page .community-button,
.community-page .community-workshop-card,
.community-page .community-agenda-list,
.community-page .community-step-number {
  font-family: Inter, "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
}

.community-site-shell {
  margin-bottom: 24px;
}

.community-page .site-header {
  position: relative;
  z-index: 10;
}

.community-page .desktop-nav a.community-nav-active {
  position: relative;
  color: var(--community-deep);
}

.community-page .desktop-nav a.community-nav-active::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--community-gold);
  content: "";
}

.community-page .mobile-nav a.community-nav-active {
  color: var(--community-deep);
  background: var(--community-blue-panel);
}

.community-skip-link {
  position: fixed;
  z-index: 30;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--community-deep);
  transform: translateY(-150%);
  transition: transform .18s ease;
}

.community-skip-link:focus {
  transform: translateY(0);
}

.community-inner {
  width: min(1260px, calc(100% - 96px));
  margin: 0 auto;
}

.community-eyebrow {
  margin-bottom: 10px;
  color: var(--community-navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .24em;
  line-height: 1.2;
  text-transform: uppercase;
}

.community-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 5.2vw, 78px) 0 44px;
  background:
    radial-gradient(circle at 87% 20%, rgba(244, 178, 27, .13), transparent 22%),
    linear-gradient(135deg, #fff 0%, #fff 53%, #f8fcff 100%);
}

.community-hero::after {
  position: absolute;
  right: -190px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  opacity: .08;
  background: url("/brand/imbright-full-sun.svg?v=20260906-community") center / contain no-repeat;
  content: "";
  pointer-events: none;
}

.community-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(390px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.community-hero-copy {
  max-width: 580px;
}

.community-hero h1 {
  max-width: 590px;
  margin-bottom: 16px;
  color: var(--community-navy);
  font-size: clamp(46px, 5.2vw, 78px);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .98;
}

.community-hero h1 span {
  color: var(--community-gold-dark);
}

.community-hero-lede {
  max-width: 550px;
  margin-bottom: 24px;
  color: var(--community-deep);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.38;
}

.community-hero-description {
  max-width: 520px;
  margin-bottom: 26px;
  color: var(--community-muted);
  font-size: 17px;
}

.community-actions {
  display: grid;
  max-width: 470px;
  gap: 10px;
}

.community-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.1;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.community-button svg,
.community-text-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.community-button:hover,
.community-button:focus-visible {
  transform: translateY(-2px);
}

.community-button-primary {
  color: var(--community-deep);
  background: var(--community-gold);
  box-shadow: 0 10px 22px rgba(244, 178, 27, .24);
}

.community-button-primary:hover,
.community-button-primary:focus-visible {
  background: var(--community-gold-dark);
  box-shadow: 0 13px 27px rgba(244, 178, 27, .29);
}

.community-button-outline {
  color: var(--community-deep);
  background: #fff;
  border: 2px solid var(--community-navy);
}

.community-button-outline:hover,
.community-button-outline:focus-visible {
  background: var(--community-blue-panel);
}

.community-hero-visual {
  position: relative;
  min-height: 395px;
  padding: 18px 6px 26px 36px;
}

.community-hero-image {
  width: min(100%, 640px);
  aspect-ratio: 16 / 9;
  margin-left: auto;
  overflow: hidden;
  border-radius: 30px;
  background: #e6f2fb;
  box-shadow: 0 18px 44px rgba(8, 52, 111, .16);
}

.community-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.community-workshop-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(92%, 535px);
  padding: 22px 24px 21px;
  border: 1px solid #d6e9f6;
  border-radius: 25px;
  background: rgba(246, 251, 255, .98);
  box-shadow: var(--community-shadow);
}

.community-workshop-card-top {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #cfe3f1;
}

.community-calendar-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--community-navy);
  background: #dceeff;
  border-radius: 50%;
}

.community-calendar-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.community-workshop-card-label {
  margin-bottom: 5px;
  color: var(--community-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.community-workshop-card-date {
  margin: 0 0 3px;
  color: var(--community-navy);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  line-height: 1.08;
}

.community-workshop-card-note {
  margin: 0;
  color: var(--community-muted);
  font-size: 15px;
}

.community-workshop-card-sample {
  display: inline-flex;
  margin: 10px 0 0;
  padding: 4px 9px;
  border: 1px solid #efcf83;
  border-radius: 999px;
  color: #79561b;
  background: #fff7df;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
}

.community-topic-block {
  padding-top: 15px;
}

.community-topic-block > span {
  display: block;
  margin-bottom: 6px;
  color: var(--community-deep);
  font-size: 15px;
  font-weight: 800;
}

.community-topic-title {
  display: block;
  padding: 9px 14px;
  border-radius: 14px;
  color: var(--community-navy);
  background: #e3f2ff;
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 900;
  line-height: 1.14;
}

.community-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--community-navy);
  font-size: 16px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.community-text-link:hover,
.community-text-link:focus-visible {
  color: var(--community-gold-dark);
}

.community-section {
  padding: clamp(34px, 5vw, 60px) 0;
}

.community-panel {
  margin: 0 clamp(18px, 4vw, 56px);
  border-radius: var(--community-radius);
}

.community-section-heading {
  margin-bottom: 28px;
}

.community-section-heading h2 {
  max-width: 1000px;
  margin-bottom: 0;
  color: var(--community-navy);
  font-size: clamp(31px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.community-section-heading p {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--community-muted);
  font-size: 18px;
}

.community-how-it-works {
  padding: clamp(30px, 4.2vw, 52px) 0;
  background: var(--community-yellow-panel);
}

.community-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.community-step {
  position: relative;
  padding: 6px clamp(18px, 3vw, 34px) 0;
}

.community-step + .community-step {
  border-left: 1px solid #c5ddeb;
}

.community-step-number {
  position: absolute;
  top: -8px;
  left: clamp(18px, 3vw, 34px);
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #1770d3;
  font-size: 18px;
  font-weight: 900;
}

.community-step-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--community-navy);
  background: #e1f1ff;
  border-radius: 50%;
}

.community-step-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.community-step h3 {
  margin-bottom: 6px;
  color: var(--community-navy);
  font-size: 19px;
  line-height: 1.18;
}

.community-step p {
  max-width: 280px;
  margin: 0;
  color: var(--community-muted);
  font-size: 17px;
}

.community-inside {
  padding: clamp(30px, 4.2vw, 52px) 0;
  background: var(--community-blue-panel);
}

.community-inside-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(290px, .72fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.community-video-preview,
.community-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #0b204d;
  box-shadow: 0 12px 28px rgba(8, 52, 111, .15);
}

.community-video-preview {
  aspect-ratio: 16 / 9;
}

.community-video-preview img,
.community-video-preview video,
.community-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-video-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 27, 66, .04), rgba(4, 27, 66, .38));
  content: "";
  pointer-events: none;
}

.community-video-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 9px;
  color: #fff;
  background: rgba(18, 24, 30, .82);
  font-size: 14px;
  font-weight: 800;
}

.community-play-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: rgba(8, 44, 104, .76);
  transform: translate(-50%, -50%);
  transition: transform .18s ease, background-color .18s ease;
}

.community-play-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  transform: translateX(2px);
}

.community-video-preview:hover .community-play-icon,
.community-video-preview:focus-visible .community-play-icon {
  background: var(--community-gold-dark);
  transform: translate(-50%, -50%) scale(1.05);
}

.community-video-caption {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}

.community-video-caption small {
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
}

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

.community-agenda-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.community-agenda-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--community-navy);
  background: #d9edff;
  border-radius: 50%;
}

.community-agenda-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.community-agenda-list strong,
.community-agenda-list small {
  display: block;
}

.community-agenda-list strong {
  color: var(--community-navy);
  font-size: 16px;
}

.community-agenda-list small {
  margin-top: 2px;
  color: var(--community-muted);
  font-size: 15px;
}

.community-note {
  margin: 22px 0 0;
  padding-top: 14px;
  border-top: 1px solid #c2ddeb;
  color: var(--community-navy);
  font-size: 14px;
}

.community-questions {
  padding: clamp(24px, 3.5vw, 40px) 0;
  background: var(--community-yellow-panel);
}

.community-questions-grid,
.community-boundary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(300px, .87fr);
  align-items: center;
  gap: clamp(26px, 4vw, 64px);
}

.community-questions h2,
.community-boundary-card h2 {
  margin-bottom: 8px;
  color: var(--community-navy);
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -.04em;
  line-height: 1.04;
}

.community-questions p,
.community-boundary-card p {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--community-muted);
  font-size: 17px;
}

.community-questions .community-survey-link {
  max-width: 100%;
  margin-top: 12px;
  font-size: 15px;
}

.community-quote {
  position: relative;
  padding: 25px 28px 24px;
  border-radius: 22px;
  color: var(--community-navy);
  background: #fff;
  box-shadow: 0 8px 22px rgba(8, 52, 111, .06);
}

.community-quote::before {
  display: block;
  margin-bottom: 3px;
  color: #6eb6ef;
  content: "“";
  font-family: Georgia, serif;
  font-size: 62px;
  font-weight: 700;
  line-height: .7;
}

.community-quote p {
  margin: 0 0 9px;
  color: var(--community-navy);
  font-size: 18px;
  font-style: italic;
  line-height: 1.35;
}

.community-quote small {
  color: var(--community-muted);
  font-size: 13px;
  font-weight: 700;
}

.community-boundary {
  padding-top: 14px;
}

.community-boundary-grid {
  align-items: stretch;
}

.community-boundary-card {
  min-height: 100%;
  padding: 28px 30px;
  border-radius: 23px;
  background: var(--community-blue-panel);
}

.community-boundary-card.org {
  background: var(--community-yellow-panel);
}

.community-boundary-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--community-navy);
  background: #dceeff;
  border-radius: 50%;
}

.community-boundary-card.org .community-boundary-icon {
  background: #fff1c9;
}

.community-boundary-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.community-workshop-page {
  background: linear-gradient(180deg, #f8fcff 0%, #fff 24%);
}

.community-workshop-hero {
  padding: clamp(36px, 5vw, 66px) 0 34px;
}

.community-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--community-navy);
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.community-back-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.community-sample-banner {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid #edca72;
  border-radius: 999px;
  color: #754d00;
  background: #fff7df;
  font-size: 13px;
  font-weight: 850;
}

.community-workshop-hero h1 {
  max-width: 900px;
  margin-bottom: 12px;
  color: var(--community-navy);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
}

.community-workshop-descriptor {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--community-muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.35;
}

.community-workshop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  color: var(--community-navy);
  font-size: 15px;
  font-weight: 800;
}

.community-workshop-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.community-workshop-meta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.community-workshop-video {
  padding-bottom: 28px;
}

.community-workshop-video .community-video-frame {
  aspect-ratio: 16 / 9;
  max-width: 1120px;
  margin: 0 auto;
}

.community-video-frame video {
  background: #071b43;
}

.community-video-frame.is-unavailable video {
  opacity: .28;
}

.community-video-fallback {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(80%, 450px);
  padding: 18px 20px;
  border-radius: 14px;
  color: #fff;
  background: rgba(7, 25, 58, .9);
  text-align: center;
  transform: translate(-50%, -50%);
}

.community-video-fallback strong,
.community-video-fallback span {
  display: block;
}

.community-video-fallback span {
  margin-top: 5px;
  color: #d8e8f8;
  font-size: 14px;
}

.community-video-frame:not(.is-unavailable) .community-video-fallback {
  display: none;
}

.community-workshop-content {
  padding: 12px 0 60px;
}

.community-workshop-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, .95fr);
  gap: 22px;
}

.community-workshop-card-panel {
  height: 100%;
  padding: 28px 30px;
  border: 1px solid var(--community-line);
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 9px 25px rgba(8, 52, 111, .055);
}

.community-workshop-card-panel.blue {
  background: var(--community-blue-panel);
}

.community-workshop-card-panel.yellow {
  background: var(--community-yellow-panel);
}

.community-workshop-card-panel h2 {
  margin-bottom: 16px;
  color: var(--community-navy);
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -.04em;
  line-height: 1.05;
}

.community-key-points {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.community-key-points li {
  position: relative;
  padding-left: 28px;
  color: var(--community-muted);
  font-size: 17px;
}

.community-key-points li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--community-gold);
  content: "";
}

.community-takeaway {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--community-gold);
  border-radius: 0 16px 16px 0;
  background: #fff;
}

.community-takeaway strong,
.community-takeaway p {
  display: block;
}

.community-takeaway strong {
  margin-bottom: 4px;
  color: var(--community-navy);
}

.community-takeaway p {
  margin-bottom: 0;
  color: var(--community-muted);
}

.community-reflection {
  margin: 20px 0 0;
  color: var(--community-navy);
  font-size: 18px;
  font-style: italic;
  line-height: 1.4;
}

.community-boundary-note {
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 1px solid #d7e7f2;
  border-radius: 17px;
  color: var(--community-muted);
  background: #f8fcff;
  font-size: 15px;
}

.community-boundary-note strong {
  color: var(--community-navy);
}

.community-next-step {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 25px 28px;
  border-radius: 22px;
  color: var(--community-deep);
  background: var(--community-yellow-panel);
}

.community-next-step p {
  max-width: 650px;
  margin: 0;
  color: var(--community-muted);
}

.community-next-step p strong {
  display: block;
  margin-bottom: 3px;
  color: var(--community-navy);
  font-size: 19px;
}

.community-next-step .community-button {
  flex: 0 0 auto;
}

.community-page footer {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .community-inner {
    width: min(100% - 72px, 960px);
  }

  .community-hero-grid,
  .community-inside-grid,
  .community-questions-grid,
  .community-boundary-grid,
  .community-workshop-content-grid {
    grid-template-columns: 1fr;
  }

  .community-hero-copy {
    max-width: 720px;
  }

  .community-hero-visual {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .community-inside-grid {
    align-items: start;
  }

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

  .community-questions-grid {
    align-items: start;
  }
}

@media (max-width: 700px) {
  .community-site-shell {
    width: calc(100% - 12px);
    margin: 6px auto 12px;
    border-radius: 13px;
  }

  .community-inner {
    width: calc(100% - 42px);
  }

  .community-hero {
    padding: 31px 0 30px;
  }

  .community-hero h1 {
    font-size: clamp(43px, 13vw, 61px);
    line-height: .96;
  }

  .community-hero-lede {
    font-size: 19px;
  }

  .community-hero-description {
    font-size: 16px;
  }

  .community-hero-visual {
    min-height: 290px;
    padding: 16px 0 0;
  }

  .community-hero-image {
    width: calc(100% - 8px);
    margin: 0 auto;
    border-radius: 23px;
  }

  .community-workshop-card {
    right: -4px;
    bottom: -4px;
    width: calc(100% - 18px);
    padding: 16px 17px 15px;
    border-radius: 20px;
  }

  .community-workshop-card-top {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 11px;
    padding-bottom: 12px;
  }

  .community-calendar-icon {
    width: 48px;
    height: 48px;
  }

  .community-calendar-icon svg {
    width: 27px;
    height: 27px;
  }

  .community-workshop-card-label {
    font-size: 10px;
    letter-spacing: .15em;
  }

  .community-workshop-card-date {
    font-size: 19px;
  }

  .community-workshop-card-note,
  .community-topic-block > span {
    font-size: 13px;
  }

  .community-topic-title {
    padding: 8px 10px;
    font-size: 17px;
  }

  .community-text-link {
    margin-top: 10px;
    font-size: 14px;
  }

  .community-section {
    padding: 33px 0;
  }

  .community-section-heading {
    margin-bottom: 21px;
  }

  .community-section-heading h2 {
    font-size: 32px;
  }

  .community-section-heading p {
    font-size: 16px;
  }

  .community-panel {
    margin-inline: 12px;
    border-radius: 20px;
  }

  .community-how-it-works,
  .community-inside {
    padding: 26px 0;
  }

  .community-step-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .community-step {
    min-height: 104px;
    padding: 2px 16px 0 102px;
  }

  .community-step + .community-step {
    border-top: 1px solid #c5ddeb;
    border-left: 0;
    padding-top: 22px;
  }

  .community-step-number {
    top: 2px;
    left: 65px;
  }

  .community-step + .community-step .community-step-number {
    top: 22px;
  }

  .community-step-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 78px;
    height: 78px;
  }

  .community-step + .community-step .community-step-icon {
    top: 22px;
  }

  .community-step h3 {
    font-size: 18px;
  }

  .community-step p {
    font-size: 16px;
  }

  .community-inside-grid {
    gap: 22px;
  }

  .community-video-badge {
    top: 10px;
    left: 10px;
    padding: 6px 8px;
    font-size: 12px;
  }

  .community-play-icon {
    width: 58px;
    height: 58px;
  }

  .community-play-icon svg {
    width: 23px;
    height: 23px;
  }

  .community-video-caption {
    right: 10px;
    bottom: 9px;
    left: 10px;
    font-size: 12px;
  }

  .community-video-caption small {
    font-size: 11px;
  }

  .community-agenda-list {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .community-agenda-list li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 11px;
  }

  .community-agenda-icon {
    width: 46px;
    height: 46px;
  }

  .community-agenda-icon svg {
    width: 23px;
    height: 23px;
  }

  .community-agenda-list strong {
    font-size: 15px;
  }

  .community-agenda-list small {
    font-size: 14px;
  }

  .community-questions,
  .community-boundary {
    padding: 24px 0 28px;
  }

  .community-questions h2,
  .community-boundary-card h2 {
    font-size: 29px;
  }

  .community-questions p,
  .community-boundary-card p {
    font-size: 16px;
  }

  .community-quote {
    padding: 20px 22px;
  }

  .community-quote p {
    font-size: 17px;
  }

  .community-boundary-grid {
    gap: 14px;
  }

  .community-boundary-card {
    padding: 22px 22px;
  }

  .community-workshop-hero {
    padding: 30px 0 26px;
  }

  .community-back-link {
    margin-bottom: 21px;
    font-size: 14px;
  }

  .community-workshop-hero h1 {
    font-size: 42px;
  }

  .community-workshop-descriptor {
    font-size: 18px;
  }

  .community-workshop-meta {
    gap: 8px 15px;
    font-size: 14px;
  }

  .community-workshop-video {
    padding-bottom: 20px;
  }

  .community-workshop-video .community-video-frame {
    aspect-ratio: 16 / 10;
    border-radius: 17px;
  }

  .community-workshop-content {
    padding: 0 0 34px;
  }

  .community-workshop-card-panel {
    padding: 23px 21px;
    border-radius: 19px;
  }

  .community-workshop-card-panel h2 {
    font-size: 28px;
  }

  .community-key-points li {
    font-size: 16px;
  }

  .community-next-step {
    align-items: stretch;
    margin-top: 16px;
    padding: 20px 21px;
  }

  .community-next-step .community-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-page *,
  .community-page *::before,
  .community-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Community Workshops redesign — a focused, mobile-first signup page. */
.community-redesign-page {
  --community-redesign-navy: #07377f;
  --community-redesign-blue: #eef7ff;
  --community-redesign-blue-icon: #ddecff;
  --community-redesign-gold: #ffb719;
  --community-redesign-gold-soft: #fffaf0;
  --community-redesign-gold-card: #fff7df;
  --community-redesign-mint-soft: #effaf5;
  --community-redesign-mint-icon: #2f8067;
  --community-redesign-mint-icon-bg: #d9f2e6;
  --community-redesign-gold-icon: #b56f00;
  --community-redesign-gold-icon-bg: #ffebc4;
  --community-redesign-muted: #42659a;
  --community-redesign-border: #dbe7f2;
  min-width: 0;
  color: var(--community-redesign-navy);
  background: #f9fbfd;
  font-family: "Nunito Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

.community-redesign-page html,
.community-redesign-page body {
  background: #f9fbfd;
}

.community-redesign-page a {
  color: inherit;
}

.community-redesign-page h1,
.community-redesign-page h2,
.community-redesign-page h3,
.community-redesign-page p {
  margin-top: 0;
}

.community-redesign-page .community-site-shell {
  position: relative;
  width: min(100% - 32px, 512px);
  min-height: calc(100vh - 4px);
  margin: 4px auto 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 0 30px rgba(7, 55, 127, .12);
}

.community-redesign-page .community-header {
  position: relative;
  z-index: 3;
  display: flex;
  height: 124px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 9px 28px 15px;
  background: #fff;
  border-bottom: 1px solid #edf2f7;
}

.community-redesign-page .community-brand {
  display: block;
  width: 120px;
  height: 100px;
}

.community-redesign-page .community-brand img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.community-redesign-page .community-menu-button {
  display: grid;
  width: 46px;
  height: 46px;
  margin-top: 31px;
  padding: 0;
  place-items: center;
  color: var(--community-redesign-navy);
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--community-redesign-border);
  border-radius: 50%;
}

.community-redesign-page .community-menu-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.community-redesign-page .community-menu-button:hover,
.community-redesign-page .community-menu-button:focus-visible {
  color: var(--community-redesign-navy);
  background: var(--community-redesign-blue);
}

.community-redesign-page .community-main {
  position: relative;
  z-index: 1;
  padding: 0 20px 1px;
}

.community-redesign-page .community-intro {
  position: relative;
  overflow: hidden;
  padding: 14px 12px 0;
}

.community-redesign-page .community-sun-accent {
  position: absolute;
  z-index: -1;
  top: 58px;
  right: -104px;
  width: 230px;
  height: 230px;
  opacity: .16;
  background: url("/brand/imbright-full-sun.svg?v=20260921-community-workshop-redesign") center / contain no-repeat;
  pointer-events: none;
}

.community-redesign-page .community-eyebrow,
.community-redesign-page .community-card-eyebrow {
  color: var(--community-redesign-navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .29em;
  line-height: 1.2;
  text-transform: uppercase;
}

.community-redesign-page .community-eyebrow {
  margin-bottom: 10px;
}

.community-redesign-page .community-intro h1 {
  position: relative;
  max-width: 430px;
  margin-bottom: 14px;
  color: var(--community-redesign-navy);
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .92;
}

.community-redesign-page .community-intro h1 span {
  color: #e99d08;
}

.community-redesign-page .community-tagline,
.community-redesign-page .community-description {
  position: relative;
  max-width: 425px;
  color: var(--community-redesign-navy);
}

.community-redesign-page .community-tagline {
  margin-bottom: 11px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.14;
}

.community-redesign-page .community-description {
  margin-bottom: 21px;
  color: var(--community-redesign-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.28;
}

.community-redesign-page .community-card {
  position: relative;
  border-radius: 23px;
}

.community-redesign-page .community-signup-card,
.community-redesign-page .community-how-card {
  background: var(--community-redesign-blue);
}

.community-redesign-page .community-signup-card {
  padding: 21px 25px 17px;
}

.community-redesign-page .community-signup-form {
  display: grid;
}

.community-redesign-page .community-signup-form > label:first-child {
  margin-bottom: 7px;
  color: var(--community-redesign-navy);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.2;
}

.community-redesign-page .community-signup-form > input[type="email"] {
  width: 100%;
  height: 46px;
  padding: 0 17px;
  color: var(--community-redesign-navy);
  background: #fff;
  border: 1.5px solid #c0d3e6;
  border-radius: 13px;
  font-size: 17px;
  outline: none;
}

.community-redesign-page .community-signup-form > input[type="email"]::placeholder {
  color: #8ba2c0;
  opacity: 1;
}

.community-redesign-page .community-signup-form > input[type="email"]:focus {
  border-color: #2a7fe3;
  box-shadow: 0 0 0 3px rgba(42, 127, 227, .14);
}

.community-redesign-page .community-primary-button {
  display: inline-flex;
  width: 100%;
  min-height: 56px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 12px 16px;
  color: var(--community-redesign-navy);
  cursor: pointer;
  background: var(--community-redesign-gold);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  transition: background-color .18s ease, transform .18s ease;
}

.community-redesign-page .community-primary-button svg,
.community-redesign-page .community-outline-button svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.community-redesign-page .community-primary-button:hover,
.community-redesign-page .community-primary-button:focus-visible {
  background: #efa709;
  transform: translateY(-1px);
}

.community-redesign-page .community-privacy-note {
  margin: 10px 0 0;
  color: #5374a7;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.community-redesign-page .community-how-card {
  margin-top: 14px;
  padding: 21px 25px 19px;
}

.community-redesign-page .community-card-eyebrow {
  margin-bottom: 18px;
}

.community-redesign-page .community-process-list {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.community-redesign-page .community-process-list li {
  display: grid;
  min-height: 76px;
  grid-template-columns: 85px 56px minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.community-redesign-page .community-step-icon,
.community-redesign-page .community-feature-icon {
  display: grid;
  place-items: center;
  color: var(--community-redesign-navy);
  background: var(--community-redesign-blue-icon);
  border-radius: 50%;
}

.community-redesign-page .community-step-icon {
  position: static;
  inset: auto;
  width: 76px;
  height: 76px;
  margin-bottom: 0;
}

.community-redesign-page .community-step-icon svg {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.community-redesign-page .community-step-number {
  position: static;
  display: grid;
  width: 36px;
  height: 36px;
  margin-left: 0;
  inset: auto;
  place-items: center;
  color: #fff;
  background: #1e8ae7;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.community-redesign-page .community-process-list h3,
.community-redesign-page .community-gentle-card h2,
.community-redesign-page .community-org-card h2 {
  color: var(--community-redesign-navy);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.community-redesign-page .community-process-list h3 {
  margin-bottom: 3px;
  font-size: 20px;
}

.community-redesign-page .community-process-list p,
.community-redesign-page .community-gentle-card p,
.community-redesign-page .community-org-card p {
  color: var(--community-redesign-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.community-redesign-page .community-process-list p {
  margin-bottom: 0;
}

.community-redesign-page .community-gentle-card,
.community-redesign-page .community-org-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.community-redesign-page .community-gentle-card {
  margin-top: 14px;
  padding: 18px 25px 18px;
  background: var(--community-redesign-mint-soft);
}

.community-redesign-page .community-gentle-card .community-feature-icon {
  color: var(--community-redesign-mint-icon);
  background: var(--community-redesign-mint-icon-bg);
}

.community-redesign-page .community-feature-icon {
  width: 68px;
  height: 68px;
}

.community-redesign-page .community-feature-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.community-redesign-page .community-gentle-card h2,
.community-redesign-page .community-org-card h2 {
  margin-bottom: 5px;
  font-size: 22px;
}

.community-redesign-page .community-gentle-card p,
.community-redesign-page .community-org-card p {
  margin-bottom: 0;
}

.community-redesign-page .community-divider {
  height: 1px;
  margin: 0 10px 14px;
  border: 0;
  background: #e6edf5;
}

.community-redesign-page .community-org-card {
  padding: 18px 25px 16px;
  grid-template-rows: auto auto;
  background: var(--community-redesign-gold-card);
}

.community-redesign-page .community-org-card .community-feature-icon {
  color: var(--community-redesign-gold-icon);
  background: var(--community-redesign-gold-icon-bg);
  align-self: start;
  margin-top: 1px;
}

.community-redesign-page .community-outline-button {
  display: flex;
  grid-column: 1 / -1;
  width: min(100%, 274px);
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  justify-self: center;
  margin: 9px 0 0;
  padding: 7px 13px;
  color: var(--community-redesign-navy);
  border: 1.8px solid var(--community-redesign-navy);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.community-redesign-page .community-outline-button:hover,
.community-redesign-page .community-outline-button:focus-visible {
  color: #005ed0;
  background: #fff;
}

.community-redesign-page .community-footer-divider {
  margin-top: 16px;
  margin-bottom: 8px;
}

.community-redesign-page .community-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 30px;
  color: var(--community-redesign-muted);
  background: #fff;
  text-align: center;
}

.community-redesign-page .community-footer::after {
  display: none !important;
  content: none !important;
}

.community-redesign-page .community-footer a {
  display: block;
  width: 94px;
  height: 70px;
  overflow: hidden;
}

.community-redesign-page .community-footer img {
  width: 94px;
  height: auto;
}

.community-redesign-page .community-footer p {
  margin: -1px 0 0;
  color: var(--community-redesign-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 543px) {
  .community-redesign-page .community-site-shell {
    width: 100%;
    min-height: 100vh;
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 430px) {
  .community-redesign-page .community-header {
    height: 112px;
    padding-inline: 23px;
  }

  .community-redesign-page .community-brand,
  .community-redesign-page .community-brand img {
    width: 111px;
  }

  .community-redesign-page .community-menu-button {
    margin-top: 28px;
  }

  .community-redesign-page .community-main {
    padding-inline: 16px;
  }

  .community-redesign-page .community-intro {
    padding-inline: 10px;
  }

  .community-redesign-page .community-intro h1 {
    font-size: clamp(45px, 13vw, 56px);
  }

  .community-redesign-page .community-tagline {
    font-size: 22px;
  }

  .community-redesign-page .community-description {
    font-size: 17px;
  }

  .community-redesign-page .community-signup-card,
  .community-redesign-page .community-how-card,
  .community-redesign-page .community-gentle-card,
  .community-redesign-page .community-org-card {
    padding-inline: 21px;
  }

  .community-redesign-page .community-process-list li {
    grid-template-columns: 68px 34px minmax(0, 1fr);
    gap: 7px;
  }

  .community-redesign-page .community-step-icon {
    width: 68px;
    height: 68px;
  }

  .community-redesign-page .community-step-number {
    width: 34px;
    height: 34px;
  }

  .community-redesign-page .community-process-list h3 {
    font-size: 18px;
  }

  .community-redesign-page .community-process-list p,
  .community-redesign-page .community-gentle-card p,
  .community-redesign-page .community-org-card p {
    font-size: 16px;
  }

  .community-redesign-page .community-gentle-card,
  .community-redesign-page .community-org-card {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 14px;
  }

  .community-redesign-page .community-feature-icon {
    width: 62px;
    height: 62px;
  }

  .community-redesign-page .community-feature-icon svg {
    width: 33px;
    height: 33px;
  }

  .community-redesign-page .community-gentle-card h2,
  .community-redesign-page .community-org-card h2 {
    font-size: 20px;
  }

}

@media (max-width: 360px) {
  .community-redesign-page .community-intro h1 {
    font-size: 44px;
  }

  .community-redesign-page .community-tagline {
    font-size: 20px;
  }

  .community-redesign-page .community-primary-button {
    gap: 9px;
    padding-inline: 10px;
    font-size: 16px;
  }

  .community-redesign-page .community-process-list li {
    grid-template-columns: 58px 31px minmax(0, 1fr);
  }

  .community-redesign-page .community-step-icon {
    width: 58px;
    height: 58px;
  }

  .community-redesign-page .community-step-icon svg {
    width: 31px;
    height: 31px;
  }

  .community-redesign-page .community-step-number {
    width: 31px;
    height: 31px;
    font-size: 16px;
  }

  .community-redesign-page .community-process-list h3 {
    font-size: 17px;
  }

  .community-redesign-page .community-process-list p,
  .community-redesign-page .community-gentle-card p,
  .community-redesign-page .community-org-card p {
    font-size: 15px;
  }
}

/* Desktop composition: keep the compact mobile flow, but let the page breathe on wider screens. */
.community-redesign-page .community-desktop-nav {
  display: none;
}

@media (min-width: 900px) {
  .community-redesign-page {
    background:
      radial-gradient(circle at 11% 8%, rgba(215, 235, 250, .6), transparent 24%),
      linear-gradient(135deg, #f6fbff 0%, #fff 48%, #fffaf0 100%);
  }

  .community-redesign-page .community-site-shell {
    width: min(calc(100% - 48px), 1180px);
    min-height: 0;
    margin: 24px auto 48px;
    border: 1px solid rgba(188, 212, 231, .72);
    border-radius: 28px;
    box-shadow: 0 22px 55px rgba(7, 55, 127, .14);
  }

  .community-redesign-page .community-header {
    height: 104px;
    align-items: center;
    padding: 0 clamp(32px, 5vw, 64px);
  }

  .community-redesign-page .community-brand,
  .community-redesign-page .community-brand img {
    width: 145px;
    height: auto;
  }

  .community-redesign-page .community-menu-button {
    display: none;
  }

  .community-redesign-page .community-desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    margin-left: auto;
    color: var(--community-redesign-navy);
    font-size: 14px;
    font-weight: 800;
  }

  .community-redesign-page .community-desktop-nav a {
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
  }

  .community-redesign-page .community-desktop-nav a:not(.community-desktop-donate)::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 99px;
    background: var(--community-redesign-gold);
    content: "";
    opacity: 0;
    transform: scaleX(.5);
    transition: opacity .18s ease, transform .18s ease;
  }

  .community-redesign-page .community-desktop-nav a:not(.community-desktop-donate):hover::after,
  .community-redesign-page .community-desktop-nav a:not(.community-desktop-donate):focus-visible::after,
  .community-redesign-page .community-desktop-nav a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .community-redesign-page .community-desktop-donate {
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--community-redesign-navy);
    background: var(--community-redesign-gold);
    transition: background-color .18s ease, transform .18s ease;
  }

  .community-redesign-page .community-desktop-donate:hover,
  .community-redesign-page .community-desktop-donate:focus-visible {
    background: #efa709;
    transform: translateY(-1px);
  }

  .community-redesign-page .community-main {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
    grid-template-areas:
      "intro signup"
      "how gentle"
      "divider divider"
      "org org"
      "footer-divider footer-divider"
      "footer footer";
    column-gap: clamp(28px, 4.4vw, 64px);
    row-gap: 0;
    padding: clamp(52px, 6vw, 84px) clamp(42px, 6vw, 88px) 18px;
    background:
      radial-gradient(circle at 92% 6%, rgba(244, 178, 27, .11), transparent 19%),
      linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  }

  .community-redesign-page .community-intro {
    grid-area: intro;
    min-height: 382px;
    padding: 24px 0 0;
  }

  .community-redesign-page .community-sun-accent {
    top: 28px;
    right: -164px;
    width: 370px;
    height: 370px;
    opacity: .13;
  }

  .community-redesign-page .community-intro h1 {
    max-width: 620px;
    font-size: clamp(64px, 7vw, 92px);
  }

  .community-redesign-page .community-tagline {
    max-width: 560px;
    font-size: clamp(25px, 2.6vw, 33px);
  }

  .community-redesign-page .community-description {
    max-width: 590px;
    font-size: 19px;
    line-height: 1.36;
  }

  .community-redesign-page .community-signup-card {
    grid-area: signup;
    align-self: start;
    margin: 0;
    padding: 31px 32px 25px;
    border: 1px solid #d7e8f5;
    box-shadow: 0 14px 28px rgba(8, 52, 111, .08);
  }

  .community-redesign-page .community-signup-form > label:first-child {
    font-size: 18px;
  }

  .community-redesign-page .community-signup-form > input[type="email"] {
    height: 54px;
    font-size: 18px;
  }

  .community-redesign-page .community-primary-button {
    min-height: 60px;
    margin-top: 24px;
    font-size: 19px;
  }

  .community-redesign-page .community-how-card {
    grid-area: how;
    align-self: stretch;
    margin: 0;
    padding: 30px 34px 32px;
    border: 1px solid #d7e8f5;
    box-shadow: 0 12px 26px rgba(8, 52, 111, .055);
  }

  .community-redesign-page .community-card-eyebrow {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .community-redesign-page .community-process-list {
    gap: 22px;
  }

  .community-redesign-page .community-process-list li {
    min-height: 88px;
    grid-template-columns: 88px 52px minmax(0, 1fr);
  }

  .community-redesign-page .community-step-icon {
    width: 84px;
    height: 84px;
  }

  .community-redesign-page .community-step-icon svg {
    width: 40px;
    height: 40px;
  }

  .community-redesign-page .community-step-number {
    width: 38px;
    height: 38px;
  }

  .community-redesign-page .community-process-list h3 {
    margin-bottom: 5px;
    font-size: 22px;
  }

  .community-redesign-page .community-process-list p {
    font-size: 18px;
    line-height: 1.28;
  }

  .community-redesign-page .community-gentle-card {
    grid-area: gentle;
    align-self: start;
    min-height: 178px;
    margin: 0;
    padding: 28px 28px;
    border: 1px solid #f2e3b7;
    box-shadow: 0 10px 24px rgba(141, 104, 23, .06);
  }

  .community-redesign-page .community-feature-icon {
    width: 76px;
    height: 76px;
  }

  .community-redesign-page .community-feature-icon svg {
    width: 39px;
    height: 39px;
  }

  .community-redesign-page .community-gentle-card h2,
  .community-redesign-page .community-org-card h2 {
    font-size: 25px;
  }

  .community-redesign-page .community-gentle-card p,
  .community-redesign-page .community-org-card p {
    font-size: 17px;
    line-height: 1.34;
  }

  .community-redesign-page .community-divider:not(.community-footer-divider) {
    grid-area: divider;
    margin: 38px 0 22px;
  }

  .community-redesign-page .community-org-card {
    grid-area: org;
    grid-template-columns: 84px minmax(0, 1fr) auto;
    align-items: center;
    margin: 0;
    padding: 27px 30px;
    border: 1px solid #d7e8f5;
    box-shadow: 0 12px 26px rgba(8, 52, 111, .055);
  }

  .community-redesign-page .community-org-card .community-feature-icon {
    margin-top: 0;
  }

  .community-redesign-page .community-outline-button {
    grid-column: auto;
    width: auto;
    min-width: 220px;
    margin: 0;
    padding-inline: 18px;
    font-size: 16px;
  }

  .community-redesign-page .community-footer-divider {
    grid-area: footer-divider;
    margin: 32px 0 18px;
  }

  .community-redesign-page .community-footer {
    grid-area: footer;
    flex-direction: row;
    justify-content: center;
    gap: 18px;
    padding: 0 0 34px;
    text-align: left;
  }

  .community-redesign-page .community-footer a {
    width: 112px;
    height: 84px;
  }

  .community-redesign-page .community-footer img {
    width: 112px;
  }

  .community-redesign-page .community-footer p {
    max-width: 240px;
    margin: 0;
    font-size: 14px;
  }
}

.community-question-page {
  background: linear-gradient(180deg, #f8fcff 0%, #fff 52%);
}

.community-question-hero {
  padding: clamp(34px, 5vw, 66px) 0 60px;
}

.community-question-shell {
  max-width: 820px;
}

.community-question-hero .community-back-link {
  margin-bottom: 28px;
}

.community-question-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--community-navy);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1.02;
}

.community-question-intro {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--community-muted);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.4;
}

.community-question-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--community-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--community-shadow);
}

.community-question-form {
  display: grid;
  gap: 24px;
}

.community-form-field {
  display: grid;
  gap: 8px;
}

.community-form-field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--community-navy);
  font-size: 18px;
  font-weight: 850;
}

.community-required,
.community-optional {
  color: var(--community-muted);
  font-size: 13px;
  font-weight: 700;
}

.community-required {
  color: var(--community-gold-dark);
}

.community-form-field textarea,
.community-form-field input {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #b9d3e8;
  border-radius: 15px;
  color: var(--community-deep);
  background: #fbfdff;
  font: inherit;
  font-size: 17px;
  line-height: 1.45;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.community-form-field textarea {
  min-height: 174px;
  padding: 15px 17px;
  resize: vertical;
}

.community-form-field input {
  min-height: 54px;
  padding: 12px 17px;
}

.community-form-field textarea:focus,
.community-form-field input:focus {
  border-color: #1770d3;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23, 112, 211, .14);
}

.community-form-field textarea[aria-invalid="true"],
.community-form-field input[aria-invalid="true"] {
  border-color: #b74237;
}

.community-field-hint,
.community-field-error {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.community-field-hint {
  color: var(--community-muted);
}

.community-field-error {
  color: #9e2f27;
  font-weight: 750;
}

.community-question-privacy {
  padding: 17px 19px;
  border: 1px solid #f0d998;
  border-radius: 16px;
  color: #6f521e;
  background: #fffaf0;
}

.community-question-privacy strong {
  display: block;
  margin-bottom: 4px;
  color: #67480f;
  font-size: 15px;
}

.community-question-privacy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.community-question-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.community-form-status {
  margin: 0;
  padding: 12px 15px;
  border: 1px solid #e1aaa4;
  border-radius: 12px;
  color: #8f2e26;
  background: #fff4f2;
  font-size: 15px;
  font-weight: 750;
}

.community-question-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.community-question-submit:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}

.community-question-confirmation {
  text-align: center;
}

.community-question-confirmation-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--community-navy);
  background: #dceeff;
}

.community-question-confirmation-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.community-question-confirmation h2 {
  margin-bottom: 9px;
  color: var(--community-navy);
  font-size: clamp(30px, 4vw, 45px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.community-question-confirmation p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--community-muted);
  font-size: 17px;
  line-height: 1.5;
}

.community-question-confirmation-actions {
  display: grid;
  gap: 10px;
  max-width: 480px;
  margin: 26px auto 0;
}

.community-question-boundary {
  max-width: 710px;
  margin: 24px auto 0;
  color: var(--community-muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.community-question-boundary strong {
  color: var(--community-navy);
}

@media (max-width: 700px) {
  .community-question-hero {
    padding: 30px 0 38px;
  }

  .community-question-hero .community-back-link {
    margin-bottom: 22px;
  }

  .community-question-hero h1 {
    font-size: 39px;
  }

  .community-question-intro {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .community-question-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .community-question-form {
    gap: 21px;
  }

  .community-form-field label {
    font-size: 17px;
  }

  .community-form-field textarea,
  .community-form-field input {
    font-size: 16px;
  }

  .community-question-privacy {
    padding: 15px 16px;
  }

  .community-question-confirmation h2 {
    font-size: 33px;
  }

  .community-question-confirmation p {
    font-size: 16px;
  }

  .community-question-boundary {
    padding: 0 8px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-question-page *,
  .community-question-page *::before,
  .community-question-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
