
.advice__category {
  position: relative;
  display: block;
  background-color: var(--color-neutral--white);
  border-bottom-right-radius: 16px;
  padding: 14px 16px 8px 16px;
  width: fit-content;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-neutral--grey);
  font-size: var(--content-size-xs);
  line-height: normal;
}
.advice__category::before,
.advice__category::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 24px;
    background: url("../../images/advice/advice-shape.png");
    background-position: center;
    background-repeat: no-repeat;
}
.advice__category::before {
  right: -25px;
  top: -1px;
}
.advice__category::after {
  left: 0;
  bottom: -23px;
}
.advice__wrapper {
  background-color: var(--color-neutral--light-grey);
  border-radius: 24px;
  height: 100%;
}
.advice__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 27px 16px 16px 16px;
  text-align: center;
  gap: 8px;
  height: calc(100% - 39px);
}
.advice__title {
  font-weight: 800;
  line-height: 130%;
  font-size: 35px;
  color: var(--color-neutral--grey);
}
.advice__title--small {
  font-size: 30px;
}
.advice__text {
  font-weight: 400;
  line-height: 160%;
  font-size: var(--content-size-s);
  color: var(--color-neutral--dark-grey);
}
.advice__text p {
  margin: 0;
}
.advice__image {
  margin-top: auto;
}
@media all and (min-width: 1000px){
  .advice__title {
    line-height: 160%;
  }
}
