.hero-animated:has(+ .expert-about) {
  .container {
    .header-underline {
      color: var(--color-pastel-green-400);
    }
  }
}

.expert-about__header {
  display: grid;
  margin-top: var(--space-xxl);
  margin-bottom: var(--space-lg);

  h2 {
    grid-column: 1 / 2;
  }

  @media (min-width: 40rem) {
    h2 {
      grid-column: 3 / 4;
    }
  }
}

@media (min-width: 0) {
  .expert-about__header {
    grid-template-columns: repeat(4, 1fr);
    align-items: flex-start;
    column-gap: var(--gutter);
  }
}

@media (min-width: 40rem) {
  .expert-about__header {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (min-width: 64rem) {
  .expert-about__header {
    grid-template-columns: repeat(12, 1fr);
  }
}

@media (min-width: 75rem) {
  .expert-about__header {
    grid-template-columns: repeat(8, 1fr);
  }
}


.expert-blogposts {
  background-color: var(--color-iron-300);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.expert__header {
  display: flex;
  height: auto;
  row-gap: var(--baseline-sm);
  margin-bottom: var(--baseline);


  strong {
    font-weight: 600;
  }
}

@media (min-width: 0rem) {
  .expert__header {
    flex-direction: column;
  }
}

@media (min-width: 40rem) {
  .expert__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}


.expert-opensource {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}