.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile h1 {
  width: 100%;
}
.profile a {
  text-align: center;
  margin-top: 1rem;
  display: inline-block;
  width: 100%;
}

.profile-photo {
  margin-top: 2rem;
}

.why-now {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.story-photo {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
  align-items: center;
}

.story {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .story-photo {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
}
.grid {
  margin: 4rem 0;
  padding-left: 0;
}

.card {
  transition-duration: 0.3s;
}
.card.reveal.active:hover {
  transform: scale(1.05);
}
.card.values li {
  font-size: 0.9rem;
}

html:has(#theme-switcher [value=dark]:checked) .card img.icon {
  filter: invert(100%);
}
html:has(#theme-switcher [value=dark]:checked) .card.popular img {
  filter: none;
}

.full-bleed {
  margin-top: 4rem;
  padding: 3rem;
  /* background: linear-gradient(to right, #34d399, #14b8a6); */
  /* background: linear-gradient(to right, var(--color-green-600), var(--color-brand) 30% 70%, var(--color-green-600)); */
  background-color: var(--color-accentNonContentStrong);
  width: 100vw;
  position: relative;
}
.full-bleed-content {
  align-items: center;
  display: flex;
  flex-flow: column wrap;
}
.full-bleed-content h2 {
  color: var(--color-white);
  font-size: 2.25rem;
  line-height: 2.5;
}
.full-bleed-content p {
  color: var(--color-white);
}