.box_2_articoli {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin: auto;
  margin-top: 30px;
}

.box_articolo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  max-width: 430px;
  margin-top: 30px;
}

.box_articolo:first-of-type {
  margin-right: 20px;
}

.box_articolo_img {
  width: 200px;
  height: 200px;
  padding: 30px;
}

.box_articolo_img img {
  width: 140px;
  height: 140px;
}

.box_articolo_testo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: flex-start;
  padding: 30px 30px 30px 0;
  height: 200px;
}

.box_articolo_occhiello {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: rgb(112, 132, 255);
  ;
}

.box_articolo_titolo {
  font-family: "sole_headline", Georgia, Times, "Times New Roman", Serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #0f0f0f;
}

.box_articolo_firma {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #0f0f0f;
}

.box_articolo_testo a:link {
  color: #000;
  text-decoration: none;
}

.box_articolo_testo a:visited {
  color: #000;
  text-decoration: none;
}

.box_articolo_testo a:hover {
  color: #000;
  text-decoration: underline;
}

.box_articolo_testo a:active {
  color: #000;
  text-decoration: underline;
}

@media screen and (max-width: 480px) {
  .box_2_articoli {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .box_articolo:first-of-type {
    margin-right: 0;
  }

  .box_articolo_img {
    width: 140px;
    height: 140px;
    padding: 20px;
  }

  .box_articolo_img img {
    width: 100px;
    height: 100px;
  }

  .box_articolo_testo {
    padding: 20px 20px 20px 0;
    height: 145px;
  }

  .box_articolo_titolo {
    font-size: 18px;
    line-height: 20px;
  }

  .box_articolo:first-of-type {
    margin-top: 0px;
  }
}