.bf-tipp {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  margin-block: 20px;
  padding: 20px;
  border-radius: 0px;
  background: #EBE9E9;
}
.bf-tipp.has-image {
    margin-top: 40px;
}

.bf-tipp.no-image { grid-template-columns: 1fr; }
.bf-tipp.no-image .bf-tipp__content { grid-column: 1 / -1; }

.bf-tipp__image {
  z-index: 1;
  width: 96px;
  height: 96px;
  margin-top: -40px;
}
.bf-tipp__image img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.bf-tipp__content { z-index: 1; }

.bf-tipp__headline {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
}

.bf-tipp__quote {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
}

blockquote.bf-tipp__quote {
    padding: 0;
    border-left: none;
}
blockquote.bf-tipp__quote >*:first-child:before {
    position: relative;
    content: '"';
    display: inline;
}
blockquote.bf-tipp__quote >*:last-child:after {
    position: relative;
    content: '"';
    display: inline;
}

.bf-tipp__byline {
  margin: 0;
  font-weight: 400;
  text-align: right;
}
.bf-tipp__byline-link {
  color: inherit;
  text-decoration: none;
}
.bf-tipp__byline-link:hover,
.bf-tipp__byline-link:focus {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .bf-tipp {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    margin-inline: -10px;
  }

  .bf-tipp__image,
  .bf-tipp__image img {
    width: 96px;
    height: 96px;
  }

  .bf-tipp__quote {
    font-size: 18px;
  }

}