/* Studio Susino — sito minimale, mobile-first */

:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --border: #e8e8e8;
  --accent: #586570;
  --accent-hover: #465058;
  --accent-soft: #eef0f2;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --max: 1080px;
  --header-h: 64px;
  --touch-min: 44px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  min-height: 100dvh;
  padding-bottom: var(--safe-bottom);
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  font: inherit;
  color: inherit;
}

.container {
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: max(1rem, var(--safe-left)) max(1rem, var(--safe-right));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  padding-top: var(--safe-top);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo {
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  height: 38px;
  width: auto;
  display: block;
}

.logo-word {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--accent);
  white-space: nowrap;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-desktop a:not(.btn):hover,
.nav-desktop a:not(.btn)[aria-current="page"] {
  color: var(--text);
  text-decoration: none;
}

.site-header .btn-primary {
  background: var(--accent);
  color: #fff;
}

.site-header .btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch-min);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--accent-soft);
  text-decoration: none;
}

.btn-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn-stack .btn {
  width: 100%;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 0.5rem;
  margin-right: calc(var(--safe-right) * -0.5);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: calc(var(--header-h) + var(--safe-top)) 0 0 0;
  background: var(--surface);
  padding: 1rem 1.5rem calc(1.5rem + var(--safe-bottom));
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  display: flex;
  align-items: center;
  min-height: var(--touch-min);
  padding: 0.65rem 0;
  color: var(--text);
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nav-mobile .btn {
  margin-top: 1rem;
  width: 100%;
}

/* Hero */
.hero {
  padding: 2.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-copy {
  order: 1;
}

.hero-visual {
  order: 0;
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(30, 77, 107, 0.12);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.hero h1 {
  font-size: clamp(1.75rem, 7vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-size: clamp(1.1rem, 3.5vw, 1.35rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.hero-pillars {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-actions .btn {
  width: 100%;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.info-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-list strong {
  color: var(--text);
  font-weight: 500;
}

.info-list a {
  word-break: break-word;
}

/* Intro panel (stile vetrina) */
.intro-panel {
  padding-top: 0;
}

.intro-panel-inner {
  max-width: 40rem;
  margin-inline: auto;
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
}

.intro-panel-inner h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.intro-panel-inner p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.section-header-center {
  text-align: center;
  margin-inline: auto;
}

.section-header-center p {
  margin-inline: auto;
}

.section-cta-link {
  text-align: center;
  margin-top: 1.5rem;
}

/* Service cards con immagine */
.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card-media {
  display: block;
  overflow: hidden;
}

.service-card-media:hover {
  text-decoration: none;
}

.service-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.03);
}

.service-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.service-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.service-card-link {
  font-weight: 500;
  font-size: 0.92rem;
}

.service-card-link:hover {
  text-decoration: none;
}

/* Info strip */
.info-strip-section {
  padding-top: 0;
}

.info-strip {
  display: grid;
  gap: 1rem;
}

.info-strip-item {
  padding: 1.15rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.info-strip-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.info-strip-item span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Sections */
.section {
  padding: 2.5rem 0;
}

.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: clamp(1.35rem, 4vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
}

.grid-3 {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card a {
  word-break: break-word;
}

.placeholder {
  color: var(--text-muted);
  font-style: italic;
  border-left: 3px solid var(--accent-soft);
  padding-left: 1rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 0.95rem;
  min-height: var(--touch-min);
}

.content-spaced {
  margin-top: 2rem;
}

/* FAQ */
.faq {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 1rem;
  font-weight: 600;
  color: var(--accent);
  min-height: var(--touch-min);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details > p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--text-muted);
}

/* Mappa e indicazioni */
.map-embed {
  margin: 1.25rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  line-height: 0;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.map-actions-center {
  justify-content: center;
}

.reach-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
}

.reach-box strong {
  color: var(--text);
}

/* Pulsante WhatsApp fisso */
.wa-float {
  position: fixed;
  right: max(1rem, var(--safe-right));
  bottom: calc(1rem + var(--safe-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  -webkit-tap-highlight-color: transparent;
}

.wa-float:hover {
  background: #1ebe5b;
  color: #fff;
  text-decoration: none;
}

.wa-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: currentColor;
}

@media (max-width: 600px) {
  .wa-float .wa-label {
    display: none;
  }
  .wa-float {
    padding: 0.85rem;
  }
  .wa-float svg {
    width: 28px;
    height: 28px;
  }
}

.directions {
  margin: 1.25rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.directions li {
  margin-bottom: 0.5rem;
}

/* Page layout */
.page-hero {
  padding: 2rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted);
}

/* Hero con illustrazione (pagine-esame) */
.hero-grid { display: flex; gap: 28px; align-items: center; }
.hero-grid .hero-text { flex: 1 1 auto; min-width: 0; }
.hero-figure { flex: 0 0 32%; max-width: 230px; margin: 0; text-align: center; }
.hero-figure img {
  width: 100%; height: auto; border-radius: 12px; background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
}
.hero-credit { display: block; margin-top: 6px; font-size: 11px; color: var(--text-muted); opacity: 0.8; }
.hero-credit a { color: inherit; }
@media (max-width: 760px) {
  .hero-grid { flex-direction: column; align-items: stretch; gap: 18px; }
  .hero-figure { max-width: 200px; align-self: center; order: -1; }
}

.content-block {
  padding: 1.5rem 0 2.5rem;
}

.content-block h2 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.75rem;
  scroll-margin-top: 5.5rem;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block p,
.content-block li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.content-block ul,
.content-block ol {
  padding-left: 1.25rem;
}

.content-block ol {
  padding-left: 1.35rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-top: 0.75rem;
}

.tag-list li {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 0;
}

.tag-list a.exam-link {
  color: inherit;
  font-weight: 500;
}

.tag-list a.exam-link:hover {
  text-decoration: underline;
}

.exam-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.exam-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: 'body thumb';
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.exam-item-body {
  grid-area: body;
  min-width: 0;
}

.exam-item-thumb {
  grid-area: thumb;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--accent-soft);
}

.exam-item-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exam-item-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--text);
}

.exam-item-sintesi {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
  line-height: 1.5;
}

.exam-item-more {
  font-size: 0.92rem;
  font-weight: 500;
}

/* Pagina dettaglio esame */
.exam-hero {
  padding-bottom: 0.5rem;
}

.exam-lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  margin-top: 0.85rem;
  max-width: 44rem;
}

.exam-breadcrumb {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.exam-breadcrumb a {
  color: var(--accent);
}

.exam-blocks {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.exam-block {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1.15rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.exam-block-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}

.exam-block-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.exam-block-text h2 {
  font-size: 1.02rem;
  margin: 0.25rem 0 0.35rem;
  color: var(--text);
}

.exam-block-text p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.exam-cta-card {
  margin-top: 1.75rem;
  padding: 1.5rem 1.25rem;
  background: var(--accent-soft);
  border-radius: calc(var(--radius) + 2px);
  text-align: center;
}

.exam-cta-card h2 {
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}

.exam-cta-card > p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.exam-actions {
  margin-top: 0;
  justify-content: center;
}

.exam-note {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.exam-disclaimer {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  background: var(--accent);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.92;
  margin: 0 auto 1.5rem;
  padding-inline: 0.5rem;
}

.cta-band a:not(.btn) {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--accent);
  width: 100%;
  max-width: 20rem;
}

.cta-band .btn-primary:hover {
  background: var(--accent-soft);
}

/* Footer */
.site-footer {
  padding: 2rem 0 calc(2rem + var(--safe-bottom));
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.footer-grid strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.35rem;
}

.footer-grid a {
  word-break: break-word;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--text);
}

@media (min-width: 480px) {
  :root {
    --header-h: 72px;
  }

  .hero {
    padding: 3.5rem 0 2.5rem;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
  }

  .btn-stack {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn-stack .btn {
    width: auto;
  }

  .cta-band .btn-primary {
    width: auto;
  }

  .logo-mark {
    height: 44px;
  }

  .logo-word {
    font-size: 1.2rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }

  .hero-copy {
    order: 0;
  }

  .hero-visual {
    order: 1;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-list li {
    grid-template-columns: 8.5rem 1fr;
    gap: 0.75rem;
    align-items: start;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 2rem;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-lead {
    font-size: 1.125rem;
    max-width: 42rem;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header p {
    max-width: 38rem;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .card {
    padding: 1.5rem;
  }

  .page-hero {
    padding: 3rem 0 2rem;
  }

  .page-hero p {
    max-width: 40rem;
  }

  .content-block {
    padding: 2rem 0 3.5rem;
  }

  .content-block h2 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
  }

  .cta-band {
    padding: 3rem 0;
  }

  .cta-band p {
    max-width: 32rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
  }

  .site-footer {
    padding: 2.5rem 0;
  }

  .exam-item-thumb {
    width: 96px;
    height: 96px;
  }

  .exam-item-thumb img {
    object-position: center;
  }

  .exam-detail {
    max-width: 48rem;
  }

  .exam-block {
    padding: 1.25rem 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .service-card-media img {
    transition: none;
  }
}
