.fontish-snapshot-card {
  --fontish-ink: #2e2e3a;
  --fontish-purple: #6a5acd;
  --fontish-lavender: #f4f2f8;
  --fontish-panel: #fafafc;
  --fontish-border: #e7e5ee;
  --fontish-panel-border: #efedf4;
  --fontish-divider: #e6e3ee;
  background: #ffffff;
  border: 1px solid var(--fontish-border);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(46, 46, 58, 0.07);
  margin: 28px 0;
}

.fontish-snapshot-card__header-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.fontish-snapshot-card__eyebrow {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fontish-purple);
}

.fontish-snapshot-card__header {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fontish-ink);
}

.fontish-snapshot-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fontish-snapshot-card__item {
  background: linear-gradient(180deg, #fcfbfe 0%, var(--fontish-panel) 100%);
  border: 1px solid var(--fontish-panel-border);
  border-radius: 10px;
  padding: 18px 20px 19px;
  min-width: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fontish-snapshot-card__item:hover {
  border-color: #ddd8ef;
  box-shadow: 0 8px 18px rgba(106, 90, 205, 0.08);
  transform: translateY(-1px);
}

.fontish-snapshot-card__item.is-featured {
  background: var(--fontish-lavender);
  border-color: #e0daf0;
}

.fontish-snapshot-card__label {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--fontish-purple);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--fontish-divider);
}

.fontish-snapshot-card__value {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--fontish-ink);
  overflow-wrap: anywhere;
}

/* Editor sidebar typography */
.fontish-snapshot-card__inspector .components-base-control {
  margin-bottom: 14px;
}

.fontish-snapshot-card__inspector .components-base-control__label {
  font-size: 15px;
  font-weight: 800;
  color: var(--fontish-purple);
  margin-bottom: 8px;
}

.fontish-snapshot-card__inspector .components-text-control__input,
.fontish-snapshot-card__inspector textarea,
.fontish-snapshot-card__inspector input[type="text"] {
  min-height: 42px;
  border-radius: 10px;
  border-color: var(--fontish-border);
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: none;
}

.fontish-snapshot-card__inspector .components-text-control__input:focus,
.fontish-snapshot-card__inspector textarea:focus,
.fontish-snapshot-card__inspector input[type="text"]:focus {
  border-color: var(--fontish-purple);
  box-shadow: 0 0 0 1px var(--fontish-purple);
}

@media (max-width: 782px) {
  .fontish-snapshot-card {
    padding: 18px;
  }

  .fontish-snapshot-card__header {
    font-size: 22px;
  }

  .fontish-snapshot-card__grid {
    grid-template-columns: 1fr;
  }

  .fontish-snapshot-card__label {
    font-size: 16px;
  }

  .fontish-snapshot-card__value {
    font-size: 18px;
  }
}
