/* =========================================================
   MTC Error Page Styles
   Standalone (no WordPress/Bricks dependency)
   ========================================================= */

:root {
  --bg-top: #000000;
  --bg-bottom: #000a61;
  --text: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Times New Roman", Times, serif;
  color: var(--text);
  background: linear-gradient(var(--bg-top), var(--bg-bottom));
}

/* Fullscreen centered layout */
.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}

/* Content wrapper */
.card {
  width: 100%;
  max-width: 900px;
  display: grid;
  justify-items: center;
  row-gap: 30px;
  text-align: center;
}

/* Headline + date match your clamp sizes */
.title,
.date {
  font-size: clamp(1.25rem, 0.787rem + 3.7037vw, 3.75rem);
  margin: 0;
  letter-spacing: 0.03em;
}

/* Logo size + 1:1 aspect crop */
.logo {
  width: clamp(170px, 22vw, 263px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.45));
}

/* Small supportive line */
.subtext {
  font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.2rem);
  opacity: 0.9;
  max-width: 50ch;
  margin: 0;
}

.ip-line {
  font-size: clamp(1rem, 0.9rem + 0.8vw, 1.6rem);
  opacity: 0.95;
  margin: 0;
}
