* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
  --samia-navbar-height: 64px;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: calc(15px + 0.390625vw);
  font-weight: 400;
  min-height: 100vh;
  color: black;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  padding-top: calc(var(--samia-navbar-height) + 20px);
}
.body-background-staging     {background: #fff;}
.body-background-development {background: #fff;}

.samia-navbar {
  min-height: var(--samia-navbar-height);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 1030;
}
.samia-navbar .logo-small img {width: 110px;}
.samia-tool-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0083B0;
  padding: 2px 8px;
  border-left: 1px solid #cbd5e1;
  margin-left: 4px;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
    color: #333;
    font-size: 26px;
    margin-bottom: 10px;
}
/* Utility classes - ala Tailwind css */
.text-justify{text-align:justify !important;}

.fs-7 {font-size: 0.875rem !important;} /* subtle step down (like .small) */
.fs-8 {font-size: 0.75rem !important;} /* clearly smaller */
.fs-9 {font-size: 0.625rem !important;} /* very small (labels, metadata) */

.page-container {
    max-width: 900px;
    width: 100%;
    animation: fadeIn 0.6s ease-out;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    margin-top: 0;
}

.logo-small {display: flex; justify-content: left;}
.logo-small img {width: 125px;}
.logo-large {display: flex; justify-content: center;}
.logo-large img {width: 250px;}

.logo-small {transition: transform 0.3s ease, filter 0.3s ease;}
.logo-link:hover .logo-small {
    transform: translateY(-3px) scale(1.05); /* slightly lift and enlarge */
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2)); /* optional shadow for depth */
}

.main {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumbs-bar {
    width: 100%;
    max-width: 900px;
    margin-top: -8px;
    margin-bottom: 8px;
}
.sales-page .breadcrumbs-bar,
.user-page .breadcrumbs-bar {
    max-width: 1144px;
}
.breadcrumbs-bar .breadcrumb {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    margin-bottom: 0;
    background-color: transparent;
}
.breadcrumbs-bar .breadcrumb a,
.breadcrumbs-bar .breadcrumb .breadcrumb-item.active {
    color: #64748b;
}
.breadcrumbs-bar .breadcrumb i {
    font-size: 0.85rem;
}
.welcome {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .06);
}
.welcome-title {
    max-width: 580px;
    margin: 20px auto;
}

/* App sidebar layout (sales + user profile): sidebar sits next to the page-container */
.app-shell {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 1144px;
    align-items: flex-start;
}
.app-shell > .page-container {
    flex: 1 1 auto;
    min-width: 0;
}
.sales-sidebar-column,
.user-sidebar-column {
    flex: 0 0 220px;
}
.sales-sidebar,
.user-sidebar,
.cdss-sidebar {
    position: sticky;
    top: calc(var(--samia-navbar-height) + 24px);
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 2px 6px lightgray;
    padding: 12px;
}
.sales-sidebar-nav .sidebar-section-title,
.user-sidebar-nav .sidebar-section-title,
.cdss-sidebar-nav .sidebar-section-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin: 14px 12px 4px;
    padding: 0;
}
.sales-sidebar-nav .sidebar-section-title:first-child,
.user-sidebar-nav .sidebar-section-title:first-child,
.cdss-sidebar-nav .sidebar-section-title:first-child {
    margin-top: 2px;
}
/* Collapsible section toggle (Bootstrap sidebar pattern) */
.sales-sidebar-nav .section-toggle,
.cdss-sidebar-nav .section-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 12px;
    margin-top: 6px;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: #334155;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: left;
    cursor: pointer;
}
.sales-sidebar-nav .section-toggle:first-child,
.cdss-sidebar-nav .section-toggle:first-child {margin-top: 0;}
.sales-sidebar-nav .section-toggle:hover,
.cdss-sidebar-nav .section-toggle:hover {background: #f1f5f9; color: #0083B0;}
.sales-sidebar-nav .section-toggle:focus,
.cdss-sidebar-nav .section-toggle:focus {outline: none; box-shadow: 0 0 0 2px rgba(0, 131, 176, 0.2);}
.sales-sidebar-nav .section-chevron,
.cdss-sidebar-nav .section-chevron {
    font-size: 0.7rem;
    color: #94a3b8;
    transition: transform 0.2s ease;
}
.sales-sidebar-nav .section-toggle[aria-expanded="true"] .section-chevron,
.cdss-sidebar-nav .section-toggle[aria-expanded="true"] .section-chevron {
    transform: rotate(90deg);
    color: #334155;
}
.sales-sidebar-nav .collapse .list-group-item,
.sales-sidebar-nav .collapsing .list-group-item,
.cdss-sidebar-nav .collapse .list-group-item,
.cdss-sidebar-nav .collapsing .list-group-item {
    padding-left: 22px;
}
.sales-sidebar-nav .list-group-item,
.user-sidebar-nav .list-group-item,
.cdss-sidebar-nav .list-group-item {
    border: 0;
    border-radius: 8px;
    padding: 10px 12px;
    color: #334155;
    font-size: 0.9rem;
    background: transparent;
}
.sales-sidebar-nav .list-group-item i,
.user-sidebar-nav .list-group-item i,
.cdss-sidebar-nav .list-group-item i {
    color: #64748b;
    font-size: 1rem;
}
.sales-sidebar-nav .list-group-item:hover,
.user-sidebar-nav .list-group-item:hover,
.cdss-sidebar-nav .list-group-item:hover {
    background: #f1f5f9;
    color: #0083B0;
}
.sales-sidebar-nav .list-group-item:hover i,
.user-sidebar-nav .list-group-item:hover i,
.cdss-sidebar-nav .list-group-item:hover i {
    color: #0083B0;
}
.sales-sidebar-nav .list-group-item.active,
.user-sidebar-nav .list-group-item.active,
.cdss-sidebar-nav .list-group-item.active {
    background: #e0f2fe;
    color: #0083B0;
    font-weight: 600;
}
.sales-sidebar-nav .list-group-item.active i,
.user-sidebar-nav .list-group-item.active i,
.cdss-sidebar-nav .list-group-item.active i {
    color: #0083B0;
}
/* Sidebar rendered inside the mobile offcanvas: drop the card chrome */
.sidebar-offcanvas .sales-sidebar,
.sidebar-offcanvas .user-sidebar,
.sidebar-offcanvas .cdss-sidebar {
    position: static;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
    flex: 1 1 auto;
    width: 100%;
}
.sidebar-toggle {color: #334155;}
.sidebar-toggle:hover {color: #0083B0;}

@media (max-width: 768px) {
    .breadcrumbs-bar {margin-top: -4px; margin-bottom: 4px;}
    .breadcrumbs-bar .breadcrumb {padding: 0.2rem 0.5rem; font-size: 0.7rem;}
    .breadcrumbs-bar .breadcrumb i {font-size: 0.75rem;}
    /* Hide the inline sidebar on mobile — accessible via the hamburger.
       !important needed to beat Bootstrap's d-flex utility on .sales-sidebar-column / .user-sidebar-column. */
    .app-shell > .sales-sidebar-column,
    .app-shell > .user-sidebar-column {display: none !important;}
}

#navigation-criterion {
    margin-left: auto;
    margin-right: auto;
    padding: 0 8px;
}
.nav-criterion {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    border-bottom: 2px solid #e2e8f0;
    background: transparent;
    transition: color 0.3s, border-color 0.3s;
}
.nav-criterion-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}
.nav-criterion-sub {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
    font-weight: 400;
}
.nav-criterion.active {
    color: #1668BE;
    border-bottom-color: #1E7FDB;
}
.nav-criterion.active .nav-criterion-sub {
    color: #94a3b8;
}
.nav-criterion.inactive {
    color: #94a3b8;
}
.nav-criterion.pass {
    color: #16a34a;
    border-bottom-color: #22c55e;
}
.nav-criterion.pass .nav-criterion-sub {
    color: #94a3b8;
}
.nav-criterion.fail {
    color: #dc2626;
    border-bottom-color: #ef4444;
}
.nav-criterion.fail .nav-criterion-sub {
    color: #94a3b8;
}

.logo-large {
    font-size: 64px;
    font-weight: bold;
    background: linear-gradient(135deg, #00B4DB 0%, #0083B0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #00B4DB;
    text-shadow: 0 2px 4px rgba(0, 180, 219, 0.2);
    letter-spacing: 4px;
}

.system-description {
    max-width: 480px;
    margin: 20px auto;
    position: relative;
}

.system-description p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.intro-box {
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  border: 2px solid #e9ecef;
  position: relative;
  width: 100%;
}
.question-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #e9ecef;
    position: relative;
    text-align: left;
}
.question-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}
.question-a { background: #00B4DB; }
.question-b { background: #4a90e2; }
.question-c { background: #3B82F6; }
.question {
    font-size: 20px;
    color: #333;
    font-weight: 500;
}
.answer-container {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.result-box {
    padding: 40px;
    border-radius: 15px;
    margin-top: 20px;
    animation: bounceIn 0.6s ease-out;
}
.result-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.result-successful {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}
.result-fail {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}
.result-probable {
    background: #ebf4ff;
    border: 2px solid #1633CF;
    color: #172877;
}
.result-warning {
    background: #fff3cd;
    border: 2px solid #ffc107;
}
.result-successful .result-title {
    color: #28a745;
}
.result-fail .result-title {
    color: #dc3545;
}
.result-probable .result-title {
    color: #1633CF;
}
.result-warning .result-title {
    color: #856404;
}
.summary-note {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}
.summary-note p {
    color: #856404;
    font-size: 14px;
}

/* Footer summary report - hide on screen */
#print-evaluation-confirmation-report {display: none;}
.container-result {
    padding: 5%;
    margin: 0 5% 5% 5%;
}
.success {
    list-style-type: none;
    background-color: #FF63473D;
    border: 2px red solid;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.9rem;
    text-align: center;
}
.result {
    list-style-type: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.9rem;
    text-align: center;
}
.card.card-transparent {
  background-color: transparent;
}
.card.card-transparent > .card-body {
  background-color: transparent;
}
.card.card-transparent .list-group,
.card.card-transparent .list-group-item {
  background-color: transparent;
  border-color: transparent; /* removes list-group borders */
}

.criteria-confirmation-summary {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 0;
    margin: 0;
}
.result-answer-a1-affected-organs {
    padding-left: 4%;
    list-style-type: none;
    font-size: 1.1rem
}
/* --- Grid Layout --- */
.question-a1-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
  padding: 10px;
}

/* --- Each Image Block --- */
.question-a1-image {
  width: 100%;
  max-width: 320px;
}

/* --- Figure + Picture --- */
.question-a1-image figure {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  margin: 0;
}

/* Make picture act like the old input[type=image] */
.question-a1-image figure picture {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

/* Image inside picture */
.question-a1-image figure picture img.a1-image-menu {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover effect (gentle zoom + soft glow) */
.question-a1-image figure picture img.a1-image-menu:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* --- Caption Overlay --- */
.question-a1-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 6px 8px;
  background: linear-gradient(180deg, rgba(30, 127, 219, 0) 0%, rgba(30, 127, 219, .86) 45%, rgba(22, 104, 190, .96) 100%);
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-radius: 0 0 10px 10px;
  box-sizing: border-box;
  font-size: 0.95rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Caption hover interaction (optional) */
.question-a1-image:hover figcaption {
  background: linear-gradient(180deg, rgba(30, 127, 219, 0.6) 0%, rgba(30, 127, 219, .76) 45%, rgba(22, 104, 190, .76) 100%);
  transform: translateY(-2px);
}

.question-a1-image-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 4 equal columns */
  gap: 10px;
}

.question-a1-image-row img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.processed-organ {
  width: 25%;
  border-radius: 8px;
  transition: 0.3s ease;
}
.processed-organ:hover {
  opacity: 0.7;
  filter: grayscale(50%);
}

/* Smaller images in the systems navigation strip */
.question-a1-image-row .question-a1-image {
  max-width: 140px;
  margin: 0 auto;
}

/* Visited organ with at least one symptom selected — green label */
.question-a1-image.organ-with-symptoms figcaption {
  background: linear-gradient(180deg, rgba(76, 175, 80, 0) 0%, rgba(76, 175, 80, 0.86) 45%, rgba(56, 142, 60, 0.96) 100%);
}

/* Visited organ without symptoms — neutral label */
.question-a1-image.organ-no-symptoms figcaption {
  background: linear-gradient(180deg, rgba(120, 120, 120, 0) 0%, rgba(120, 120, 120, 0.7) 45%, rgba(90, 90, 90, 0.85) 100%);
}

/* Organ not yet processed — grayscale + dimmed */
.question-a1-image.organ-not-visited figure picture img.a1-image-menu {
  filter: grayscale(100%);
  opacity: 0.55;
}
.question-a1-image.organ-not-visited figcaption {
  background: linear-gradient(180deg, rgba(120, 120, 120, 0) 0%, rgba(120, 120, 120, 0.6) 45%, rgba(90, 90, 90, 0.75) 100%);
}

/* Currently active organ — blue highlight ring */
.question-a1-image.organ-current figure {
  box-shadow: 0 0 0 3px #1e7fdb, 0 4px 12px rgba(30, 127, 219, 0.35);
}
.question-a1-image.organ-current figure picture img.a1-image-menu {
  filter: none;
  opacity: 1;
}

.symptom-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    color: black;
    background: #FAE1D2FF;
    font-weight: bold;
}
.symptom-badge-font {font-size: 14px;}
.symptoms-container { margin: 2.85rem 0; }

.symptom-list {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5625rem;
    margin: 0 auto;
    border: 0.0625rem solid #e9ecef;
    box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.05);
    width: clamp(200px, 90%, 600px); /* min 200px, max 600px */
    position: relative;
    display: inline-block;
}
.info-checkbox-label {font-weight: 400}
.info-checkbox-description {
  font-size: 0.8em;
  color: var(--bs-gray-500);
  margin: 0;
}
.info-checkbox-text {
    display: flex;
    flex-direction: column;
}
.info-checkbox-term {
    padding: 0.75rem 1.125rem;
    margin: 0.5rem 0;
    border-radius: 0.65rem;
    transition: background-color 0.2s, transform 0.2s, border-color 0.2s;
    cursor: pointer;
    user-select: none;
    border: 0.125rem solid transparent;
}
.info-checkbox-term:hover {
    background: #f8fafc;
    transform: translateX(5px);
}
.info-checkbox-term:has(input:checked)  {
    background: #EEF7FF;
}
.info-checkbox-term:has(input:checked):hover {
    background-color: #D6EBFD;
}
.info-checkbox-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    width: 100%;
    cursor: pointer;
}
.info-checkbox-term input[type="checkbox"] {
    width: 1.3rem;
    height: 1.3rem;
    cursor: pointer;
}

.errorlist {
    list-style-type: none;
    color: red;
    background-color: #FF63473D;
    border: 2px red solid;
    border-radius: 5px;
    font-size: 1.4rem;
    padding: 0.9rem;
}

.helptext {
    font-weight: lighter;
    font-size: 0.8em;
}

input {
    border: solid 2px #e2e8f0;
    border-radius: 5px;
    padding: 0.2rem;
    margin: 0 0.5rem 0.5rem 0;
    font-size: 1.8em;
    font-weight: 400;
    letter-spacing: 0.022em;
    line-height: 1.47059;
}

.start-button {
    background: linear-gradient(135deg, #429EF0, #1E7FDB);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    letter-spacing: 2px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
    position: relative;
    overflow: hidden;
}

.start-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.start-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);
}

.start-button:hover::before {
    left: 100%;
}

.start-button:active {
    transform: translateY(-1px) scale(1.02);
}

.last-update {color: #757575; font-size: 0.875rem; text-align: left; margin-bottom: 10px;}

footer {
  font-size: 12px;
  font-weight: 100;
  color: lightgrey;
  margin-top: 30px;
  padding-top: 20px;
  width: 100%;
  text-align: center;
  a:link { color: gray; }
  a:visited { color: black; }
  a:hover { color: darkblue; }
  a:active { color: darkblue; }
}
.copyright {
  margin: 0;
  padding: 0 12px;
  line-height: 1.6;
}
@media (min-width: 769px) {
  footer {margin-top: auto;}
}
/* Layout: two columns side by side */
.content-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
}
/* Quick Links sidebar */
.quick-links {
  flex: 0 0 160px;
  background-color: #f9fafc;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 0.5rem;
}
.quick-links h2 {font-size: 1rem;margin-bottom: 0.8rem;color: #003366;}
.quick-links ul {list-style: none;padding: 0;margin: 0;}
.quick-links li {margin-bottom: 0.5rem;}
.quick-links a {color: #0056b3;text-decoration: none;transition: color 0.2s ease;font-size: 0.8rem;}
.quick-links a:hover {color: #003d80;text-decoration: underline;}
/* Main content (right side) */
.policies-content {flex: 1;}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    :root {--samia-navbar-height: 52px;}
    body {padding: 0; padding-top: var(--samia-navbar-height);}
    .container {padding: 0;margin: 0;}
    .samia-navbar .logo-small img {width: 90px;}
    .main {padding: 10px 5px;}
    .content-box {flex-direction: column;}
    .quick-links {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-bottom: 0;
        flex: 1 1 auto;
    }
    .question-box {
        border-radius: 15px;
        padding: 40px 7px 10px 7px;
        margin: 0;
        border: 1px solid #e9ecef;
    }
    .question-a1-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
    .question-a1-image figure figcaption {
        font-size: 0.85rem;
        padding: 5px;
    }
    .question-a1-image-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
      gap: 5px;
    }
    .question-a1-image-row p {display: none;}

    .logo-small {padding-top: 7px;}
    .logo-large {display: none;}
    .logo-large img {width: 80%;}
    .welcome-title { margin: 8px auto;}
    .system-description {margin: 5px auto; padding: 15px;}
    .system-description p {font-size: 14px;text-align: left;}
    .symptom-list {max-width: none;}
    .symptom-badge-font {font-size: 12px;}
    .intro-box {padding: 0; border: 0}
    .result-box {margin: 0; padding: 10px;}
    .summary-note p {font-weight: lighter; font-size: 12px;}
    .result-title {font-size: 18px; margin-bottom: 10px;}
    .result-subtitle {font-size: 14px; margin-bottom: 10px;}
    footer {font-size: 10px;}
    .copyright {margin: 0 0 10px 0;}
    .policies {margin: 0 0 10px 0;}
    .policies li + li:before{content: "|";padding: 0;}

    .start-button {padding: 18px 40px;font-size: 16px;letter-spacing: 1px;}
    .big-button {font-size: 16px;}
}

@media (max-width: 480px) {
  .question-a1-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
  .question-a1-image figure {border-radius: 8px;}
}