#block-views-block-recensioni-block-1,
.block-view-recensioni {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  font-size: 1.25rem;

  .views-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 3rem;
    padding: 2rem 0rem;

    .views-field {
      display: flex;
      align-items: center;
      justify-content: start;
      gap: 0.25rem;

      /* Nome */
      &.views-field-field-nome {
        &::before {
          font-family: "Font Awesome 5 Free";
          content: "\f007";
          font-weight: 900;
          margin-top: -3px;
        }
      }

      /* Luogo */
      &.views-field-field-luogo {
        &::before {
          font-family: "Font Awesome 5 Free";
          content: "\f3c5";
          font-weight: 900;
          margin-top: -3px;
        }
      }

      /* Voto */
      &.views-field-field-voto {
        --color: #ffab00;
        color: var(--color);
      }
    }
  }
}
