/* Page-local additions for the Computer Diagnostics inner page.
   Everything else (header, buttons, torn edge, hours, footer) is inherited unchanged from
   /v6/styles.css to stay consistent with the approved homepage and sibling service pages. */

.svc-hero {
  background-image:
    linear-gradient(90deg, rgba(9,10,12,0.9) 0%, rgba(9,10,12,0.74) 32%, rgba(9,10,12,0.32) 62%, rgba(9,10,12,0.12) 100%),
    url("assets/hero.png");
  background-position: center 45%;
  background-size: cover;
}

.hero-headline {
  font-size: 56px;
}

.kicker {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7cc3e8;
  margin-bottom: 14px;
}

/* "The readout" -- a new component, doesn't exist on any sibling page yet. A dark scan-tool
   panel with a monospace-feeling symptom/cause row list. Anchored #readout since that's the
   hero's secondary CTA target. */
.readout {
  padding: 80px var(--gutter) 96px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  background: #ffffff;
  color: var(--color-deep-blue);
}

.readout-heading h2 {
  font-family: var(--font-display);
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-deep-blue);
  margin-bottom: 16px;
}

.readout-heading p {
  color: #33454e;
  font-size: 18px;
  line-height: 1.6;
}

.readout-panel {
  border: 1px solid #d8e1e6;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}

.readout-row {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 32px;
  padding: 24px 32px;
  border-bottom: 1px solid #d8e1e6;
  font-family: var(--font-condensed);
}

.readout-row:last-child {
  border-bottom: 0;
}

.readout-row-head {
  background: var(--color-ice-blue);
  color: var(--color-deep-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-block: 16px;
}

.readout-symptom {
  color: #b45309;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.readout-row:not(.readout-row-head) span:last-child {
  color: #33454e;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.readout-cta {
  text-align: center;
}

.readout-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3782ad 0%, #245a80 100%);
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

/* real-photo interrupt section, same component as mobile-mechanical's */
.photo-interrupt {
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  background: var(--color-ice-blue);
}

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

.photo-interrupt-copy {
  padding: 96px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  color: var(--color-deep-blue);
}

.photo-interrupt-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
}

.photo-interrupt-copy p {
  color: #33454e;
  font-size: 18px;
  line-height: 1.6;
  max-width: 34rem;
}

.photo-interrupt-copy a {
  color: var(--color-diesel-blue);
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .photo-interrupt { grid-template-columns: 1fr; }
  .photo-interrupt img { max-height: 420px; }
  .readout-row { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 760px) {
  .readout { padding-block: 72px; }
  .readout-row { padding: 20px 20px; }
  .photo-interrupt-copy { padding: 56px 24px; }
}
