/** Shopify CDN: Minification failed

Line 86:19 Expected identifier but found whitespace
Line 86:21 Unexpected "{"
Line 86:30 Expected ":"

**/
/* ==========================================================================
   Base Layout
   ========================================================================== */

.clinical-results__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  grid-template-areas:
    "image text"
    "image table"
    "image table";;
  gap: 1rem 3rem;
  align-items: start;
  max-width: 1200px;  
  margin: 0 auto;
  padding-left:5px ;
  padding-right:5px ;
}

/* --- 2. Title & Text Content --- */
.clinical-results__text-content {
  grid-area: text;
  text-align: left;
}

.clinical-results__heading {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: var(--heading-size-desktop, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.clinical-results__description {
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-size: var(--description-size-desktop, 16px);
  opacity: 0.9;
}

/* --- 3. Tabs Component --- */
.clinical-results__tabs-outer {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 1rem;
}

.clinical-results__tabs-wrapper {
  background-color: #f7f9fa;
  border-radius: 30px;
  display: inline-flex;
  padding: 0.5rem 1rem;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  gap: 0.4rem;
  -webkit-overflow-scrolling: touch;
}

.clinical-results__tabs-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbars */
}

.clinical-results__tab {
  padding: 0.9rem 1.9rem;
  background: transparent;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  color: #5d6f7e;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.clinical-results__tab.is-active {
  background-color: {{ section.settings.tab_active_bg }};
  color: #ffffff;
}

/* --- 4. Images Block --- */
.clinical-results__images-wrapper {
  grid-area: image;
  width: 100%;
}

.clinical-results__image-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.clinical-results__image-item {
  display: none;
  width: 100%;
  line-height: 0;
  position: relative;
}

.clinical-results__image-item.is-active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

.clinical-results__image-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  
}
.img-label {
            position: absolute;
            background: #ffffff;
            padding: 1rem 1.4rem;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .label-left {
            top: 15px;
            left: 15px;
            color: #d84b4b;
        }
        .label-right {
            top: 15px;
            left: 65%;
            transform: translateX(-50%);
            color: #39b54a;
        }

/* --- 5. Comparison Table Block --- */
.clinical-results__comparison-outer {
  grid-area: table;
  width: 100%;
}

.clinical-results__table {
  display: none;
  border: 1px solid #e1e7ec;
  border-radius: 20px;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.clinical-results__table.is-active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.clinical-results__table-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #e1e7ec;
}

.clinical-results__header-col {
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1.3;
}

.clinical-results__header-col--bad {
  background-color: #fcf1f1;
  color: #a43e3e;
  border-right: 1px solid #e1e7ec;
}

.clinical-results__header-col--good {
  background-color: #f1f7f1;
  color: #2b5c3f;
}

/* Indicator Dots */
.dot-icon {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-icon--bad { background-color: #c95151; }
.dot-icon--good { background-color: #439665; }

/* Table Body Rows */
.clinical-results__table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e1e7ec;
}

.clinical-results__table-row:last-child {
  border-bottom: none;
}

.clinical-results__cell {
  padding: 1.2rem 1.5rem;
}

.clinical-results__cell--bad {
  border-right: 1px solid #e1e7ec;
}

.clinical-results__point {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.clinical-results__point .rte {
  font-size: 15px;
  line-height: 1.4;
  color: #333333;
  font-weight: 500;
}

.clinical-results__point .rte p {
  margin: 0;
}

/* Status Icons (Bad/Good) */
.status-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.status-icon--bad {
  background-color: #f9dede;
  color: #c95151;
}

.status-icon--good {
  background-color: #e2f3e8;
  color: #439665;
}

.status-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
    Mobile Responsive
   ========================================================================== */

@media screen and (max-width: 749px) {
  .clinical-results__grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .clinical-results__text-content {
    text-align: center;
    order: 1;
  }
.clinical-results__images-wrapper{order: 2;}
.clinical-results__tabs-wrapper{order: 3;}
.clinical-results__comparison-container{order: 4;}
  .clinical-results__heading {
    font-size: var(--heading-size-mobile, 24px);
  }

  .clinical-results__description {
    font-size: var(--description-size-mobile, 15px);
  }

  .clinical-results__tabs-outer {
    justify-content: center;
  }

  .clinical-results__tab {
    padding: 0.8rem 2rem;
    font-size: 14px;
  }

  .clinical-results__table-header {
    font-size: 14px;
  }

  .clinical-results__header-col {
    padding: 1.4rem 1.2rem;
    gap: 0.6rem;
  }

  .clinical-results__cell {
    padding: 0.8rem 0.3rem;
  }

  .clinical-results__point .rte {
    font-size: 13px;
  }

  .status-icon {
    width: 1.6rem;
    height: 1.6rem;
  }

  .status-icon svg {
    width: 0.9rem;
    height: 0.9rem;
  }
  .img-label {
    padding: 0.9rem 1.2rem;
    font-size: 12px;
    }
}