/* =========================
   TESTING PAGE
========================= */
.testing-placeholder {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--mist);
}

.testing-card {
  max-width: 760px;
  width: 100%;
  background: var(--white);
  padding: 72px 64px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 8px 32px rgba(13, 31, 60, 0.07);
}

.testing-icon {
  width: 56px;
  height: 56px;
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 22px;
  color: var(--accent);
}

.testing-card h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.testing-intro {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.7;
}

.testing-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 14px;
}

.testing-card p:last-of-type {
  margin-bottom: 0;
}

.testing-note {
  margin-top: 40px;
  padding: 20px 28px;
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testing-note i {
  color: var(--accent);
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .testing-card {
    padding: 48px 28px;
  }
}

@media (max-width: 480px) {
  .testing-card {
    padding: 36px 20px;
  }
}
