/* styles/my-test-cards.css */
/* Стили для конкретного типа карточек (можно заменить на другие) */

.content-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(212, 218, 222, 0.6);
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(38, 68, 92, 0.08);
  border-color: #D4DADE;
}

/* иконка-заглушка */
.card-icon {
  width: 56px;
  height: 56px;
  background-color: #F4F6F7;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: #26445C;
  stroke-width: 1.5;
  fill: none;
}

.card-title {
  font-family: 'OpenRunde-Medium', 'Open Runde', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.011em;
  color: #1C1F26;
  margin-bottom: 12px;
}

.card-description {
  font-family: 'OpenRunde-Regular', 'Open Runde', sans-serif;
  font-size: 14px;
  color: #77797D;
  line-height: 1.4;
}

/* внутренняя адаптация карточек */
@media (max-width: 760px) {
  .card-title {
    font-size: 16px;
  }
  .card-icon {
    width: 48px;
    height: 48px;
  }
}