
/* ECMT Editions page polish */
.editions-hero {
  background: linear-gradient(90deg, #ffffff 0%, #f4f9ff 100%);
}

.edition-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.edition-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #d8e6f8;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(5, 36, 89, 0.08);
  overflow: hidden;
}

.edition-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: #0878f8;
}

.edition-individual::before { background: #17a66a; }
.edition-enterprise::before { background: #7754e8; }

.edition-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #eaf3ff;
  color: #0878f8;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.edition-individual .edition-icon {
  background: #eaf8f1;
  color: #17a66a;
}

.edition-enterprise .edition-icon {
  background: #f1edff;
  color: #7754e8;
}

.edition-card h3 {
  margin: 0 0 12px;
}

.edition-card p {
  color: #50658d;
  line-height: 1.6;
}

.edition-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 9px;
}

.edition-card li {
  position: relative;
  padding-left: 24px;
}

.edition-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0878f8;
  font-weight: 800;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(5, 36, 89, 0.06);
}

.compare table {
  min-width: 760px;
}

@media (max-width: 900px) {
  .edition-card-grid {
    grid-template-columns: 1fr;
  }
}
