/***** ----- HEADER OVERRIDES ----- *****/

#header {
  background-color: #fff;
  background-image: none;
}

.page-title,
.page__title,
h1.page-title {
  display: none;
}

.site-branding__text {
  color: #000 !important;
  display: block;
  margin: -16px 0 20px 6px;
  font-weight: 700;
  font-size: 0.9em;
}

.site-branding__logo {
  display: block;
  margin: 0;
  max-width: 280px;
}

@media (min-width: 901px) {
  .site-branding__text {
    padding: 0;
  }
}

/***** ===== GLOBAL TYPOGRAPHY / LAYOUT ===== *****/

body,
input,
textarea,
select {
  word-wrap: break-word;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 100%;
  line-height: 1.6;
}

.layout-main {
  max-width: 800px;
  display: block;
  margin: auto;
}
/* START PAGE ADJUSTMENT */
.path-frontpage .layout-main {
  max-width: 100%;
}

/* (Fix: stray semicolon) */
input,
textarea,
select {
  font-size: 16px;
}

h1 {
  font-size: 2.25rem;
  line-height: 1.2;
} /* 36px */
h2 {
  font-size: 1.75rem;
  line-height: 1.3;
} /* 28px */
h3 {
  font-size: 1.375rem;
  line-height: 1.4;
} /* 22px */
h4 {
  font-size: 1.125rem;
  line-height: 1.4;
} /* 18px */

.small,
.meta {
  font-size: 0.875rem; /* 14px */
  line-height: 1.5;
}

.content,
.prose,
.page-content {
  max-width: 70ch;
  margin-inline: auto;
  padding-inline: 1rem;
}

#block-bawd-bartik-account-menu .content {
  max-width: 100%;
  padding-inline: 0;
}

/***** ===== USER LOGIN FORM ===== *****/

.user-login-form {
  max-width: 450px;
  margin: auto;
  display: block;
  background: lightblue;
  padding: 5px 20px;
}

.form-item .description,
.form-wrapper .description {
  margin-left: 10px;
  max-width: 70ch;
}

/***** =========================================
   BAW-D START PAGE — ARCHETYPE CARDS (CLEAN)
   ========================================= */

/* Base card */
.bawd-starting-block {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem 1.75rem;
  border-radius: 12px;
  box-sizing: border-box;
  text-align: center;
}

/* Title wrapper: keeps H2 centered and consistent */
.bawd-starting-block-title {
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bawd-starting-block-title h2 {
  margin: 0;
  text-align: center;
}
.bawd-starting-block-quote h3 {
    font-size: 28px;
    line-height: 1.1;
    background: #fff;
    border: 1px lightblue solid;
}

/* Bullet list: consistent spacing + evens card height */
.bawd-archetype__points {
  flex: 1 1 auto;
  min-height: 8.5em; /* tweak until cards feel even */
  list-style: disc;
  text-align: left;
  margin: 1.25rem auto 1.75rem;
  padding-left: 1.25rem;
  max-width: 22rem;
}

.bawd-archetype__points li {
  margin-bottom: 0.5rem;
}

/* Actions pinned to bottom */
.bawd-archetype__actions {
  margin-top: auto;
}

/* CTA spacing */
.bawd-archetype__actions h3 {
  margin: 0.5rem 0;
}

/* PRIMARY CTA ONLY:
   Apply button styling to the first CTA inside the actions wrapper.
   This prevents secondary CTA from inheriting button styles.
*/
.bawd-archetype__actions h3:first-child a {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  min-width: 12.5rem;
  text-align: center;
  line-height: 1.2;

  white-space: normal;
  word-break: normal;
  hyphens: none;
}

/* SECONDARY CTA */
.bawd-secondary-cta {
  margin-top: 0.75rem;
}

.bawd-secondary-cta a {
  display: inline-block;
  padding: 0;
  min-width: 0;
  border-radius: 0;
  background: none !important;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: underline;
}

/* Hover / Focus */
.bawd-archetype__actions h3:first-child a:hover,
.bawd-archetype__actions h3:first-child a:focus {
  opacity: 0.92;
}

.bawd-starting-block a:focus {
  outline: 3px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}

/* Archetype gradients */
.bawd-archetype--solo {
  background: linear-gradient(135deg, #f5f8fc 0%, #e8eef6 100%);
}

.bawd-archetype--planner {
  background: linear-gradient(135deg, #f4faf7 0%, #e2f1ea 100%);
}

.bawd-archetype--organization {
  background: linear-gradient(135deg, #f6f7f8 0%, #e4e7ea 100%);
}

/* Archetype primary button colors (first CTA only) */
.bawd-archetype--solo .bawd-archetype__actions h3:first-child a {
  background-color: #2f5fa5;
  color: #ffffff;
}

.bawd-archetype--planner .bawd-archetype__actions h3:first-child a {
  background-color: #2e7d5a;
  color: #ffffff;
}

.bawd-archetype--organization .bawd-archetype__actions h3:first-child a {
  background-color: #3f4a56;
  color: #ffffff;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .bawd-starting-block {
    margin-bottom: 1.5rem;
  }
}

/***** ===== START PAGE LAYOUT FIXES ===== *****/

/* Let 3 columns actually fit */
.path-start .layout-main {
  max-width: 1200px; /* try 1100–1300 */
}

/* Remove the prose clamp on this page (it forces narrow layouts) */
.path-start .content,
.path-start .prose,
.path-start .page-content {
  max-width: none;
}

/* Optional: reduce side padding so columns don't wrap early */
.path-start .content,
.path-start .page-content {
  padding-inline: 0.5rem;
}
@media (min-width: 901px) {
  .path-start .bawd-starting-block {
    padding: 1.75rem 1.5rem; /* down from 2rem 1.75rem */
  }
}
