.about-shell {
  background: transparent;
}

.about-main {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding: var(--space-6) var(--space-4);
  flex: 1;
}

.about-panel {
  min-height: 32rem;
}

.about-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1;
  text-align: center;
  margin-bottom: var(--space-5);
}

.about-box-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(16rem, 1fr));
  gap: var(--space-5);
  justify-items: center;
  align-items: start;
}

.about-box-wrap {
  width: min(100%, 19rem);
  min-height: 13rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.35rem;
  background: var(--cream);
  border: 3px solid var(--shadow-grey);
  border-radius: 0.9rem;
  box-shadow: 0.6rem 0.6rem 0 var(--shadow-grey);
}

.about-box-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text {
  max-width: 11rem;
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.45;
}

.about-causes-box {
  background: #cde7b8;
  align-items: stretch;
}

.about-causes-content {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.5rem;
  text-align: center;
}

.about-causes-title {
  font-family: "Kamryn";
  font-size: 1.1rem;
  line-height: 1.15;
  text-align: center;
}

.about-causes-note {
  font-size: 0.85rem;
  line-height: 1.2;
}

.about-causes-list {
  list-style: disc;
  padding-left: 1.2rem;
  text-align: left;
  width: 100%;
}

.about-causes-list a {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.about-causes-list li {
  font-size: 0.95rem;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.about-causes-subtext {
  font-size: 0.9rem;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 47.99rem) {
  .about-panel {
    min-height: auto;
  }

  .about-box-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .about-box-wrap {
    width: min(100%, 16rem);
    min-height: 11rem;
    padding: 1rem;
  }

  .about-text {
    max-width: 9.5rem;
    font-size: 0.9rem;
  }

  .about-causes-list li {
    font-size: 0.9rem;
  }
}

/* MOBILE STABILIZER: remove decorative SVG variance on small screens */
@media (max-width: 900px) {
  .about-page-main {
    width: 100%;
    max-width: 42rem;
    margin-inline: auto;
    padding: 1rem 0.75rem;
    overflow-x: hidden;
  }

  .about-page-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 1rem;
    gap: 2rem;
    overflow-x: hidden;
  }

  .about-page-panel > *,
  .about-page-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .about-page-title {
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: clamp(1.75rem, 8vw, 2.75rem);
    line-height: 1;
    letter-spacing: 1px;
    overflow-wrap: anywhere;
  }

  .h2-box {
    width: 100%;
    max-width: 18rem;
    margin: 0.5rem auto;
    padding: 0.85rem 1rem;
    background-image: none;
    background-color: #db7556;
    border: 2px solid var(--shadow-grey);
    border-radius: 0.75rem;
    box-shadow: 0.25rem 0.25rem 0 var(--shadow-grey);
  }

  .h2-box-text {
    font-size: clamp(0.95rem, 4.5vw, 1.15rem);
    line-height: 1.1;
    letter-spacing: 0;
    text-align: center;
  }

  .quote-box {
    width: 100%;
    max-width: 18rem;
    margin: 0 auto;
    padding: 1.25rem;
    background-image: none;
    background-color: #ffffff;
    border: 3px solid var(--shadow-grey);
    border-radius: 1rem;
    box-shadow: 0.25rem 0.25rem 0 var(--shadow-grey);
  }

  .quote-box-content {
    width: 100%;
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .quote-box-content p {
    padding: 0;
  }

  .quote-box-content figcaption,
  .quote-box-content cite {
    font-size: 0.78em;
    line-height: 1.2;
  }

  .about-page-intro,
  .about-page-list {
    width: 100%;
    max-width: 18rem;
    margin-inline: auto;
  }
}