.channel-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 36px;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
  width: 90vw;
  min-height: 400px;
  /* background-color: rgb(247, 247, 247); */
  background: linear-gradient(
    135deg,
    rgb(247, 247, 247) 35%,
    white 100%
  );
  /* border: 1px solid #4879e33c; */
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4878e3;
  border-radius: 50%;
  width: 76px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.card-icon-ok {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #67df0b;
  border-radius: 50%;
  width: 76px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #4878e3;
  word-wrap: break-word;
}

.card-content {
  text-align: center;
  line-height: 1.5;
  font-size: 20px;
}

@media (min-width: 769px) {
  .channel-card {
    gap: 0;
    display: grid;
    grid-template-rows: 2fr 1fr 3fr;
    min-height: 0;
    width: 22%;
    min-width: 250px;
    height: 400px;
  }
  .card-content {
    text-align: center;
    line-height: 1.3;
    font-size: 20px;
  }
}
