.c-bilddokumentation {

  display: grid;
  align-items: center;
  grid-template-columns: repeat(12, 1fr);
  margin-top: 80px;

  @media (min-width: 768px) {
    margin-top: 200px;
  }

  .c-bilddokumentation__title {
    grid-column: 1 / 9;
    margin-bottom: 2rem;

    a {
      text-decoration: underline;
    }
  }

  .c-bilddokumentation__stoerer {
    grid-column: 9 / -1;
    justify-self: center;
  }

  .c-bilddokumentation__bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 126px;
    height: 126px;
    text-align: center;
    background-color: #fd926b;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;

    &:hover {
      transform: scale(1.1);
    }
  }
}
