.plat-mini {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.plat-mini a {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-deep);
  text-decoration: none;
}
.plat-mini a:hover { text-decoration: underline; }
.plat-bar-wrap { padding-bottom: 0; }
.plat-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.plat-hub .link-card { min-height: 220px; }
.plat-soon {
  opacity: 0.85;
}
.progress-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 1.5rem;
}
.progress-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.15rem;
}
.progress-card .label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.progress-card .value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.25rem 0 0.6rem;
}
.progress-track {
  height: 8px;
  background: #e8edf5;
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--blue, #0481FD);
  border-radius: 100px;
}
.item-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--navy);
  margin-top: 0.5rem;
}
.item-row:hover { border-color: rgba(4, 129, 253, 0.35); }
.item-row .done {
  font-size: 11px;
  font-weight: 600;
  color: #0f7b4c;
  margin-left: auto;
}
.plat-form {
  display: grid;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.plat-form label { font-size: 13px; font-weight: 500; }
.plat-form input, .plat-form select, .plat-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 14px;
}
.plat-form button, .plat-btn {
  justify-self: start;
  padding: 10px 18px;
  border: none;
  border-radius: 100px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  font-size: 13px;
}
.plat-form .ok { color: #0f7b4c; font-size: 13px; margin: 0; }
.plat-form .err { color: #b42318; font-size: 13px; margin: 0; }
.module-block { margin: 1.75rem 0; }
.module-block h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: var(--navy); }
.thread {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.85rem;
}
.thread h4 { margin: 0 0 0.5rem; }
.post {
  font-size: 14px;
  color: var(--navy);
  padding: 0.5rem 0;
  border-top: 1px solid var(--border);
}
.post .meta { font-size: 12px; color: var(--muted); }
.media-frame {
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.quiz-q { margin-bottom: 1.25rem; }
.quiz-q label { display: flex; gap: 0.5rem; align-items: flex-start; margin: 0.35rem 0; font-size: 14px; }
.likert {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  margin-top: 0.65rem;
}
.likert label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
}
.likert small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.2;
}
@media (max-width: 800px) {
  .likert { grid-template-columns: 1fr; }
  .likert label { flex-direction: row; text-align: left; }
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-size: 14px;
}
.admin-table th, .admin-table td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--border);
}
.admin-table th { font-size: 12px; color: var(--muted); font-weight: 600; }
@media (max-width: 800px) {
  .plat-hub, .progress-block { grid-template-columns: 1fr; }
}
