/* Mock interview practice. Reuses the queue page's card and row primitives; only what is specific to
   this page lives here. */

.iv-two {
  display: grid;
  gap: 1.4rem clamp(1.2rem, 1rem + 2vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
}

.iv-two ul { margin: 0.4rem 0 0; padding-left: 1.1rem; line-height: 1.7; }

/* The "will" / "will not" pair is the most important thing on the page, so it gets real emphasis rather
   than a grey footnote. Colour is backed by the words themselves, never carrying the meaning alone. */
.iv-yes,
.iv-no {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.iv-yes { color: var(--brand, #54c5fb); }
.iv-no { color: var(--accent, #fa7c56); }

.iv-fact-grid {
  display: grid;
  gap: 0.9rem clamp(0.9rem, 0.8rem + 1vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  margin-top: 1rem;
}

.iv-fact-grid label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

.iv-fact-grid input { width: 100%; }

.iv-list { margin: 1.2rem 0 1.4rem; padding-left: 1.4rem; }
.iv-list li { margin-bottom: 1.3rem; }

.iv-q {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.iv-list textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  font: inherit;
  line-height: 1.55;
  resize: vertical;
}

.iv-list textarea:focus-visible {
  outline: 2px solid var(--brand, #54c5fb);
  outline-offset: 1px;
}

.iv-summary { font-size: 1.02rem; font-weight: 500; line-height: 1.5; }

.iv-contra { margin: 0.6rem 0 1.2rem; padding-left: 1.1rem; line-height: 1.65; }
.iv-contra li { margin-bottom: 0.8rem; }

.iv-cq { display: block; margin: 0 0 0.2rem; font-weight: 500; opacity: 0.75; }

.iv-notes { margin: 0; padding-left: 1.4rem; }
.iv-notes > li { margin-bottom: 1.1rem; }

.iv-note {
  margin: 0.2rem 0 0;
  padding-left: 0.7rem;
  /* A left rule rather than a coloured pill: these are observations, not warnings, and styling them as
     alarms would imply a verdict the tool deliberately does not give. */
  border-left: 2px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
  line-height: 1.6;
}

.iv-consistency { border-left-color: var(--accent, #fa7c56); }
.iv-directness { border-left-color: var(--brand, #54c5fb); }
