:root {
  --navy: #003c71;
  --navy-deep: #022d55;
  --cyan: #00aab5;
  --orange: #f47920;
  --orange-deep: #e6721e;
  --ink: #1b2732;
  --muted: #62717d;
  --line: #d7e0e6;
  --soft: #f3f7f9;
  --white: #fff;
  --success: #16845b;
  --success-soft: #eaf7f1;
  --danger: #b64343;
  --shadow: 0 24px 62px rgba(0, 39, 75, .22);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--soft);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.query-container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-deep);
  transform: translateY(-160%);
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.query-header {
  position: relative;
  z-index: 20;
  min-height: 88px;
  border-bottom: 1px solid rgba(215, 224, 230, .9);
  background: var(--white);
  box-shadow: 0 3px 16px rgba(0, 45, 85, .07);
}

.query-header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.query-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.query-brand img {
  width: 116px;
  height: 62px;
  flex: 0 0 116px;
  object-fit: contain;
}

.query-brand-copy {
  min-width: 0;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.query-brand-copy strong,
.query-brand-copy span {
  display: block;
}

.query-brand-copy strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}

.query-brand-copy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.query-header-status {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #496070;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.query-header-status > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(22, 132, 91, .11);
}

.verification-hero {
  position: relative;
  min-height: 676px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.verification-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 6px;
  background: var(--orange);
}

.verification-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56%;
  background:
    linear-gradient(90deg, var(--navy-deep) 0%, rgba(2, 45, 85, .72) 14%, rgba(2, 45, 85, .06) 55%),
    url("../images/hero-smart-factory.jpg") center / cover no-repeat;
}

.verification-hero-inner {
  position: relative;
  z-index: 4;
  min-height: 676px;
  display: grid;
  grid-template-columns: minmax(0, 570px) minmax(180px, 1fr);
  align-items: center;
}

.verification-copy {
  padding: 54px 0 40px;
}

.query-kicker,
.section-kicker {
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.verification-copy h1 {
  max-width: 530px;
  margin: 16px 0 18px;
  font-size: clamp(40px, 4.25vw, 64px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.verification-lead {
  max-width: 535px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.72;
}

.verification-scope {
  margin-top: 23px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.verification-scope span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.query-card {
  width: min(560px, 100%);
  margin-top: 34px;
  overflow: hidden;
  color: var(--ink);
  border-top: 5px solid var(--orange);
  background: var(--white);
  box-shadow: var(--shadow);
}

.query-card-heading {
  min-height: 84px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.query-card-mark {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
}

.query-card-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.query-card-heading p,
.query-card-heading h2 {
  margin: 0;
}

.query-card-heading p {
  color: var(--cyan);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.query-card-heading h2 {
  margin-top: 3px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.28;
}

.query-form {
  padding: 22px;
  display: grid;
  gap: 17px;
}

.query-field {
  min-width: 0;
  display: block;
}

.query-field-label {
  display: block;
  margin-bottom: 7px;
  color: #32495a;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.query-control {
  position: relative;
  min-width: 0;
  display: block;
}

.query-control svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 20px;
  height: 20px;
  color: #6f8290;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-50%);
  pointer-events: none;
}

.query-control input {
  width: 100%;
  height: 50px;
  padding: 0 15px 0 47px;
  border: 1px solid #cbd7df;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: #fbfdfe;
  font-size: 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.query-control input::placeholder {
  color: #929fa8;
}

.query-control input:hover {
  border-color: #9eb1bd;
}

.query-control input:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 170, 181, .12);
}

.query-submit {
  min-height: 52px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--orange);
  border-radius: 0;
  color: var(--white);
  background: var(--orange);
  font-size: 14px;
  font-weight: 800;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.query-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.query-submit:hover {
  border-color: var(--orange-deep);
  background: var(--orange-deep);
  box-shadow: 0 10px 22px rgba(244, 121, 32, .24);
  transform: translateY(-1px);
}

.query-submit:focus-visible,
.record-action:focus-visible,
.query-brand:focus-visible {
  outline: 3px solid rgba(0, 170, 181, .35);
  outline-offset: 3px;
}

.query-card-note {
  margin: 0;
  padding: 12px 22px 13px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--soft);
  font-size: 11px;
  line-height: 1.55;
}

.query-card-note > span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: grid;
  place-items: center;
  border: 1px solid #9fb1bd;
  border-radius: 50%;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
}

.query-assurance {
  padding: 66px 0 70px;
  background: var(--white);
}

.query-assurance-inner {
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
  gap: 70px;
  align-items: start;
}

.section-kicker {
  color: var(--orange);
}

.assurance-heading h2 {
  max-width: 410px;
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.14;
  letter-spacing: -.025em;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.assurance-item {
  min-width: 0;
  min-height: 216px;
  padding: 25px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.assurance-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: #edf8f9;
}

.assurance-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.assurance-item h3 {
  margin: 20px 0 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
}

.assurance-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.query-footer {
  color: rgba(255, 255, 255, .72);
  background: var(--navy-deep);
}

.query-footer-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.query-footer-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.query-footer-brand img {
  width: 78px;
  height: 42px;
  padding: 5px 7px;
  object-fit: contain;
  background: var(--white);
}

.query-footer-brand span,
.query-footer p {
  font-size: 11px;
  line-height: 1.5;
}

.query-footer p {
  margin: 0;
  text-align: right;
}

/* Result page */
.query-result-page {
  background: var(--soft);
}

.result-hero {
  position: relative;
  min-height: 246px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 45, 85, .97) 0%, rgba(0, 60, 113, .9) 48%, rgba(0, 60, 113, .52) 100%),
    url("../images/hero-smart-factory.jpg") center 42% / cover no-repeat;
}

.result-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--orange);
}

.result-hero-inner {
  min-height: 246px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-hero .query-kicker {
  color: #55d3d9;
}

.result-hero h1 {
  margin: 12px 0 8px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.result-hero p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .79);
  font-size: 14px;
  line-height: 1.65;
}

.result-main {
  padding: 42px 0 64px;
}

.verification-record {
  width: min(1060px, 100%);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 45, 85, .1);
}

.record-status {
  min-height: 96px;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  border-bottom: 1px solid var(--line);
}

.record-status-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--success);
  border: 1px solid rgba(22, 132, 91, .28);
  background: var(--success-soft);
}

.record-status-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.record-eyebrow {
  margin: 0 0 3px;
  color: var(--cyan);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.record-status h2 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.3;
}

.record-badge {
  min-width: 108px;
  min-height: 38px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  border: 1px solid var(--success);
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.record-subject {
  min-height: 206px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, #f2f8fa 0%, #fbfcfd 72%),
    var(--soft);
}

.record-entity-icon {
  width: 104px;
  height: 104px;
  flex: 0 0 104px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border: 1px solid #cbdbe3;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 45, 85, .08);
}

.record-entity-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.record-photo {
  width: 124px;
  height: 156px;
  flex: 0 0 124px;
  margin: 0;
  overflow: hidden;
  border: 5px solid var(--white);
  background: var(--white);
  box-shadow: 0 0 0 1px #c5d2da, 0 12px 26px rgba(0, 45, 85, .13);
}

.record-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.record-subject-copy {
  min-width: 0;
}

.record-subject-type {
  margin: 0 0 9px;
  color: var(--orange);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.record-subject h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
  letter-spacing: -.02em;
  overflow-wrap: anywhere;
}

.record-subject-number {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.record-subject-number strong {
  display: inline-block;
  margin-left: 8px;
  color: #29475c;
  font-size: 14px;
  letter-spacing: .025em;
}

.record-content {
  padding: 0 34px 34px;
}

.record-section {
  padding-top: 30px;
}

.record-section + .record-section {
  margin-top: 4px;
  border-top: 1px solid var(--line);
}

.record-section-heading {
  margin-bottom: 18px;
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.record-section-heading > span {
  width: 4px;
  flex: 0 0 4px;
  background: var(--orange);
}

.record-section-heading p,
.record-section-heading h3 {
  margin: 0;
}

.record-section-heading p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.record-section-heading h3 {
  margin-top: 3px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.record-row {
  min-width: 0;
  min-height: 70px;
  padding: 13px 16px;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.record-row--wide {
  grid-column: 1 / -1;
}

.record-label {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.record-value {
  min-width: 0;
  color: #243c4e;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.record-actions {
  min-height: 82px;
  padding: 17px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.record-actions-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.record-action {
  min-height: 42px;
  padding: 10px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #bdccd5;
  border-radius: 0;
  color: var(--navy);
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.record-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.record-action:hover {
  color: var(--orange-deep);
  border-color: var(--orange);
}

.record-action--primary {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

.record-action--primary:hover {
  color: var(--white);
  border-color: var(--orange-deep);
  background: var(--orange-deep);
}

.record-note {
  max-width: 480px;
  margin: 0;
  color: #73818b;
  font-size: 10px;
  line-height: 1.55;
  text-align: right;
}

.result-assurance {
  width: min(1060px, 100%);
  margin: 16px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #59707e;
  border: 1px solid #d1e2e7;
  background: #eef7f8;
}

.result-assurance-mark {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border: 1px solid #94b5c0;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.result-assurance p {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
}

.verification-record--empty {
  max-width: 820px;
}

.no-result-body {
  padding: 62px 36px 58px;
  text-align: center;
}

.no-result-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  color: var(--danger);
  border: 1px solid rgba(182, 67, 67, .25);
  background: rgba(182, 67, 67, .07);
}

.no-result-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.no-result-body h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.25;
}

.no-result-body > p:not(.record-eyebrow) {
  max-width: 610px;
  margin: 13px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.no-result-query {
  max-width: 650px;
  margin: 28px auto 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  text-align: left;
}

.no-result-query > div {
  min-width: 0;
  min-height: 74px;
  padding: 13px 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.no-result-query span,
.no-result-query strong {
  display: block;
}

.no-result-query span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.no-result-query strong {
  color: #2b4659;
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

@media (max-width: 1080px) {
  .verification-hero-image {
    width: 62%;
    opacity: .7;
  }

  .verification-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2, 45, 85, .28);
  }

  .verification-hero-inner {
    grid-template-columns: minmax(0, 590px) minmax(80px, 1fr);
  }

  .query-assurance-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .assurance-heading h2 {
    max-width: 660px;
  }
}

@media (max-width: 860px) {
  .query-container {
    width: min(100% - 32px, var(--container));
  }

  .verification-hero {
    min-height: 0;
    background:
      linear-gradient(rgba(2, 45, 85, .9), rgba(2, 45, 85, .94)),
      url("../images/hero-smart-factory.jpg") 67% center / cover no-repeat;
  }

  .verification-hero-image {
    display: none;
  }

  .verification-hero-inner {
    min-height: 0;
    padding: 56px 0 64px;
    display: block;
  }

  .verification-copy {
    max-width: 650px;
    padding: 0;
  }

  .query-card {
    margin-top: 30px;
  }

  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .assurance-item {
    min-height: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 17px;
  }

  .assurance-item h3 {
    margin-top: 0;
  }

  .record-grid {
    grid-template-columns: 1fr;
  }

  .record-row--wide {
    grid-column: auto;
  }

  .record-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .record-note {
    max-width: 100%;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .query-header,
  .query-header-inner {
    min-height: 76px;
  }

  .query-brand img {
    width: 92px;
    height: 50px;
    flex-basis: 92px;
  }

  .query-brand-copy {
    padding-left: 12px;
  }

  .query-brand-copy strong {
    font-size: 14px;
  }

  .query-brand-copy span {
    font-size: 9px;
  }

  .query-header-status {
    display: none;
  }

  .verification-hero-inner {
    padding: 44px 0 54px;
  }

  .verification-copy h1 {
    font-size: clamp(36px, 11vw, 49px);
  }

  .verification-lead {
    font-size: 15px;
  }

  .query-card-heading,
  .query-form,
  .query-card-note {
    padding-right: 18px;
    padding-left: 18px;
  }

  .query-card-heading {
    min-height: 80px;
  }

  .query-assurance {
    padding: 48px 0 52px;
  }

  .query-footer-inner {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .query-footer p {
    text-align: left;
  }

  .result-hero,
  .result-hero-inner {
    min-height: 210px;
  }

  .result-main {
    padding: 26px 0 42px;
  }

  .record-status {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 17px 19px;
  }

  .record-status-icon {
    width: 48px;
    height: 48px;
  }

  .record-status h2 {
    font-size: 18px;
  }

  .record-badge {
    grid-column: 2;
    width: fit-content;
    min-width: 92px;
    min-height: 34px;
    padding: 7px 13px;
  }

  .record-subject {
    min-height: 0;
    padding: 25px 20px;
    align-items: flex-start;
    gap: 20px;
  }

  .record-photo {
    width: 96px;
    height: 122px;
    flex-basis: 96px;
  }

  .record-entity-icon {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
  }

  .record-entity-icon svg {
    width: 44px;
    height: 44px;
  }

  .record-subject h1 {
    font-size: 26px;
  }

  .record-subject-number strong {
    display: block;
    margin: 4px 0 0;
  }

  .record-content {
    padding: 0 20px 24px;
  }

  .record-row {
    grid-template-columns: 125px minmax(0, 1fr);
  }

  .record-actions {
    padding: 16px 20px;
  }

  .no-result-body {
    padding: 45px 20px 42px;
  }

  .no-result-query {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .query-container {
    width: min(100% - 24px, var(--container));
  }

  .query-brand-copy {
    display: none;
  }

  .query-brand img {
    width: 104px;
    height: 54px;
    flex-basis: 104px;
  }

  .verification-scope {
    gap: 6px;
  }

  .verification-scope span {
    padding: 6px 8px;
    font-size: 9px;
  }

  .query-card-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .query-card-heading h2 {
    font-size: 17px;
  }

  .query-form {
    padding-top: 19px;
  }

  .assurance-item {
    padding: 21px 18px;
  }

  .query-footer-brand span {
    font-size: 10px;
  }

  .record-subject {
    flex-direction: column;
  }

  .record-photo {
    width: 90px;
    height: 114px;
    flex-basis: 114px;
  }

  .record-row {
    min-height: 0;
    padding: 12px 14px;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .record-actions-group {
    width: 100%;
  }

  .record-action {
    flex: 1 1 auto;
  }
}

@media print {
  .query-header,
  .result-hero,
  .record-actions,
  .result-assurance,
  .query-footer {
    display: none !important;
  }

  html,
  body,
  .query-result-page {
    background: var(--white) !important;
  }

  .result-main {
    width: 100%;
    padding: 0;
  }

  .verification-record {
    border: 1px solid #9eacb5;
    box-shadow: none;
  }
}
