/* -- .advantage-card -- */
.advantage-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 36px;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  width: 90vw;
  min-height: 400px;
  background-color: white;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: #ffbf0f;
  border-radius: 50%;
  width: 76px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.card-icon svg {
  width: 70%;
  height: 70%;
}

.card-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}

.card-content {
  text-align: center;
  line-height: 1.5;
  font-size: 22px;
}

/* ---- comment card ---- */

.comment-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  width: 90vw;
  min-height: 100px;
  background-color: white;
}

.comment-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffbf0f;
  width: 76px;
}

.comment-card-icon svg {
  width: 100%;
  height: 100%;
}

.comment-card-content {
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  letter-spacing: 1px;
  text-align: left;
  line-height: 1.5;
  font-size: 18px;
}

@media (min-width: 769px) {
  .advantage-card {
    gap: 0;
    /* justify-content: flex-start; */
    display: grid;
    grid-template-rows: 1fr 2fr 3fr;
    min-height: 0;
    width: 280px;
    min-width: 250px;
    height: 400px;
  }
  .card-content {
    text-align: center;
    line-height: 1.3;
    font-size: 18px;
  }
  .comment-card {
    width: 25%;
    min-height: 300px;
    min-width: 250px;
    justify-content: space-between;
  }
}
