.real-cert-page .six-main {
  display: grid;
  gap: 18px;
}
.cert-stats-grid,
.personal-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.cert-stat,
.real-personal-cert,
.personal-cert-card,
.real-cert-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.cert-stat {
  display: grid;
  gap: 5px;
  padding: 16px;
}
.cert-stat strong {
  font-size: 30px;
  color: #204a8e;
}
.cert-stat span {
  font-weight: 850;
}
.cert-stat small,
.personal-cert-card p,
.skill-list span,
.real-cert-table small {
  color: var(--muted);
}
.real-personal-cert {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
}
.personal-cert-card {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.personal-cert-card .cert-paper,
.real-personal-cert .cert-paper {
  width: 72px;
  height: 92px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #173b24;
  background: linear-gradient(160deg, #f8fff9, #dff5e7);
  border: 1px solid #cbead5;
  font-weight: 950;
}
.personal-cert-card div:last-child,
.cert-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.real-cert-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.real-cert-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.real-cert-card .big-medal {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #285bd4, #20a36b);
  font-weight: 950;
}
.real-cert-card h3,
.real-cert-card p {
  margin: 0;
}
.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.skill-list span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f2f6fb;
  font-size: 12px;
  font-weight: 750;
}
.real-cert-table table {
  width: 100%;
  border-collapse: collapse;
}
.real-cert-table th,
.real-cert-table td {
  padding: 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.real-cert-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}
.real-cert-table tr.focus-flash {
  outline: 2px solid #76a7ff;
  outline-offset: -2px;
  background: #f5f9ff;
}
.cert-page .benefit {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.cert-page .benefit:last-child {
  border-bottom: 0;
}
.cert-page .benefit span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #edf4ff;
  color: #2251d1;
}
.cert-page .benefit small {
  grid-column: 2;
  color: var(--muted);
  line-height: 1.4;
}
@media (max-width: 980px) {
  .cert-stats-grid,
  .personal-cert-grid,
  .real-cert-grid {
    grid-template-columns: 1fr;
  }
  .real-personal-cert {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .real-cert-table {
    overflow-x: auto;
  }
  .real-cert-table table {
    min-width: 760px;
  }
  .personal-cert-card div:last-child .ghost-button,
  .cert-actions .primary-button,
  .cert-actions .ghost-button,
  .real-personal-cert .primary-button {
    width: 100%;
  }
}