.smyk-diff {
  padding-block: var(--smyk-section-py);
  background: #fff;
}
.smyk-diff__wrap {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

/* ── Header ──────────────────────────────────────────── */
.smyk-diff__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}
.smyk-diff__eyebrow {
  display: inline-block;
  font-family: var(--smyk-font, inherit);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e41d56;
  background: rgba(228, 29, 86, 0.10);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.smyk-diff__heading {
  font-family: var(--smyk-font, inherit);
  font-size: clamp(1.75rem, 4vw, 45px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #222222;
  margin: 0 0 14px;
}
.smyk-diff__heading-accent {
  color: #e41d56;
  margin-left: 0.3em;
}
.smyk-diff__subtitle {
  font-size: clamp(14px, 1.2vw, 17px);
  color: #475569;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 580px;
}

/* ── Grid — 2 columns (4 features in a 2×2 layout) ─── */
.smyk-diff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 880px;
  margin-inline: auto;
}

/* ── Card ───────────────────────────────────────────── */
.smyk-diff__card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px 26px 26px;
  text-align: left;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.smyk-diff__card:hover {
  border-color: rgba(228, 29, 86, 0.35);
  box-shadow: 0 18px 36px -20px rgba(15, 23, 42, 0.22);
  transform: translateY(-3px);
}

.smyk-diff__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 18px;
}
.smyk-diff__card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.smyk-diff__card-emoji {
  font-size: 28px;
  line-height: 1;
}

.smyk-diff__card-title {
  font-family: var(--smyk-font, inherit);
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin: 0 0 8px;
}
.smyk-diff__card-desc {
  font-size: clamp(13px, 1vw, 14px);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.smyk-diff__empty {
  text-align: center;
  color: #6b7280;
  padding: 40px 0;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 700px) {
  .smyk-diff__grid { gap: 16px; }
}
@media (max-width: 560px) {
  .smyk-diff__grid { grid-template-columns: 1fr; gap: 14px; }
  .smyk-diff__card { padding: 22px 20px; }
  .smyk-diff__card-icon { width: 48px; height: 48px; border-radius: 14px; }
}
