.simple-cards {
  padding-top: 20px;
}

.simple-card-item {
  padding: 16px 20px;
  border-radius: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  cursor: pointer;
  color: var(--Neutral_Color-White, #FFF);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  border-radius: 10px;
  background: var(--primary-color, #FD0008);
  height: 100px;
}

.simple-card-item:hover {
  color: var(--Neutral_Color-White, #FFF);
  text-decoration: none;
}

.simple-card-item .icon {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.simple-card-item .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.simple-card-item .text {
  color: var(--Neutral_Color-White, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  width: 80%;
}
.simple-card-no-image-wrapper .simple-card-item {
  height: auto;
  justify-content: center;
  text-align: center;
}

.simple-card-no-image-wrapper .simple-card-item .text {
  width: 100%;
}

.simple-card-item .arrow {
  font-size: 18px;
  font-weight: bold;
}
