/* ==============================================
   Memed DocVerify – Pixel-Perfect Replica
   Font: Plus Jakarta Sans
   Colors: HSL system matching the original
   ============================================== */

/* --- CSS Variables (from original site) --- */
:root {
  --background: 0 0% 100%;
  --foreground: 225 25% 12%;
  --card: 0 0% 100%;
  --card-foreground: 225 25% 12%;
  --primary: 243 75% 59%;
  --primary-foreground: 0 0% 100%;
  --secondary: 243 40% 96%;
  --muted: 220 14% 96%;
  --muted-foreground: 220 9% 46%;
  --accent: 30 95% 55%;
  --accent-foreground: 0 0% 100%;
  --border: 220 13% 91%;
  --input: 220 13% 91%;
  --ring: 243 75% 59%;
  --radius: 0.75rem;
  --success: 142 71% 45%;
  --success-foreground: 0 0% 100%;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: hsl(var(--border));
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #f8fafc;
  color: hsl(var(--foreground));
  line-height: 1.5;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-size: inherit;
  font-weight: inherit;
}

img, svg, canvas {
  display: block;
  vertical-align: middle;
}

.hidden {
  display: none !important;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==============================================
   NAVBAR (Header)
   ============================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1100px;
}

.navbar-logo {
  font-size: 1.875rem;
  font-weight: 800;
  color: hsl(var(--primary));
  letter-spacing: -0.03em;
  line-height: 1;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.navbar-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  background: none;
  border: none;
  padding: 0;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.navbar-link:hover {
  color: hsl(var(--primary));
}

.dropdown-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
  opacity: 0.7;
}

.navbar-dropdown {
  position: relative;
}

.dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  padding: 4px 0;
  z-index: 200;
  animation: fadeSlide 0.15s ease;
}

.dropdown-panel.open {
  display: block;
}

.dropdown-panel a {
  display: block;
  padding: 8px 12px;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  transition: background 0.1s;
}

.dropdown-panel a:hover {
  background: hsl(var(--muted));
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}

.navbar-cta:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  padding: 4px;
}

.navbar-hamburger svg {
  width: 24px;
  height: 24px;
}

/* ==============================================
   PAGE MAIN
   ============================================== */
.page-main {
  padding: 2.5rem 0 3rem;
}

/* Loading */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  gap: 1rem;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid hsl(var(--border));
  border-top-color: hsl(var(--primary));
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* Error */
.error-state {
  text-align: center;
  padding: 5rem 0;
}

.error-icon-wrap {
  margin-bottom: 1rem;
}

.error-lucide {
  width: 48px;
  height: 48px;
  color: hsl(0 84% 60%);
  margin: 0 auto;
}

.error-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.error-desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* ==============================================
   VALIDITY BANNER
   ============================================== */
.validity-banner {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.check-icon {
  width: 40px;
  height: 40px;
  color: #16a34a;
  flex-shrink: 0;
}

.validity-body {
  flex: 1;
}

.validity-heading-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.validity-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  line-height: 1.25;
}

.validity-badge {
  display: inline-block;
  background: transparent;
  color: #15803d;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  letter-spacing: 0.02em;
  border: 1px solid #16a34a;
}

.validity-sub {
  color: #374151;
  font-size: 0.875rem;
  margin-top: 4px;
}

.validity-verified-line {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #15803d;
}

.verified-shield {
  width: 16px;
  height: 16px;
}

.verified-domain {
  color: #15803d;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==============================================
   META ROW (Token / Code / Date)
   ============================================== */
.meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.meta-box {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.02);
}

.meta-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.meta-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.token-style {
  color: hsl(var(--primary));
}

/* ==============================================
   CARDS
   ============================================== */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.02);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1.25rem;
}

.card-title-icon {
  width: 18px;
  height: 18px;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

/* --- Split Row (2-col layout) --- */
.split-row {
  display: grid;
  grid-template-columns: 1.50fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

/* When a split-row has only one child, make it full-width */
.split-row:has(> :only-child) {
  grid-template-columns: 1fr;
}

/* --- Fields --- */
.field-grid {
  display: grid;
  gap: 1rem;
}

.field-grid--2col {
  grid-template-columns: 1.2fr 0.8fr;
}

.field-grid--3col {
  grid-template-columns: 1.5fr 1fr 1fr;
}

.field-label {
  display: block;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 4px;
}

.field-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}

/* --- Patient Card --- */
.patient-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* --- QR Card --- */
.qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.qr-box {
  background: #f8fafc;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-box canvas,
.qr-box img,
.qr-box .qr-holder,
.qr-box .qr-holder img,
.qr-box .qr-holder canvas {
  width: 150px !important;
  height: 150px !important;
  max-width: 100%;
  display: block;
}
.qr-box .qr-holder img,
.qr-box .qr-holder canvas {
  margin: 0 auto;
}
.pdf-iframe-wrap,
.pdf-page-wrapper iframe,
.pdf-official-frame,
.pdf-official-embed,
.pdf-official-iframe {
  width: 100%;
  border: 0;
  display: block;
  background: #525659;
}

/* ═══ PDF OFICIAL A4 COMPLETO — PDF.js canvas + fallback ═══ */
.pdf-viewer-container.pdf-viewer--live,
.pdf-viewer--live {
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
}
.pdf-workspace--live {
  display: block !important;
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
  min-height: 0 !important;
}
.pdf-page-wrapper--live {
  display: block !important;
  overflow: auto !important;
  max-height: none !important;
  height: auto !important;
  padding: 0 !important;
  -webkit-overflow-scrolling: touch;
}
.pdf-a4-stage {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  box-sizing: border-box;
}
.pdf-canvas-sheet {
  width: 100%;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  line-height: 0;
}
.pdf-page-canvas {
  width: 100% !important;
  height: auto !important;
  display: block;
  background: #fff;
  -webkit-user-select: none;
  user-select: none;
}
.pdf-extra-pages {
  width: 100%;
  margin-top: 12px;
}
/* Altura real A4 — NUNCA limitar a vh */
.pdf-official-frame,
.pdf-official-embed,
.pdf-official-iframe {
  width: 100% !important;
  max-height: none !important;
  border: 0;
  border-radius: 4px;
}
.pdf-open-fallback .btn-open-pdf:hover {
  filter: brightness(1.08);
}
@media (max-width: 640px) {
  .pdf-a4-stage {
    padding: 10px 8px 20px !important;
  }
  .pdf-open-fallback a,
  .pdf-open-fallback button {
    width: 100%;
    justify-content: center;
  }
}
.pdf-status.ok {
  color: #059669;
  font-weight: 600;
}

.qr-hint {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 8px;
}

/* --- Establishment --- */
.establishment-name {
  font-size: 1rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

/* --- System Card --- */
.system-card {
  display: flex;
  flex-direction: column;
}

.system-emission {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 4px;
}

.system-cal-icon {
  width: 14px;
  height: 14px;
  color: hsl(var(--primary));
}

.btn-verify-another {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  padding: 0.6rem 1rem;
  background: transparent;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  transition: background 0.15s, border-color 0.15s;
  margin-top: 1rem;
}

.btn-verify-another:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* ==============================================
   DETAILS GRID
   ============================================== */
.details-card {
  margin-bottom: 1.25rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.detail-box {
  background: #f8fafc;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.detail-box--accent {
  background: hsl(var(--primary) / 0.04);
  border-color: hsl(var(--primary) / 0.15);
}

.detail-box--accent .detail-big {
  color: hsl(var(--primary));
}

.detail-big {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 2px;
  line-height: 1.1;
}

.detail-sub {
  display: block;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.3;
  font-weight: 500;
}

/* ==============================================
   PDF VIEW FRAME REPLICA
   ============================================== */
.pdf-card {
  margin-bottom: 2rem;
}

.pdf-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.btn-download-pdf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: hsl(var(--primary));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: 9999px;
  transition: filter 0.15s, transform 0.15s;
}

.btn-download-pdf:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

/* PDF Viewer Frame */
.pdf-viewer-container {
  display: flex;
  flex-direction: column;
  border: 1px solid #cbd5e1;
  border-radius: calc(var(--radius) - 2px);
  /* overflow:hidden cortava a página A4 no iframe nativo */
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* Toolbar */
.pdf-toolbar {
  background-color: #323639;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  color: #f1f5f9;
  user-select: none;
}

.pdf-toolbar-left, .pdf-toolbar-center, .pdf-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdf-toolbar-btn {
  background: transparent;
  border: none;
  color: #e2e8f0;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.pdf-toolbar-btn:hover {
  background-color: rgba(255,255,255, 0.15);
}

.pdf-page-indicator {
  font-size: 0.8rem;
  color: #cbd5e1;
}

.pdf-zoom-text {
  font-size: 0.8rem;
  font-weight: 500;
  min-width: 36px;
  text-align: center;
}

.pdf-divider {
  width: 1px;
  height: 20px;
  background-color: #4b5563;
}

/* Workspace */
.pdf-workspace {
  background-color: #525659;
  min-height: 420px;
  display: flex;
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  max-height: none;
}

/* Sidebar Thumbnail */
.pdf-sidebar {
  width: 140px;
  background-color: #3c4043;
  border-right: 1px solid #202124;
  padding: 1.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.pdf-thumbnail {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.pdf-thumbnail-sheet {
  width: 72px;
  height: 100px;
  background-color: white;
  border: 1px solid #bdc1c6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}

.pdf-thumbnail.active .pdf-thumbnail-sheet {
  border: 2px solid #8ab4f8;
}

.pdf-thumbnail-number {
  font-size: 0.75rem;
  color: #e8eaed;
  margin-top: 4px;
}

.mini-cert {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mini-logo {
  height: 4px;
  width: 12px;
  background-color: #16a34a;
}

.mini-line {
  height: 2px;
  width: 100%;
  background-color: #e2e8f0;
}

.mini-line.short {
  width: 60%;
}

/* Main PDF Page Area */
.pdf-page-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  overflow-y: auto;
  max-height: none;
}

/* Authentic Medical Certificate Sheet */
.pdf-page-sheet {
  background-color: white;
  width: 100%;
  max-width: 680px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  padding: 3rem;
  color: #1e293b;
  position: relative;
  font-family: Arial, sans-serif;
  line-height: 1.4;
}

/* Cert Header */
.cert-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cert-logo-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cert-logo-main {
  font-size: 1.25rem;
  font-weight: 800;
  color: #047857;
  letter-spacing: -0.5px;
}

.cert-logo-sub {
  font-size: 0.5rem;
  font-weight: 700;
  color: #064e3b;
  letter-spacing: 0.5px;
}

.cert-header-address {
  font-size: 0.65rem;
  color: #64748b;
  max-width: 240px;
  text-align: center;
  margin-top: 4px;
  line-height: 1.3;
}

.cert-header-qr {
  width: 60px;
  height: 60px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 2px;
}

.cert-qr-canvas {
  width: 100% !important;
  height: 100% !important;
}

/* Divider double line */
.cert-divider-line {
  height: 3px;
  border-top: 2px solid #0f172a;
  border-bottom: 1px solid #0f172a;
  margin-bottom: 2rem;
}

.cert-title {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
}

/* Cert Body */
.cert-body {
  font-size: 0.85rem;
  color: #334155;
  margin-bottom: 4rem;
}

.cert-recipient {
  margin-bottom: 1.5rem;
}

.cert-text {
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cert-cid {
  margin-bottom: 2.5rem;
}

.cert-date-location {
  text-align: right;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

/* Cert Footer */
.cert-footer {
  margin-top: auto;
}

.cert-footer-line {
  border-top: 1px solid #94a3b8;
  margin-bottom: 1.25rem;
}

.cert-footer-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.cert-footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cert-footer-text {
  font-size: 0.45rem;
  color: #64748b;
  line-height: 1.3;
  margin-top: 6px;
}

.cert-footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-sign-info {
  text-align: right;
  font-size: 0.55rem;
  color: #475569;
  max-width: 180px;
  line-height: 1.3;
}

.cert-doctor-name {
  font-weight: 700;
  color: #0f172a;
}

.cert-footer-qr {
  width: 50px;
  height: 50px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 2px;
}

.pdf-caption {
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  border-top: 1px solid hsl(var(--border));
}

.footer-links-area {
  background: hsl(var(--card));
  padding: 3rem 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}

.footer-col h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: hsl(var(--primary));
}

.footer-brand-strip {
  background: linear-gradient(135deg, hsl(243 75% 42%), hsl(243 75% 59%), hsl(260 70% 60%));
  padding: 2.5rem 0;
  text-align: center;
}

.footer-brand-name {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 900px) {
  .navbar-nav {
    display: none;
  }
  .navbar-hamburger {
    display: block;
  }
  .meta-row {
    grid-template-columns: 1fr;
  }
  .split-row {
    grid-template-columns: 1fr;
  }
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
  .field-grid--3col {
    grid-template-columns: 1fr;
  }
  .validity-banner {
    padding: 1.5rem;
  }
  .validity-heading {
    font-size: 1.25rem;
  }
  .pdf-sidebar {
    display: none;
  }
  .pdf-page-sheet {
    padding: 1.5rem;
  }
  .cert-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .details-grid {
    grid-template-columns: 1fr 1fr;
  }
  .validity-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .validity-heading-row {
    justify-content: center;
  }
  .validity-verified-line {
    justify-content: center;
  }
  .field-grid--2col {
    grid-template-columns: 1fr;
  }
  .meta-row {
    grid-template-columns: 1fr;
  }
}
