/* ==========================================================
   Sit Awhile Member Area — Foundation
   Theme 0.13.0
   ========================================================== */

:root {
  --sa-member-green: #3f5743;
  --sa-member-green-dark: #314536;
  --sa-member-burgundy: #7b3f4a;
  --sa-member-gold: #c9a96e;
  --sa-member-sage: #a9b7a2;
  --sa-member-cream: #fbf7ef;
  --sa-member-stone: #f3eee5;
  --sa-member-white: #fffdf8;
  --sa-member-text: #3d403c;
  --sa-member-muted: #6f726d;
  --sa-member-border: rgba(63,87,67,.12);
}

body.sa-member-area {
  margin: 0;
  background: var(--sa-member-cream);
  color: var(--sa-member-text);
}

.sa-member-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 88% 3%, rgba(201,169,110,.08), transparent 24rem),
    var(--sa-member-cream);
}

/* -------------------- Member header -------------------- */

.sa-member-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--sa-member-border);
  background: rgba(255,253,248,.95);
  backdrop-filter: blur(12px);
}

.admin-bar .sa-member-header {
  top: 32px;
}

.sa-member-header-inner {
  width: min(calc(100% - 48px), 1480px);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.sa-member-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.sa-member-brand-logo {
  display: block;
  width: auto;
  max-width: 145px;
  max-height: 58px;
  object-fit: contain;
}

.sa-member-brand-name {
  color: var(--sa-member-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.sa-member-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.sa-member-nav a {
  padding: 9px 10px;
  border-radius: 999px;
  color: var(--sa-member-green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}

.sa-member-nav a:hover,
.sa-member-nav a:focus-visible {
  background: rgba(169,183,162,.18);
  outline: none;
}

.sa-member-nav a[aria-current="page"] {
  background: var(--sa-member-green);
  color: #fff;
}

.sa-member-mobile-menu {
  display: none;
  margin-left: auto;
  position: relative;
}

.sa-member-mobile-menu summary {
  cursor: pointer;
  list-style: none;
  padding: 9px 16px;
  border: 1px solid var(--sa-member-green);
  border-radius: 999px;
  color: var(--sa-member-green);
  font-size: 12px;
  font-weight: 800;
}

.sa-member-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.sa-member-mobile-menu nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(310px, calc(100vw - 36px));
  padding: 12px;
  border: 1px solid var(--sa-member-border);
  border-radius: 18px;
  background: var(--sa-member-white);
  box-shadow: 0 20px 55px rgba(38,48,40,.18);
}

.sa-member-mobile-menu nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--sa-member-green);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.sa-member-mobile-menu nav a[aria-current="page"] {
  background: rgba(169,183,162,.20);
}

/* -------------------- Member main -------------------- */

.sa-member-main {
  flex: 1 0 auto;
  padding: clamp(52px, 7vw, 94px) 24px;
}

.sa-member-content {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.sa-member-foundation-hero {
  width: min(100%, 900px);
  margin-bottom: 34px;
}

.sa-member-foundation-hero--welcome {
  padding: clamp(34px, 6vw, 62px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 15%, rgba(201,169,110,.16), transparent 14rem),
    linear-gradient(135deg, #fffdf8, #f5efe5);
  border: 1px solid rgba(63,87,67,.08);
}

.sa-member-eyebrow {
  margin: 0 0 10px;
  color: var(--sa-member-burgundy);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sa-member-foundation-hero h1 {
  margin: 0 0 16px;
  color: var(--sa-member-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.sa-member-foundation-hero > p:not(.sa-member-eyebrow) {
  width: min(100%, 720px);
  margin: 0 0 22px;
  color: var(--sa-member-muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.72;
}

.sa-member-primary-button,
.sa-member-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.sa-member-primary-button {
  border: 1px solid var(--sa-member-green);
  background: var(--sa-member-green);
  color: #fff;
}

.sa-member-primary-button:hover,
.sa-member-primary-button:focus-visible {
  background: var(--sa-member-green-dark);
  color: #fff;
}

.sa-member-secondary-button {
  border: 1px solid var(--sa-member-green);
  color: var(--sa-member-green);
  background: transparent;
}

.sa-member-foundation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sa-member-foundation-card,
.sa-member-account-card {
  padding: 26px;
  border: 1px solid var(--sa-member-border);
  border-radius: 22px;
  background: rgba(255,253,248,.88);
}

.sa-member-foundation-card h2 {
  margin: 0 0 10px;
  color: var(--sa-member-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.2;
}

.sa-member-foundation-card p {
  margin: 0;
  color: var(--sa-member-muted);
  font-size: 14px;
  line-height: 1.65;
}

.sa-member-account-card {
  width: min(100%, 680px);
}

.sa-member-account-card dl {
  margin: 0 0 24px;
}

.sa-member-account-card dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--sa-member-border);
}

.sa-member-account-card dt {
  color: var(--sa-member-muted);
  font-size: 12px;
  font-weight: 800;
}

.sa-member-account-card dd {
  margin: 0;
  color: var(--sa-member-green);
  font-size: 14px;
}

/* -------------------- Footer -------------------- */

.sa-member-footer {
  flex: 0 0 auto;
  padding: 28px 24px;
  border-top: 1px solid var(--sa-member-border);
  background: var(--sa-member-white);
}

.sa-member-footer-inner {
  width: min(100%, 1180px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sa-member-footer strong {
  color: var(--sa-member-green);
  font-size: 15px;
}

.sa-member-footer p {
  margin: 4px 0 0;
  color: var(--sa-member-muted);
  font-size: 12px;
}

.sa-member-footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.sa-member-footer-links a {
  color: var(--sa-member-green);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

/* -------------------- Public member login -------------------- */

body.sa-member-login-public .wp-site-blocks > main,
body.sa-member-login-public main {
  background: var(--sa-member-cream);
}

.sa-member-login-page {
  padding: clamp(56px, 8vw, 110px) 24px;
}

.sa-member-login-panel {
  width: min(100%, 520px);
  margin-inline: auto;
  box-sizing: border-box;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--sa-member-border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 5%, rgba(201,169,110,.12), transparent 12rem),
    var(--sa-member-white);
  box-shadow: 0 22px 65px rgba(42,52,43,.08);
}

.sa-member-login-eyebrow {
  margin: 0 0 10px;
  color: var(--sa-member-burgundy);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sa-member-login-panel h1 {
  margin: 0 0 12px;
  color: var(--sa-member-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.06;
}

.sa-member-login-intro,
.sa-member-login-panel > p {
  color: var(--sa-member-muted);
  line-height: 1.65;
}

.sa-member-login-message {
  margin: 18px 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(169,183,162,.18);
  color: var(--sa-member-green);
  font-size: 13px;
  line-height: 1.5;
}

.sa-member-login-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.sa-member-login-form > label:not(.sa-member-login-remember) {
  display: grid;
  gap: 7px;
}

.sa-member-login-form label > span {
  color: var(--sa-member-green);
  font-size: 12px;
  font-weight: 800;
}

.sa-member-login-form input[type="text"],
.sa-member-login-form input[type="password"] {
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
  padding: 10px 13px;
  border: 1px solid rgba(63,87,67,.22);
  border-radius: 10px;
  background: #fff;
  color: var(--sa-member-text);
  font-size: 15px;
}

.sa-member-login-form input:focus {
  outline: 2px solid rgba(63,87,67,.22);
  outline-offset: 2px;
  border-color: var(--sa-member-green);
}

.sa-member-login-remember {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.sa-member-login-form button,
.sa-member-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid var(--sa-member-green);
  border-radius: 999px;
  background: var(--sa-member-green);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.sa-member-login-form button:hover,
.sa-member-login-form button:focus-visible,
.sa-member-login-button:hover,
.sa-member-login-button:focus-visible {
  background: var(--sa-member-green-dark);
  color: #fff;
}

.sa-member-login-help {
  margin: 0;
  text-align: center;
}

.sa-member-login-help a {
  color: var(--sa-member-green);
  font-size: 12px;
  font-weight: 700;
}

/* -------------------- Responsive -------------------- */

@media (max-width: 1180px) {
  .sa-member-nav-desktop {
    display: none;
  }

  .sa-member-mobile-menu {
    display: block;
  }
}

@media (max-width: 782px) {
  .admin-bar .sa-member-header {
    top: 46px;
  }

  .sa-member-header-inner {
    width: min(calc(100% - 32px), 1480px);
    min-height: 72px;
  }

  .sa-member-main {
    padding-inline: 18px;
  }

  .sa-member-foundation-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .sa-member-foundation-hero--welcome,
  .sa-member-foundation-card,
  .sa-member-account-card,
  .sa-member-login-panel {
    border-radius: 20px;
  }

  .sa-member-account-card dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* ==========================================================
   Theme 0.13.1 — Member Welcome Page
   ========================================================== */

.sa-member-page-welcome .sa-member-main {
  padding-top: clamp(38px, 5vw, 72px);
}

.sa-member-page-welcome .sa-member-content {
  width: min(100%, 1240px);
}

.sa-member-welcome {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
}

.sa-welcome-section {
  box-sizing: border-box;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--sa-member-border);
  border-radius: 28px;
  background: rgba(255,253,248,.72);
}

.sa-welcome-video-section {
  padding: 0;
  border: 0;
  background: transparent;
}

.sa-welcome-section-heading {
  width: min(100%, 760px);
  margin-bottom: 28px;
}

.sa-welcome-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.sa-welcome-section-heading h1,
.sa-welcome-section-heading h2,
.sa-welcome-reading h2,
.sa-welcome-gift h2,
.sa-welcome-first-steps h2,
.sa-welcome-final h2 {
  margin: 0 0 12px;
  color: var(--sa-member-green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.sa-welcome-section-heading h1 {
  font-size: clamp(38px, 5.4vw, 66px);
}

.sa-welcome-section-heading h2,
.sa-welcome-reading h2,
.sa-welcome-gift h2,
.sa-welcome-first-steps h2,
.sa-welcome-final h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.sa-welcome-section-heading > p:not(.sa-member-eyebrow) {
  margin: 0;
  color: var(--sa-member-muted);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.68;
}

/* Welcome video */

.sa-welcome-video-frame {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--sa-member-border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 18%, rgba(201,169,110,.14), transparent 22rem),
    #ece7dd;
  box-shadow: 0 24px 70px rgba(48,57,49,.08);
}

.sa-welcome-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #1f231f;
}

.sa-welcome-friendly-state {
  width: min(100% - 40px, 620px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sa-welcome-friendly-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--sa-member-green);
  color: #fff;
  font-size: 22px;
}

.sa-welcome-friendly-state h2 {
  margin: 0 0 8px;
  color: var(--sa-member-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
}

.sa-welcome-friendly-state p {
  width: min(100%, 520px);
  margin: 0;
  color: var(--sa-member-muted);
  line-height: 1.65;
}

.sa-welcome-feedback {
  margin: 14px 0 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(169,183,162,.16);
  color: var(--sa-member-green);
  font-size: 13px;
}

/* Reading */

.sa-welcome-reading {
  padding-block: clamp(42px, 7vw, 78px);
}

.sa-welcome-reading-inner {
  width: min(100%, 760px);
  margin-inline: auto;
}

.sa-welcome-prose {
  color: var(--sa-member-text);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.82;
}

.sa-welcome-prose p {
  margin: 0 0 1.15em;
}

.sa-welcome-prose strong {
  color: var(--sa-member-green);
}

/* Gift */

.sa-welcome-gift {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr);
  gap: clamp(32px, 5vw, 66px);
  align-items: center;
}

.sa-welcome-gift-copy {
  min-width: 0;
}

.sa-welcome-gift blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--sa-member-gold);
  border-radius: 0 14px 14px 0;
  background: rgba(255,255,255,.55);
  color: var(--sa-member-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 700;
  line-height: 1.4;
}

.sa-welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.sa-welcome-preview-button {
  appearance: none;
  cursor: pointer;
  font-family: inherit;
}

.sa-welcome-disabled-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 22px;
  border: 1px solid rgba(63,87,67,.20);
  border-radius: 999px;
  background: rgba(169,183,162,.13);
  color: rgba(63,87,67,.68);
  font-size: 13px;
  font-weight: 800;
}

.sa-welcome-asset-note {
  margin: 16px 0 0;
  color: var(--sa-member-muted);
  font-size: 13px;
  line-height: 1.6;
}

.sa-welcome-gift-preview {
  min-width: 0;
}

.sa-welcome-preview-image-button {
  width: 100%;
  padding: 0;
  overflow: hidden;
  appearance: none;
  cursor: zoom-in;
  border: 1px solid var(--sa-member-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(49,57,50,.08);
}

.sa-welcome-preview-image-button img {
  display: block;
  width: 100%;
  height: auto;
}

.sa-welcome-seasons-fallback {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  overflow: hidden;
  border: 1px solid var(--sa-member-border);
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 20px 52px rgba(49,57,50,.07);
}

.sa-welcome-seasons-fallback > div {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  box-sizing: border-box;
}

.sa-welcome-seasons-fallback > div:nth-child(1) {
  background: linear-gradient(145deg, rgba(173,199,155,.31), rgba(255,253,248,.9));
}

.sa-welcome-seasons-fallback > div:nth-child(2) {
  background: linear-gradient(145deg, rgba(230,196,113,.29), rgba(255,253,248,.9));
}

.sa-welcome-seasons-fallback > div:nth-child(3) {
  background: linear-gradient(145deg, rgba(197,128,92,.28), rgba(255,253,248,.9));
}

.sa-welcome-seasons-fallback > div:nth-child(4) {
  background: linear-gradient(145deg, rgba(146,164,184,.26), rgba(255,253,248,.9));
}

.sa-welcome-seasons-fallback span {
  color: var(--sa-member-burgundy);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sa-welcome-seasons-fallback strong {
  margin-top: 5px;
  color: var(--sa-member-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

/* Dialog */

.sa-welcome-preview-dialog {
  width: min(92vw, 1040px);
  max-height: 90vh;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #fffdf8;
  color: var(--sa-member-text);
  box-shadow: 0 28px 90px rgba(29,35,30,.28);
}

.sa-welcome-preview-dialog::backdrop {
  background: rgba(34,40,35,.52);
  backdrop-filter: blur(3px);
}

.sa-welcome-preview-dialog-inner {
  padding: 18px;
}

.sa-welcome-preview-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 4px 14px;
}

.sa-welcome-preview-dialog-header h2 {
  margin: 0;
  color: var(--sa-member-green);
  font-size: 22px;
}

.sa-welcome-preview-dialog-header button {
  width: 40px;
  height: 40px;
  appearance: none;
  cursor: pointer;
  border: 1px solid var(--sa-member-border);
  border-radius: 50%;
  background: #fff;
  color: var(--sa-member-green);
  font-size: 24px;
}

.sa-welcome-preview-dialog img {
  display: block;
  width: 100%;
  max-height: calc(90vh - 90px);
  object-fit: contain;
  border-radius: 15px;
}

/* How it works */

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

.sa-welcome-work-card {
  min-height: 190px;
  box-sizing: border-box;
  padding: 20px;
  border: 1px solid var(--sa-member-border);
  border-radius: 18px;
  background: #fffdf8;
  transition: transform .2s ease, box-shadow .2s ease;
}

.sa-welcome-work-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(49,57,50,.07);
}

.sa-welcome-work-number {
  color: var(--sa-member-burgundy);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
}

.sa-welcome-work-card h3 {
  margin: 18px 0 8px;
  color: var(--sa-member-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.22;
}

.sa-welcome-work-card p {
  margin: 0;
  color: var(--sa-member-muted);
  font-size: 13px;
  line-height: 1.62;
}

/* First steps */

.sa-welcome-first-steps {
  background:
    radial-gradient(circle at 93% 8%, rgba(201,169,110,.10), transparent 20rem),
    rgba(255,253,248,.72);
}

.sa-welcome-step-list {
  list-style: none;
  width: min(100%, 900px);
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.sa-welcome-step-card {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--sa-member-border);
  border-radius: 18px;
  background: #fffdf8;
}

.sa-welcome-step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(169,183,162,.20);
  color: var(--sa-member-green);
  font-weight: 850;
}

.sa-welcome-step-card h3 {
  margin: 0 0 6px;
  color: var(--sa-member-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.sa-welcome-step-card p {
  margin: 0;
  color: var(--sa-member-muted);
  font-size: 14px;
  line-height: 1.6;
}

.sa-welcome-inline-link {
  display: inline-block;
  margin-top: 9px;
  color: var(--sa-member-green);
  font-size: 13px;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Quick nav */

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

.sa-welcome-nav-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 24px;
  border: 1px solid var(--sa-member-border);
  border-radius: 20px;
  background: #fffdf8;
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sa-welcome-nav-card:hover {
  transform: translateY(-3px);
  border-color: rgba(63,87,67,.22);
  box-shadow: 0 18px 38px rgba(49,57,50,.08);
}

.sa-welcome-nav-card:focus-visible,
.sa-welcome-preview-button:focus-visible,
.sa-welcome-preview-image-button:focus-visible,
.sa-welcome-preview-dialog button:focus-visible {
  outline: 3px solid rgba(123,63,74,.38);
  outline-offset: 4px;
}

.sa-welcome-nav-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(169,183,162,.18);
  color: var(--sa-member-green);
  font-size: 20px;
}

.sa-welcome-nav-card h3 {
  margin: 22px 0 8px;
  color: var(--sa-member-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.sa-welcome-nav-card p {
  margin: 0;
  color: var(--sa-member-muted);
  font-size: 14px;
  line-height: 1.62;
}

.sa-welcome-nav-action {
  margin-top: auto;
  padding-top: 18px;
  color: var(--sa-member-green);
  font-size: 12px;
  font-weight: 850;
}

/* FAQ */

.sa-welcome-faq {
  background: transparent;
  border-color: transparent;
}

.sa-welcome-accordion {
  width: min(100%, 960px);
  margin-inline: auto;
  display: grid;
  gap: 9px;
}

.sa-welcome-faq-item {
  overflow: clip;
  border: 1px solid var(--sa-member-border);
  border-radius: 15px;
  background: #fffdf8;
}

.sa-welcome-faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  box-sizing: border-box;
  cursor: pointer;
  color: var(--sa-member-green);
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.sa-welcome-faq-item summary::-webkit-details-marker {
  display: none;
}

.sa-welcome-faq-item summary:focus-visible {
  outline: 3px solid rgba(123,63,74,.32);
  outline-offset: -3px;
}

.sa-welcome-faq-item summary > span:last-child {
  font-size: 20px;
  transition: transform .22s ease;
}

.sa-welcome-faq-item[open] summary > span:last-child {
  transform: rotate(45deg);
}

.sa-welcome-faq-answer {
  padding: 0 18px 18px;
  color: var(--sa-member-muted);
  font-size: 14px;
  line-height: 1.7;
}

.sa-welcome-faq-answer p {
  margin: 0;
}

/* Final welcome */

.sa-welcome-final {
  padding-block: clamp(46px, 7vw, 82px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(201,169,110,.12), transparent 20rem),
    #fffdf8;
}

.sa-welcome-final-copy {
  width: min(100%, 680px);
  margin: 0 auto 28px;
  color: var(--sa-member-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.7;
}

.sa-welcome-final-copy p {
  margin: 0 0 .55em;
}

.sa-welcome-final-copy strong {
  color: var(--sa-member-green);
  font-size: 1.15em;
}

/* Responsive */

@media (max-width: 1000px) {
  .sa-welcome-gift {
    grid-template-columns: 1fr;
  }

  .sa-welcome-gift-preview {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .sa-welcome-works-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .sa-welcome-nav-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 640px) {
  .sa-member-page-welcome .sa-member-main {
    padding-inline: 14px;
  }

  .sa-welcome-section {
    padding: 26px 20px;
    border-radius: 21px;
  }

  .sa-welcome-video-section {
    padding: 0;
  }

  .sa-welcome-video-frame {
    border-radius: 20px;
  }

  .sa-welcome-works-grid,
  .sa-welcome-nav-grid,
  .sa-welcome-seasons-fallback {
    grid-template-columns: 1fr;
  }

  .sa-welcome-seasons-fallback > div {
    min-height: 120px;
  }

  .sa-welcome-step-card {
    grid-template-columns: 42px minmax(0,1fr);
    gap: 12px;
    padding: 16px;
  }

  .sa-welcome-step-number {
    width: 38px;
    height: 38px;
  }

  .sa-welcome-actions {
    display: grid;
  }

  .sa-welcome-actions > *,
  .sa-welcome-final .sa-member-primary-button {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sa-welcome-work-card,
  .sa-welcome-nav-card,
  .sa-welcome-faq-item summary > span:last-child {
    transition: none !important;
  }

  .sa-welcome-work-card:hover,
  .sa-welcome-nav-card:hover {
    transform: none !important;
  }
}
