:root {
  --exam-blue: #2563eb;
  --exam-blue-dark: #1d4ed8;
  --exam-blue-soft: #dbeafe;
  --exam-text: #111827;
  --exam-muted: #6b7280;
  --exam-border: #e5e7eb;
  --exam-paper: rgba(255, 255, 255, .94);
  --exam-grid: rgba(0, 0, 0, .055);
}

#blogLangSwitcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

#blogLangSwitcher .blog-lang-popup {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  padding: 0.35rem;
  z-index: 9999;
  min-width: 60px;
}

#blogLangSwitcher .blog-lang-item {
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
}

#blogLangSwitcher .blog-lang-item:hover {
  background: #f1f5f9;
}

#blogLangSwitcher .blog-lang-item.active {
  background: #e8f0fe;
  color: #2563eb;
}

#blogGlobeBtn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}

#blogGlobeBtn:hover {
  opacity: 1;
}

.exams-page {
  flex: 1 1 auto;
  color: var(--exam-text);
  font-family: Inter, system-ui, sans-serif;
}

main.exams-page:has(.exams-workspace) {
  padding-top: 3rem;
}

.exams-grid {
  background-color: rgba(250, 250, 250, .92);
  background-image:
    linear-gradient(to right, var(--exam-grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--exam-grid) 1px, transparent 1px);
  background-size: 28px 28px;
}

.exams-wrap {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.exams-copy {
  max-width: 72ch;
}

.exams-page h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--exam-text);
}

.exams-page h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--exam-text);
}

.exams-page p {
  color: #374151;
  line-height: 1.7;
}

.exams-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--exam-blue);
  margin: 0 0 0.7rem;
}

.exams-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #4b5563;
  max-width: 40rem;
}

.exams-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 8px;
  padding: 0.7rem 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--exam-blue);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.exams-btn-primary {
  background: var(--exam-blue);
  color: #fff;
}

.exams-btn-primary:hover {
  background: var(--exam-blue-dark);
  border-color: var(--exam-blue-dark);
  color: #fff;
}

.exams-btn-secondary {
  background: #fff;
  color: var(--exam-blue);
}

.exams-btn-secondary:hover {
  background: #eff6ff;
  color: var(--exam-blue-dark);
}

.exams-btn-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--exam-blue);
  padding-inline: 0.35rem;
  font-weight: 600;
}

.exams-btn-ghost:hover {
  color: var(--exam-blue-dark);
  text-decoration: underline;
}

.exams-paper {
  background: var(--exam-paper);
  border: 1px solid var(--exam-border);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-child {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(.2, .7, .2, 1);
}

.reveal-child.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-child {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.exams-page p.exams-kvasir-slogan {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 3.15rem 1rem 0;
  text-align: right;
  color: #7f1d1d;
  font-family: "Caveat", cursive;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  font-weight: 600;
  line-height: 1.25;
}

.exams-hero {
  min-height: 0;
  display: block;
  padding: 52px 0;
}

.exams-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem;
  align-items: start;
}

.exams-hero-copy {
  padding: 1.25rem 1.35rem;
}

.exams-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 0.9rem;
}

.exams-cap-strip {
  margin: 0;
  font-size: 0.86rem;
  color: var(--exam-muted);
}

.exams-hero-mock {
  position: relative;
  min-height: 0;
  padding: 0.85rem 0.85rem 2.35rem;
  overflow: hidden;
}

.exams-hero-workspace {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 0.85rem;
  min-height: 0;
}

.exams-hero-paper {
  background: #f8fafc;
  border: 1px solid var(--exam-border);
  border-radius: 8px;
  padding: 0.85rem 0.9rem;
  min-width: 0;
}

.exams-hero-paper-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.exams-ocr-line {
  height: 8px;
  border-radius: 99px;
  background: #e5e7eb;
  margin-bottom: 0.38rem;
}

.exams-ocr-line.w-92 { width: 92%; }
.exams-ocr-line.w-80 { width: 80%; }
.exams-ocr-line.w-70 { width: 70%; }
.exams-ocr-line.w-58 { width: 58%; }
.exams-ocr-line.w-44 { width: 44%; }

.exams-thumbs {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.7rem;
}

.exams-thumb {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  border: 2px solid var(--exam-border);
  background:
    repeating-linear-gradient(0deg, #f3f4f6 0 3px, transparent 3px 7px),
    #fff;
}

.exams-thumb.is-on {
  border-color: var(--exam-blue);
}

.exams-hero-stats {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.55rem;
}

.exams-hero-count {
  margin: 0;
  font-size: 0.88rem;
  color: #374151;
  width: fit-content;
  margin-inline-start: auto;
}

.exams-hero-count strong {
  font-size: 1.25rem;
}

.exams-chart {
  flex: 1 1 auto;
  min-height: 210px;
  border: 1px solid #dbe4ff;
  background: #eef2ff;
  border-radius: 8px;
  padding: 1.4rem 0.7rem 0.55rem;
  position: relative;
}

.exams-chart-label {
  position: absolute;
  top: 0.4rem;
  inset-inline-start: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
}

.exams-bars {
  height: 100%;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 0.2rem 0.2rem 0;
}

.exams-bar {
  flex: 1 1 auto;
  background: #93c5fd;
  border-radius: 3px 3px 0 0;
  min-height: 8px;
}

.exams-bar.is-hi {
  background: var(--exam-blue);
}

.exams-score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.55rem;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  border-radius: 7px;
  font-size: 0.78rem;
}

.exams-score-row strong {
  color: #15803d;
}

.exams-runall {
  position: absolute;
  right: 1.35rem;
  bottom: 0.85rem;
  border: 1px solid var(--exam-blue);
  background: var(--exam-blue);
  color: #fff;
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.18);
}

.exams-dir {
  border-block: 1px solid var(--exam-border);
}

.exams-dir-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem 1.4rem;
  padding: 2.9rem 1rem;
}

.exams-dir-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.55rem 0.95rem;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--exam-blue);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: background 160ms ease, color 160ms ease;
}

.exams-dir-row a:hover {
  background: #eff6ff;
  color: var(--exam-blue-dark);
}

.exams-dir-row a:focus-visible {
  outline: 2px solid var(--exam-blue);
  outline-offset: 2px;
}

.exams-section[id] {
  scroll-margin-top: 4.25rem;
}

.exams-section {
  padding: 3.4rem 0;
}

.exams-section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: 2.4rem;
  align-items: center;
  padding-inline: 1rem;
}

.exams-section-inner.is-flip {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
}

.exams-section-inner.is-flip .exams-section-copy {
  order: 2;
}

.exams-section-inner.is-wide {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}

.exams-section-copy p + p {
  margin-top: 0.85rem;
}

.exams-section-copy h2 {
  margin: 0 0 1rem;
}

.exams-section-copy.exams-paper {
  padding: 1.25rem 1.35rem;
}

.exams-pipeline {
  position: relative;
  min-height: 420px;
  padding: 28px 24px 36px;
  background-color: #f4f4f5;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid var(--exam-border);
  border-radius: 8px;
  overflow: hidden;
}

.exams-pipeline-edges {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.exams-pipeline-edges .edge-path {
  fill: none;
  stroke: #111;
  stroke-width: 2;
}

.exams-pipeline-nodes {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}

.exams-pipeline-row {
  display: flex;
  justify-content: center;
}

.exams-pipeline-node {
  width: 210px;
  min-height: 52px;
  background: #fff;
  border: 2px solid #111;
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
}

.exams-pipeline-node .node-title {
  font-weight: 700;
  color: var(--exam-text);
}

.exams-pipeline-node .node-type {
  font-size: 0.72rem;
  color: #6b7280;
}

.exams-simple-sheet {
  padding: 1rem 0.9rem 0.95rem;
  border: 1px solid var(--exam-border);
  border-radius: 8px;
}

.exams-simple-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.exams-simple-card {
  padding: 0.85rem 0.8rem 0.9rem;
  min-height: 132px;
}

.exams-simple-card strong {
  display: block;
  font-size: 1.5rem;
  color: var(--exam-blue);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.exams-drawer {
  margin-top: 0.65rem;
  padding: 0.55rem 0.75rem;
  border: 1px dashed #d1d5db;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--exam-muted);
  font-size: 0.8rem;
}

.exams-routes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.exams-scan {
  width: 88px;
  height: 110px;
  border: 1px solid var(--exam-border);
  background:
    repeating-linear-gradient(0deg, #f3f4f6 0 4px, transparent 4px 9px),
    #fff;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  position: relative;
}

.exams-scan::after {
  content: "Scan";
  position: absolute;
  inset: auto 0 0.4rem;
  text-align: center;
  font-size: 0.68rem;
  color: var(--exam-muted);
}

.exams-route-row {
  display: flex;
  gap: 0.45rem;
  width: 100%;
}

.exams-route {
  flex: 1 1 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--exam-blue);
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  border-radius: 7px;
  padding: 0.4rem 0.25rem;
}

.exams-sheet {
  width: 100%;
  min-height: 92px;
  padding: 0.7rem;
}

.exams-group-mock {
  position: relative;
  overflow: hidden;
}

.exams-mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
  background: var(--exam-paper);
  border: 1px solid var(--exam-border);
  border-radius: 10px;
  overflow: hidden;
}

.exams-mini-table th,
.exams-mini-table td {
  padding: 0.42rem 0.55rem;
  border-bottom: 1px solid #f3f4f6;
  text-align: start;
}

.exams-mini-table th {
  color: var(--exam-muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.exams-mini-table tr.is-on td {
  background: #eff6ff;
}

.exams-mini-table .ok {
  color: #15803d;
  font-weight: 700;
}

.exams-expanded {
  margin-top: 0.55rem;
  padding: 0.7rem 0.8rem;
  border-color: #bfdbfe;
  background: #f8fbff;
}

.exams-settings-panel {
  margin-top: 0.7rem;
  padding: 0.8rem;
}

.exams-settings-row {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.8rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.exams-settings-row:last-child {
  border-bottom: 0;
}

.exams-rubric {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.55rem;
}

.exams-rubric span {
  flex: 1 1 0;
  height: 8px;
  border-radius: 99px;
  background: #dbeafe;
}

.exams-rubric span:nth-child(2) { background: #93c5fd; }
.exams-rubric span:nth-child(3) { background: var(--exam-blue); width: 40%; flex: 0.6 1 0; }

.exams-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.exams-toggle i {
  width: 2.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: var(--exam-blue);
  position: relative;
  display: inline-block;
}

.exams-toggle i::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: #fff;
}

.exams-pricing {
  padding: 3.2rem 0 2.4rem;
}

.exams-pricing-copy {
  padding: 1.25rem 1.35rem;
}

.exams-pricing-copy h2 {
  margin: 0 0 0.8rem;
}

.exams-pricing-lead {
  margin: 0;
  font-size: 1.08rem;
}

.exams-credit-reasons {
  margin-top: 1.25rem;
  border-top: 1px solid var(--exam-border);
}

.exams-credit-reason {
  padding: 1rem 0;
}

.exams-credit-reason + .exams-credit-reason {
  border-top: 1px solid var(--exam-border);
}

.exams-credit-reason h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--exam-text);
}

.exams-credit-reason p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
}

.exams-credit-ledger {
  overflow: hidden;
  border-top: 3px solid var(--exam-blue);
}

.exams-credit-ledger-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: #eff6ff;
  border-bottom: 1px solid #bfdbfe;
}

.exams-credit-ledger-head span {
  font-size: 0.82rem;
  color: var(--exam-muted);
}

.exams-credit-ledger-head strong {
  color: var(--exam-blue-dark);
}

.exams-credit-line {
  display: grid;
  grid-template-columns: 0.85fr 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--exam-border);
  font-size: 0.84rem;
}

.exams-credit-line span:nth-child(2) {
  color: var(--exam-muted);
}

.exams-credit-line strong {
  color: #15803d;
  font-size: 0.78rem;
  text-align: end;
}

.exams-credit-ledger-note {
  margin: 0;
  padding: 1rem 1.1rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.exams-credit-ledger-note strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--exam-blue-dark);
  font-size: 1rem;
}

.exams-final-cta {
  padding-top: 0.35rem;
}

.exams-workspace {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 1.4rem 0 2.4rem;
}

.exams-workspace-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0 0.75rem 1rem;
}

.exams-workspace-head h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0;
}

.exams-workspace-lead {
  padding: 0 0.75rem 1rem;
  color: var(--exam-muted);
  max-width: 40rem;
}

.exams-list {
  overflow: hidden;
}

.exams-list-head,
.exams-row {
  display: grid;
  grid-template-columns: minmax(8rem, 0.7fr) minmax(12rem, 1.4fr) 6.2rem 4.2rem minmax(6rem, 0.7fr) 8rem;
  gap: 0.6rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
}

.exams-list-head {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--exam-muted);
  border-bottom: 1px solid var(--exam-border);
}

.exams-row {
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  color: inherit;
  width: 100%;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  text-align: start;
  cursor: pointer;
}

.exams-my-head,
.exams-my-row {
  grid-template-columns: minmax(8rem, 0.7fr) minmax(12rem, 1.4fr) minmax(6rem, 0.7fr) 8rem;
}

.exams-samples-head,
.exams-sample-row {
  grid-template-columns: minmax(12rem, 1.5fr) minmax(8rem, 0.8fr);
}

.exams-sample-row {
  cursor: default;
}

.exams-sample-row:hover {
  background: transparent;
}

.exams-row:hover {
  background: rgba(239, 246, 255, 0.7);
}

.exams-row-title {
  font-weight: 700;
  color: var(--exam-blue);
}

.exams-row-author {
  color: #374151;
}

.exams-row-meta {
  color: var(--exam-muted);
  font-size: 0.86rem;
}

.exams-status {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--exam-border);
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  font-size: 0.74rem;
  color: #374151;
  background: #fff;
}

.exams-status.is-public {
  border-color: #bfdbfe;
  color: var(--exam-blue);
  background: #eff6ff;
}

.exams-empty {
  margin: 0;
  padding: 1.2rem 0.9rem;
  color: var(--exam-muted);
  text-align: center;
}

.exams-login-card,
.exams-onboard,
.exams-chooser {
  width: min(32rem, calc(100% - 1.2rem));
  margin: 2.4rem auto;
  padding: 1.4rem 1.2rem 1.3rem;
  text-align: center;
}

.exams-onboard,
.exams-chooser {
  text-align: start;
}

.exams-onboard h2,
.exams-chooser h2,
.exams-login-card h1 {
  font-size: 1.45rem;
  margin: 0 0 1rem;
}

.exams-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}

.exams-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
}

.exams-field input,
.exams-field select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  background: #fff;
  color: var(--exam-text);
}

.exams-field input:focus,
.exams-field select:focus {
  outline: none;
  border-color: #93c5fd;
}

.exams-onboard-actions,
.exams-chooser-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.exams-error {
  color: #dc2626;
  font-size: 0.88rem;
  margin: 0 0 0.6rem;
}

.exams-samples-note {
  padding: 0 0.75rem 1rem;
  color: var(--exam-muted);
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .exams-page h1 {
    font-size: 2.1rem;
  }

  .exams-page p,
  .exams-lead,
  .exams-section-copy p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .exams-hero,
  .exams-section,
  .exams-pricing {
    padding-left: 0;
    padding-right: 0;
  }

  .exams-dir-row {
    padding: 2.1rem 0.35rem;
    gap: 0.65rem 1rem;
  }

  .exams-dir-row a {
    font-size: 1.12rem;
  }

  .exams-hero-copy,
  .exams-section-inner,
  .exams-workspace-head,
  .exams-workspace-lead {
    padding-inline: 0.75rem;
  }

  .exams-hero-copy.exams-paper,
  .exams-section-copy.exams-paper,
  .exams-pricing-copy {
    padding: 1rem;
  }

  .exams-page p.exams-kvasir-slogan {
    padding: 3.05rem 0.35rem 0;
    font-size: 1.08rem;
  }

  .exams-hero {
    min-height: 0;
    display: block;
    padding: 52px 0;
  }

  .exams-hero-grid,
  .exams-section-inner,
  .exams-section-inner.is-flip,
  .exams-simple-cards {
    grid-template-columns: 1fr;
  }

  .exams-pipeline {
    min-height: 0;
    padding: 20px 12px 24px;
  }

  .exams-pipeline-node {
    width: min(210px, 100%);
  }

  .exams-section-inner.is-flip .exams-section-copy {
    order: 0;
  }

  .exams-hero-mock,
  .exams-hero-workspace {
    min-height: 0;
  }

  .exams-hero-workspace {
    grid-template-columns: 1fr;
  }

  .exams-cta-row .exams-btn-primary,
  .exams-cta-row .exams-btn-secondary {
    width: 100%;
  }

  .exams-list-head {
    display: none;
  }

  .exams-row,
  .exams-samples .exams-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title status"
      "author author"
      "meta meta";
    border-bottom: 0;
    margin: 0.55rem 0.55rem 0;
    border: 1px solid var(--exam-border);
    border-radius: 12px;
    background: var(--exam-paper);
  }

  .exams-row-title { grid-area: title; }
  .exams-row-author { grid-area: author; }
  .exams-row .exams-status { grid-area: status; }
  .exams-row-meta { grid-area: meta; }
  .exams-row > .exams-row-meta:not(:last-child) { display: none; }

  .exams-my-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "author"
      "meta";
  }

  .exams-sample-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "author";
  }

  .exams-runall {
    right: 0.8rem;
    bottom: 0.75rem;
  }
}
