@media (min-width: 34.375rem) {
  .about-page__hero-section {
    padding-top: 3rem;
  }
}
.about-page__tidbits {
  margin: 1rem 0;
  font-size: 1.25rem;
}

.about-page__tidbits-list {
  list-style: none;
  padding: 0;
}
.about-page__tidbits-list > li {
  display: flex;
  gap: 1.5rem;
  font-size: 1.125rem;
}
.about-page__tidbits-list > li::before {
  position: relative;
  top: 4px;
  content: "";
  flex-shrink: 0;
  display: block;
  background-image: url("/img/small-blue-flower.svg");
  width: 27px;
  height: 23px;
  background-size: contain;
  background-repeat: no-repeat;
}

.about-page__experience-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}
@media (min-width: 68.75rem) {
  .about-page__experience-list > li {
    display: flex;
    gap: 2rem;
    position: relative;
  }
  .about-page__experience-list > li::before {
    content: "";
    flex-shrink: 0;
    display: block;
    background-color: var(--primary-green);
    width: 20px;
    height: 20px;
    border-radius: 7px;
    position: relative;
    top: 4px;
  }
  .about-page__experience-list > li::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 24px;
    width: 2px;
    height: calc(100% + 3rem);
    background-image: repeating-linear-gradient(to bottom, var(--primary-green), var(--primary-green) 3px, transparent 3px, transparent 7px);
    z-index: 0;
  }
  .about-page__experience-list > li:last-child::after {
    display: none;
  }
}
.about-page__experience-list li h3 {
  margin: 0;
  font-size: 1.5rem;
  font-family: var(--font-body);
}
.about-page__experience-list li .tech-stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.about-page__experience-list li .tech-stack-list li {
  display: flex;
  align-items: center;
  margin: 0;
  font-weight: 600;
  background-color: var(--beige-20);
  color: var(--text-color-dark);
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 7px;
}

.about-page__experience-wrapper {
  position: relative;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--off-white);
  border-radius: 7px;
  padding: 2rem;
  align-items: flex-start;
  font-size: 1rem;
  border: 1px solid var(--brown-20);
  position: relative;
  max-width: 35rem;
}
.project-card__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.project-card__header-meta-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.project-card h2,
.project-card h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
}
.project-card::before {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  background-image: url("/img/small-plant.svg");
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -15px;
  right: -10px;
  transform: rotate(-10deg);
}
@media (min-width: 68.75rem) {
  .project-card::before {
    left: -16px;
  }
}
.project-card__image-wrapper {
  display: none;
}
@media (min-width: 68.75rem) {
  .project-card__image-wrapper {
    display: block;
  }
}
.project-card__tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}
.project-card__tech-stack li {
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
  margin: 0;
  background-color: var(--brown-20);
  color: var(--text-color-light);
  border-radius: 5px;
}
