/* Scoped styles for .ms-changelog-info — width 1200, numbers RTL */
.ms-changelog-info {
  font-family: IRANSans, sans-serif; /* فقط ایران‌سنس، بدون معرفی فونت */
}

/* ظرف مرکزی با عرض 1200 و سنتر */
.ms-changelog-info .msci-container {
  max-width: 1200px;
  margin-inline: auto;
}

/* گرید 4تایی (در 1200px جا می‌شود) */
.ms-changelog-info .msci-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ms-gap, 16px);margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .ms-changelog-info .msci-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .ms-changelog-info .msci-grid { grid-template-columns: 1fr; }
}

.ms-changelog-info .msci-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border-radius: var(--ms-radius, 20px);
  padding: 20px 22px;
  box-shadow: 0 6px 24px rgba(2, 6, 23, 0.06);
  border: 1px solid rgba(2,6,23,0.06);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.ms-changelog-info .msci-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.10);
  border-color: rgba(2,6,23,0.12);
}

/* آیکن سمت چپ، متن سمت راست (RTL) */
.ms-changelog-info .msci-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 999px;
  background: var(--ms-icon-bg, #94a3b8);
  display: grid;
  place-items: center;
  margin-left: 16px; /* چون RTL است، فاصله از سمت چپ */
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.ms-changelog-info .msci-icon i { font-size: 20px; line-height: 1; }

.ms-changelog-info .msci-texts { display: grid; gap: 6px; }
.ms-changelog-info .msci-title {
  font-size: 13px;
  color: #6b7280;
}
.ms-changelog-info .msci-value {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.2px;
}

/* دارک‌مود */
@media (prefers-color-scheme: dark) {
  .ms-changelog-info .msci-card {
    background: #0b1220;
    border-color: rgba(255,255,255,0.06);
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  }
  .ms-changelog-info .msci-title { color: #9ca3af; }
  .ms-changelog-info .msci-value { color: #e5e7eb; }
}
