.product {
  background-color: var(--color-primary--2);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 536px;
  width: 100%;
  height: auto;
  min-height: 290px;
}

.product__wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.product p {
  margin: 0;
  color: #000;
}
.product__image {
  display: flex;
  gap: 1rem;
}

.product__image img {
  height: 92px;
  width: 92px;
}


.product__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product__text p:first-child {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.product__text p:last-child {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  gap: 1rem;
}


.product__file a{
  color: #6E6E6E;
  text-decoration: underline;
}

.product__file a:hover{
  color: #000000;
}

.product__file .file {
  padding-left: 0px;
}
.product__file .file--application-pdf {
  background-image: unset;
}




