.smyk-qn {
  padding-block: clamp(32px, 4vw, 56px);
  background: #fff;
}
.smyk-qn__wrap {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.smyk-qn__header {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.smyk-qn__heading {
  font-family: var(--smyk-font, inherit);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: #222222;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.smyk-qn__subtitle {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
}

/* Grid — 4 cards desktop, 2 tablet, 1 mobile */
.smyk-qn__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
}

/* Card — soft gray rounded square */
.smyk-qn__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #f3f4f6;
  border-radius: 18px;
  padding: clamp(28px, 3vw, 40px) clamp(16px, 2vw, 24px);
  text-align: center;
  text-decoration: none;
  color: inherit;
  aspect-ratio: 1 / 1;
  max-height: 240px;
  transition: background-color .2s, transform .15s;
}
.smyk-qn__card--link {
  cursor: pointer;
}
.smyk-qn__card--link:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}
.smyk-qn__card--link:focus-visible {
  outline: 3px solid var(--smyk-orange, #e41d56);
  outline-offset: 2px;
}

/* Icon — large illustrated pictogram */
.smyk-qn__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222222;
}
.smyk-qn__card-icon img,
.smyk-qn__card-icon svg {
  width: clamp(48px, 5vw, 72px);
  height: clamp(48px, 5vw, 72px);
  object-fit: contain;
}
.smyk-qn__card-emoji {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
}

/* Title — bold centred */
.smyk-qn__card-title {
  font-family: var(--smyk-font, inherit);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 800;
  color: #222222;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

/* Highlighted / active card — title turns brand orange */
.smyk-qn__card--active .smyk-qn__card-title {
  color: var(--smyk-orange, #e41d56);
}

.smyk-qn__empty {
  text-align: center;
  color: #6b7280;
  padding: 40px 0;
}

/* Responsive */
@media (max-width: 900px) {
  .smyk-qn__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .smyk-qn__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .smyk-qn__card { padding: 22px 14px; gap: 12px; }
  .smyk-qn__card-title { font-size: 0.9rem; }
}
