.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 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;
  }
}