.icc-card-redazione {
  display: grid;
  grid-template-columns: 64px 1fr 16px;
  gap: var(--icc-spacing-4);
  position: relative;

  img {
    height: 64px;
    width: 64px;
    object-fit: cover;
  }

  div {
    align-self: center;
  }
  .icc-card-redazione-btn-desk {
    display: none;
  }
  .more svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (width > 900px) {
  .icc-card-redazione {
    grid-template-columns: 1fr;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--icc-spacing-3);

    img {
      margin-inline: auto;
      height: 180px;
      width: 180px;
    }

    .more {
      display: none;
    }
  }

  .icc-card-redazione:hover {
    img {
      height: 130px;
      width: 130px;
    }
    .icc-card-redazione-btn-desk {
      display: block;
      margin-block-end: calc(var(--icc-spacing-4) * -1);
    }
  }
}
