.guidelines {
  display: contents;

  .guideline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;

    padding: 40px 30px;
    border-radius: 50px;
    border: 3px solid $light_green;
    box-shadow: $box-shadow-standard;

    @media (min-width: $breakpoint_lg) {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }
}