.webresto-recomended-item {
  display: flex;
  width: 100%;
  height: 221px;
  flex-direction: column;
  align-items: center;
  max-width: 140px;
  box-shadow: 0 4px 20px rgb(0 0 0 / 7%);
  border-radius: 10px;

  img {
    border-radius: var(--image-border-radius, 10px 10px 0 0);
    object-fit: cover;
    margin-bottom: 8px;
    flex: 0 0 auto;
  }

  .mat-h4 {
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    text-align: left;
    color: var(--primary-text-color);
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }

  .content {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 auto;
    box-sizing: border-box;
  }

  .actions {
    width: 100%;
    box-sizing: border-box;

    button {
      width: 100%;
      color: var(--button-text-color);
      background: var(--button-color);
      border-radius: var(--border-radius);
      font-family: var(--font-secondary);
      &:hover {
        opacity: 0.8;
      }
    }
  }
}
