@charset "UTF-8";

/* ============================================
   STYLES FOR LOCAL DEV ONLY - DO NOT USE
   ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
   ============================================ */

@import url("https://use.typekit.net/pqp8rte.css");

html, body {
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header, footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: #00395D;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

footer {
    box-shadow: none;
}

header {
    display: flex;
    flex-direction: column;
    height: 175px;
    position: sticky;
    top: 0;
    z-index: 100;

    hr {
        opacity: .25;
        width: 95%;
    }
}

header ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin: 0;
    padding: 0;
    list-style-position: inside;

    li {
        margin: 0;
        padding: 2px 6px;
        text-wrap: nowrap;
        font-size: .8rem;
        border:rgba(255, 255, 255, .3) 1px solid;
        border-radius: 3px;
    }
}

header a {
    color: #fff;
    text-decoration: none;
 }

header a:hover {
    text-decoration: underline;
}

footer {
    flex-direction: column;
    justify-content: flex-start;
    height: 500px;
}

footer .footer-cutout {
    width: 100%;
}

main {
    background-color: #fff;
}

/* ============================================
   ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑
   END DEV-ONLY STYLES
   ============================================ */


/* ============================================
   USE THESE STYLES
   ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
   ============================================ */

/* --------------------------------------------
   CSS Variables
   -------------------------------------------- */
:root {
    --base-color: #00395d;
    --light-gray: #f0f0f0;
    --purple: #632398;
    --purple-dark: #361353;
    --medium-gray: #595959;
    --teal: #20cbd4;
    --teal-dark: #00294c;
    --cyan: #007cad;
    --black: #0f0f0f;
    --light-blue: #daecfe;
    --green: #007a77;
}

/* --------------------------------------------
   Global Styles
   -------------------------------------------- */
body {
    text-wrap: pretty;
    line-height: 1.5;
}

a {
    text-decoration: underline;
    transition: all .2s ease;

    &:hover,
    &:visited,
    &:focus,
    &:focus-visible {
        text-decoration: none;
    }
}

 video {
     display: block;
 }

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    text-wrap: balance;
}

h1 {
    color: var(--base-color);
}

h1, h2, h3 {
    line-height: clamp(1em, 0.2em + 3vw, 1.2em);
}

ul, ol {
    margin-bottom: 2rem;
}

li {
    margin-bottom: .75rem;
}

.footer-cutout {
    .blue-cutout {
        display: none;
    }
}

/* --------------------------------------------
   Accessibility
   -------------------------------------------- */
.skip-link {
    position: absolute;
    top: -60px;
    left: 0;
    background: var(--purple);
    color: var(--light-gray);
    padding: 8px 16px;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.2s ease-in-out;
    border-radius: 0 0 5px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
    border-right: 3px solid rgba(0, 0, 0, .3);
    border-bottom: 3px solid rgba(0, 0, 0, .3);
}

.skip-link:focus {
    top: 0;
}

/* --------------------------------------------
   Utility Classes
   -------------------------------------------- */
.bg-light-gray {
    background-color: var(--light-gray);
}

.bg-cyan {
    background-color: var(--cyan);
    color: #fff;
}

.bg-green {
    background-color: var(--green);
    color: #fff;
}

.hover-lift {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.color-card {
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.color-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: inherit;
}

.color-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: inherit;
}

.text-teal {
    color: var(--teal);
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.gradient {
    background: linear-gradient(to bottom, #ffffff, var(--light-blue));
}

.image-bottom-content img {
    width: 100%;
}

.border-radius {
    border-radius: 2rem;
}

/* --------------------------------------------
   Bootstrap Accordion Component
   -------------------------------------------- */
.accordion {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 1.5rem;

    --bs-accordion-bg: #fff;
    --bs-accordion-color: inherit;
    --bs-accordion-border-color: rgba(0, 0, 0, 0.2);
    --bs-accordion-border-radius: 0.25rem;
    --bs-accordion-inner-border-radius: 0.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-bg: var(--base-color);
    --bs-accordion-btn-color: #fff;
    --bs-accordion-active-bg: var(--base-color);
    --bs-accordion-active-color: #fff;
    --bs-accordion-btn-focus-border-color: var(--teal);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(32, 203, 212, 0.35);
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 8px !important;
    overflow: hidden;
    background-color: #fff;
}

.accordion-header {
    display: block;
}

.accordion-button {
    padding: .5rem 1.25rem;
    font-weight: 700;
    text-align: left;
    border-radius: 5px !important;
}

.accordion-button::before {
    content: '';
    width: 0;
    height: 0;
    margin-right:.5rem;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #fff;
    transform-origin: 50% 50%;
    transition: transform 0.2s ease;
}

.accordion-button::after {
    background-image: none;
    width: 0;
}

.accordion-button:not(.collapsed) {
    background-color: var(--base-color);
    color: #fff;
}

.accordion-button:not(.collapsed)::before {
    transform: rotate(90deg);
}

.accordion-button:focus {
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 0 3px var(--teal);
    border-radius: 8px;
}

.accordion-button:focus-visible {
    box-shadow: inset 0 0 0 3px var(--teal);
}

/* --------------------------------------------
   Basic Card
   -------------------------------------------- */

.basic-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;

    h3 {
        margin-bottom: revert;
        color: var(--cyan);
        text-transform: uppercase;
    }
}

.basic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.basic-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    margin: auto 0 1rem 0;
}

.basic-card .btn {
    margin-top: auto;
    font-size: clamp(10px, 2.5vw, 16px);
    white-space: nowrap;
}

/* --------------------------------------------
   Button Styles
   -------------------------------------------- */
.btn {
    margin-top: auto;
    padding: 0.5rem 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 100rem;
    color: #fff;
    transition: all 0.2s ease;
}

.btn {
    &:hover {
        border: 1px solid #fff !important;
    }
    &:focus,
    &:focus-visible {
        outline: 1px var(--black) solid;
        outline-offset: 1px;
        background: var(--black);
        color: #fff;
    }
    &:active {
        background-color: var(--purple-dark) !important;
        color: #fff !important;
    }
}

/* --------------------------------------------
   Purple Button
   -------------------------------------------- */
.btn-purple {
    color: #fff;
    background-color: var(--purple);
}

.btn-purple:hover {
    color: #fff;
    background-color: var(--medium-gray);
}

/* --------------------------------------------
   Teal Button
   -------------------------------------------- */
.btn-teal {
    color: var(--teal-dark);
    background-color: var(--teal);

    &:hover {
        color: #fff;
        background-color: var(--base-color);
    }

    &:focus,
    &:focus-visible {
        outline: 1px var(--black) solid !important;
        outline-offset: 1px !important;
        background: var(--black) !important;
        color: #fff !important;
    }
    &:active {
        background: var(--black) !important;
        color: #fff !important;
    }
}

/* --------------------------------------------
   White Button
   -------------------------------------------- */
.btn-white {
    background-color: #fff;
    color: var(--purple);
}

.btn-white:hover {
    background-color: var(--teal);
    color: var(--black);
}

/* --------------------------------------------
   Gray Button
   -------------------------------------------- */
.btn-gray {
    background-color: var(--medium-gray);
    color: #fff;
}

.btn-gray:hover {
    background-color: var(--purple);
    color: #fff;
}

.btn-card-cta {
    background-color: var(--base-color);
    color: #fff;
    margin-top: auto;
    align-self: flex-start;
    padding: 0.5rem 1.5rem;

    &:hover {
        background-color: #fff;
        color: var(--base-color);
    }

    &:focus,
    &:focus-visible {
        outline: 1px var(--black) solid !important;
        outline-offset: 1px !important;
        background: var(--black) !important;
        color: #fff !important;
    }
    &:active {
        background: var(--black) !important;
        color: #fff !important;
    }
}

/* --------------------------------------------
   Floating Demo Button
   -------------------------------------------- */
.btn-demo-floating {
    padding: 0.6rem;
    border: none;
    position: fixed;
    top: 12rem;
    right: 0;
    z-index: 9999;
    color: #fff;
    border-radius: 100rem 0 0 100rem;
    background: linear-gradient(to right, var(--teal) 0%, var(--cyan) 100%);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0,0,0,.2) ;
}

.btn-demo-floating svg {
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .5));
}

.btn-demo-floating:hover {
    background: linear-gradient(to right, var(--cyan) 0%, var(--base-color) 100%);
    color: #fff;
    padding-right: 1.5rem;
    box-shadow: -6px 6px 20px rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------
   Dark Blue Button
   -------------------------------------------- */

.btn-dark-blue:hover {
    color: #fff !important;
    background-color: var(--purple-dark) !important;
}

/* --------------------------------------------
   Hero Section (Reusable)
   -------------------------------------------- */
.hero-section {
    padding-bottom: 0;
    position: relative;
}

.hero-container {
    position: relative;
}

.hero-subtitle {
    display: block;
    margin-bottom: .5rem;
    letter-spacing: 2px;
    color: var(--bs-purple);
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-title {
    color: var(--base-color);
}

.hero-text-content {
    padding: 2rem;
    position: relative;
    z-index: 20;
}

.hero-image-container {
    position: relative;
    z-index: 10;
    overflow: hidden;
    max-width: 600px;
    width: calc(100% - 2rem);
    margin: 1rem auto 3rem auto;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Chevron cutout (Desktop) */
.hero-cutout-desktop {
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-1px);
    z-index: 15;
}

.hero-cutout-angle {
    position: absolute;
    top: 0;
    left: -1px;
    height: 100%;
    width: auto;
    z-index: 10;
    pointer-events: none;
}

/* Gray wave decoration */
.conditions-wave {
    max-height: 210px;
    z-index: 18;
    pointer-events: none;
    bottom: -1px;
}

/* --------------------------------------------
   Hero Subsection (Reusable)
   -------------------------------------------- */
.hero-subsection {
    padding-top: 3rem;
    background-color: var(--light-gray);
    position: relative;
}

.hero-subsection .employee-cards-container {
    position: relative;
    z-index: 10;
}

.hero-subsection .card {
    transition: 0.3s ease;
    max-width: 600px;
    margin: auto;
}

.hero-subsection .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.hero-subsection .card-body {
    color: var(--base-color);
}

.hero-subsection .card-title {
    font-weight: bold;
    text-transform: uppercase;
}

/* --------------------------------------------
   Info Card Component (Reusable)
   Used for Mission/Vision cards
   -------------------------------------------- */
.info-card {
    background-color: var(--light-gray);
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: var(--purple);
}

.icon-circle img {
    height: auto;
}

.info-card h3 {
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.info-card p {
    margin-bottom: 0;
}

/* Clinical Conditions page - cutout at bottom of section, full viewport width */
.clinical-conditions-page .expert-section,
.case-study-univ-hospital-zurich-page .expert-section {
    position: relative;
    overflow: hidden;
}

.clinical-conditions-page .expert-section .angle-left-bottom-cutout,
.case-study-univ-hospital-zurich-page .expert-section .angle-left-bottom-cutout {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
}

/* ============================================
   ABOUT US PAGE-SPECIFIC STYLES
   ============================================ */

/* --------------------------------------------
   Thoracic Imaging Section
   -------------------------------------------- */
.thoracic-section {
    padding: 4rem 0;
    position: relative;
}

.thoracic-item {
    flex: 0 0 100%;
    max-width: 300px;
}

/* --------------------------------------------
   Feature Pill Component (Reusable)
   Tombstone-shaped cards with icons
   -------------------------------------------- */
.feature-pill {
    text-align: center;
    color: white;
    padding-bottom: 3rem;
    height: 100%;
    border-top-left-radius: 1000px;
    border-top-right-radius: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: gray;
    transition: transform 0.3s ease;
}

/* Reflection effect below pill */
.feature-pill::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 55px;
    background-color: var(--pill-bg);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent);
    pointer-events: none;
}

/* Pill color variants */
.pill-purple { --pill-bg: var(--purple); background-color: var(--pill-bg); }
.pill-gray { --pill-bg: var(--medium-gray); background-color: var(--pill-bg); }
.pill-dark-blue { --pill-bg: var(--base-color); background-color: var(--pill-bg); }
.pill-teal { --pill-bg: var(--teal); background-color: var(--pill-bg); }
.pill-cyan { --pill-bg: var(--cyan); background-color: var(--pill-bg); }

.pill-purple img {
    position: relative;
    top: -3px;
    right: -3px;
}

.pill-icon-circle {
    background-color: white;
    width: 60%;
    max-width: 140px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20%;
    margin-bottom: 1.5rem;
}

.pill-icon-circle img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.pill-content {
    padding: 0 1rem;
    padding-bottom: 2rem;
}

.pill-text {
    text-transform: uppercase;
    font-size: 1.2rem;
    margin: 0;
}

/* --------------------------------------------
   Clinical Advisors Section
   -------------------------------------------- */
.clinical-advisors-section {
    padding: 3rem 0;
}

.employee-cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.employee-card {
    display: flex;
    flex-direction: column;
    border-radius: 2rem;
    padding-top: 3rem;
    position: relative;
    background-color: var(--light-gray);
}

.employee-image-container {
    width: 300px;
    height: 271px;
    margin: 0 auto 2rem;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 1.5rem;
}

/* Generic employee background images */
.bg-employee-1 { background-image: url('images/bg-employee-photo-1.webp'); }
.bg-employee-2 { background-image: url('images/bg-employee-photo-2.webp'); }
.bg-employee-3 { background-image: url('images/bg-employee-photo-3.webp'); }

.employee-image-container img {
    position: absolute;
    top: -28px;
    width: 300px;
    border-radius: 1.5rem;
}

.employee-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 2rem;
}

.employee-content-container h3 {
    margin-bottom: .5rem;
    text-transform: uppercase;
}

.employee-content-container p {
    font-size: clamp(15px, 0.8rem + 0.25vw, 18px);
    margin: 0;
}

/* Leadership Page Specifics */
.leadership-page .employee-card {
    background-color: #fff;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    color: var(--base-color);
}

.leadership-page .employee-content-container {
    display: flex;
    flex-direction: column;
}

.leadership-page .employee-header {
    display: flex;
    flex-direction: column;
    order: 2;
}

.leadership-page .employee-header p {
    text-transform: uppercase;
    font-weight: bold;
}

.leadership-page .employee-link {
    display: inline-flex;
    gap: 0.5rem;
    text-decoration: none;
    font-size: .9rem;
    order: 1;
    margin-bottom: 1rem;
}

.leadership-page .employee-bio {
    order: 3;
}

.leadership-page .employee-link:hover {
    text-decoration: underline;
}

.leadership-page .employee-link img {
    position: relative;
    top: -3px;
}

.leadership-page .employee-bio {
    margin-top: 1rem;
}

.leadership-page .employee-content-container {
    padding: 2rem;
}

/* --------------------------------------------
   Mission/Vision Section
   -------------------------------------------- */
.mission-vision-section {
    padding: 3rem 0;
}

/* --------------------------------------------
   Join the Team Section
   -------------------------------------------- */
.secondary-text-container {
    margin: 0 auto;
}

.secondary-text-container img {
    width: 300px;
    margin: 0 auto;
    display: block;
}


/* ============================================
   PARTNERS PAGE-SPECIFIC STYLES
   ============================================ */

/* --------------------------------------------
   Partner Cards
   -------------------------------------------- */
.partners-page .basic-card {
    aspect-ratio: 1/1;
}

/* Partner Grid Column Overrides */
.partners-grid-section .row > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
}


/* ============================================
   RESOURCES PAGE-SPECIFIC STYLES
   ============================================ */

/* --------------------------------------------
   Resource Cards
   -------------------------------------------- */
.resource-card {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.resource-card-img-top {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.resource-card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-card-img-top img {
    transform: scale(1.05);
}

.resource-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: flex-start;

    h3 {
        text-transform: uppercase;
    }
}

.resource-card-body .btn {
    margin-top: auto;
    white-space: nowrap;
}


/* ============================================
   REUSABLE SECTION STYLES
   ============================================ */

/* --------------------------------------------
   Simple Section (Generic content section)
   -------------------------------------------- */
.simple-section {
    padding: 5rem 0 8rem;
    background-color: #fff;
}

/* --------------------------------------------
   Proof Cards (Used in Need more proof? sections)
   -------------------------------------------- */
.proof-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    height: 100%;
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.proof-card .proof-card-image {
    height: 250px;
    object-fit: cover;
}

.proof-card .proof-card-content {
    padding: 2rem;
}

.proof-card .proof-card-content .proof-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--base-color);
    margin-bottom: 1rem;
}

.proof-card .proof-card-content .proof-card-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Need more proof? section specific styles */
.need-proof-section .container-xl{
    margin-bottom: 4rem;
}

/* ============================================
   PARTNER TEMPLATE PAGE-SPECIFIC STYLES
   ============================================ */

/* --------------------------------------------
   Partner Hero Section
   -------------------------------------------- */
.partner-hero-section {
    background-color: #fff;
}

.partner-hero-section::after {
    display: none;
}

.partner-hero-logo {
    width: 100%;
    max-width: 250px;
    max-height: 100px;
}

/* --------------------------------------------
   Image Gallery Section
   -------------------------------------------- */
.image-gallery-section {
    background-color: #fff;
}

.gallery-image-placeholder {
    background-color: #d9d9d9;
    aspect-ratio: 4 / 3;
    border-radius: 0.5rem;
}

/* --------------------------------------------
   Contact Form Section
   -------------------------------------------- */
.contact-form-section {
    background-color: #fff;
}

.contact-form .form-label {
    font-size: 0.85rem;
}

.contact-form .form-control {
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    padding: 0.75rem;
}

.contact-form .form-select {
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    padding: 0.75rem;
}

.contact-form .form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 0.2rem rgba(0, 128, 124, 0.25);
}

.contact-form .form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 0.2rem rgba(0, 128, 124, 0.25);
}

.contact-form .form-check-input {
    border-color: var(--base-color);
}


/* ============================================
   CAREERS PAGE-SPECIFIC STYLES
   ============================================ */



/* ============================================
   NEWS & EVENTS PAGE-SPECIFIC STYLES
   ============================================ */

/* --------------------------------------------
   News & Events Cards
   -------------------------------------------- */
.blue-card {
    background-color: var(--base-color);
    color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: left;
    transition: 0.3s ease;
}

.blue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.blue-card-date {
    color: var(--teal);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blue-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blue-card-icon-wrapper {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background-color: var(--teal);
    border-radius: 0 .5rem 0 .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blue-card-icon-wrapper img {
    width: 24px;
    height: 24px;
}

.blue-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Green Card Variant */
.card-teal {
    background-color: var(--teal);
    color: var(--teal-dark);
}

.card-teal .btn-white {
    color: var(--teal-dark);
}

.card-teal .btn-white:hover {
    background-color: var(--base-color);
    color: #fff;
}

/* Logo Filters */
.filter-white {
    filter: brightness(0) invert(1);
}

.filter-dark-blue {
    /* Approx matches #00395d */
    filter: brightness(0) saturate(100%) invert(16%) sepia(31%) saturate(3620%) hue-rotate(189deg) brightness(95%) contrast(101%);
}

/* --------------------------------------------
   Filter Section
   -------------------------------------------- */
.filter-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-label {
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--base-color);
}

/* --------------------------------------------
   Pagination
   -------------------------------------------- */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--medium-gray);
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 2px;
    cursor: default; /* No functionality yet */
}

.page-box.active {
    background-color: var(--purple);
}

/* --------------------------------------------
   News Grid Responsive Behavior
   -------------------------------------------- */
.news-grid-section .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
}

/* ============================================
   NEWS ARTICLE PAGE-SPECIFIC STYLES
   ============================================ */

.article-hero-media {
    background-color: #ccc;
    height: 450px;
    width: 100%;
    font-size: 1.5rem;
    border-radius: 0.5rem; /* Optional: smooth corners */
}

.article-date {
    color: var(--teal);
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.article-related-item {
    background-color: #ccc;
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 0.5rem; /* Optional */
}

/* ============================================
   TECHNOLOGY PAGE-SPECIFIC STYLES
   ============================================ */

.technology-bg-section {
    display: grid;
    grid-template-areas: "bg-stack";
    overflow: hidden; /* Prevent horizontal scroll from negative margins/width if any */
}

.technology-bg-image {
    grid-area: bg-stack;
    background: url('images/img-section-bg-1.webp') right center / cover no-repeat;
    opacity: 0.25;
    -webkit-mask-image: linear-gradient(to top, black 50%, transparent 100%);
    mask-image: linear-gradient(to top, black 50%, transparent 100%);
    min-height: 800px;
    height: 100%;
    width: 100%;
}

.technology-bg-container {
    grid-area: bg-stack;
}

.technology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem; /* 20px gap for mobile */
}

.color-container {
    display: grid;
    grid-template-areas: "content-stack";
    width: 100%;
    color: #fff;
    border-radius: 1rem; /* Rounded cards for mobile/tablet */
}

.color-layer {
    grid-area: content-stack;
    background-color: var(--bg-color);
    mix-blend-mode: multiply;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    box-shadow: 2px 5px 20px rgba(0, 0, 0, .2);
}

.content-layer {
    grid-area: content-stack;
    z-index: 1;
    align-self: center;
    padding: 3rem;

    span {
        text-transform: uppercase;
    }

    p {
        margin-bottom: 0;
    }
}

.container-cyan { --bg-color: var(--cyan); }
.container-teal { --bg-color: var(--teal); color: #000; }
.container-purple-dark { --bg-color: var(--purple-dark); }
.container-medium-gray { --bg-color: var(--medium-gray); }

.color-container h3 {
    margin-bottom: 1rem;
}

.technology-details-section .basic-card {
    &:hover {
        transform: none;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    }
}

.technology-details-section h3 {
    color: var(--cyan);
}

/* ============================================
   LUNG HEALTH PAGE-SPECIFIC STYLES
   ============================================ */

.lung-solution-cards {
    --bs-gutter-x: 5rem;
}

.lung-solution-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 2.5rem;
    color: white;
    text-align: center;
    position: relative;
    border-radius: 1rem 1rem 8rem 1rem;
}

.lung-solution-card h3 {
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.lung-solution-card .card-img-container {
    height: 120px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lung-solution-card .card-img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.lung-solution-card.suppress {
    background-color: var(--purple);
    color: white;
}

.lung-solution-card.detect {
    background-color: var(--cyan);
    color: white;
}

.lung-solution-card.compare {
    background-color: var(--teal);
    color: var(--black);
}

/* Plus icons between cards */
.plus-icon {
    position: absolute;
    right: -4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background-color: #E6E6E6;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.plus-icon img {
    width: 20px;
    height: 20px;
}

.bg-dark-blue {
    padding: 3rem 0;
    background-color: var(--base-color);
    color: white;
}

/* ===========================================
   Second batch of pages - Jan. 2026
   =========================================== */

/* --------------------------------------------
   Case Studies Page
   -------------------------------------------- */

.purple-card {
    background-color: var(--purple);
    color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: left;
    transition: 0.3s ease;
}

.purple-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.purple-card h3 {
    text-transform: uppercase;
}

.purple-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* --------------------------------------------
   Evidence Cards (Clinical Evidence Page)
   -------------------------------------------- */
.evidence-card {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.evidence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.evidence-card-header {
    background-color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
}

.evidence-card-header img {
    height: 30px;
    width: auto;
}

.evidence-card-body {
    flex-grow: 1;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* Publication Name */
.publication-name {
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

/* --------------------------------------------
   LUNG CANCER RESOURCES PAGE
   -------------------------------------------- */

.lung-cancer-resources-page .lung-resources-section-title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* --------------------------------------------
   SUPPORT PAGE
   -------------------------------------------- */

.support-page .support-contact-block {
    margin-bottom: 3rem;

    h2 {
        text-transform: uppercase;
        font-size: 1.5rem;
    }
}

.support-page .support-video-section {
    background-color: var(--base-color);
    padding: 5rem 0;
}

.support-page .support-video-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
    line-height: 0;
}

.support-page .support-team-section {
    padding-bottom: 5rem;
}

.support-page .support-team-card {
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    text-transform: uppercase;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;

    p {
        font-weight: bold;
    }

    h3 {
        margin: 1.5rem 0 .5rem;
    }
}

.support-page .employee-image-container img {
    left: 50%;
    transform: translateX(-50%);
}

.support-page .footer-cutout {
    .white-cutout {
        display: none;
    }

    .blue-cutout {
        display: block;
    }
}

/* --------------------------------------------
   RESOURCES LUNG HEALTH V2 PAGE
   -------------------------------------------- */

.resources-lung-health-v2-products {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.resources-lung-health-v2-product-card {
    background-color: var(--light-gray);
    border-radius: 1.25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    flex: 0 0 auto;
    width: 100%;
}

.resources-lung-health-v2-product-card:hover {
    transform: translateY(-5px);
    background-color: #ccc;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.resources-lung-health-v2-product-logo {
    max-height: 80px;
    max-width: 300px;
    width: 100%;
}

.resources-lung-health-v2-product-image {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    background-color: transparent;
    object-fit: contain;
}

.resources-lung-health-v2-product-card .btn {
    align-self: revert;
    margin-top: revert;
}

.resources-lung-health-v2-video-link {
    display: block;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
}

.resources-lung-health-v2-video-link:focus,
.resources-lung-health-v2-video-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* --------------------------------------------
   SERIES RECOMMENDATIONS PAGE
   -------------------------------------------- */

.details-content {
    padding: 1.25rem;

    h2 {
        display: inline-block;
        padding: .5rem 1rem;
        background: var(--green);
        color: #fff !important;
        font-size: 1.125rem;
        font-weight: 600;
        border-radius: .5rem;
    }

    h3 {
        margin-bottom: 0.5rem;
    }

    p:last-child {
        margin-bottom: 0;
    }
}

.details-content .content-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: .5rem;

    &:last-child,
    li:last-child {
        margin-bottom: 0;
    }
}

.series-recommendations-page .footer-cutout {
    .white-cutout {
        display: none;
    }

    .blue-cutout {
        display: block;
    }
}

/* --------------------------------------------
   SYSTEM REQUIREMENTS PAGE
   -------------------------------------------- */

.system-requirements-title {
    margin-bottom: 0;
}

.system-requirements-card {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: .25rem;
    overflow: hidden;
}

.system-requirements-card-header {
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.system-requirements-card-header img {
    max-width: 230px;
    height: auto;
}

.system-requirements-card-body {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.system-requirements-card-body h3 {
    margin: 0;
    padding: .75rem 1rem;
    background-color: var(--light-gray);
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-size: .95rem;
    font-weight: 700;
    text-transform: none;
}

.system-requirements-card-body h3:first-child {
    border-top: 0;
}

.system-requirements-card ul {
    margin: 0;
    padding: 1.25rem 2.5rem;

    li:last-child {
        margin-bottom: 0;
    }
}

.system-requirements-card p + ul {
    padding-top: .5rem;
}

.system-requirements-card-note {
    padding: .75rem 1.25rem 1.25rem;
}

.system-requirements-card-note p {
    margin-bottom: .5rem;
}

.system-requirements-spacer {
    list-style: none;
    min-height: 1.5em;
}

.system-requirements-page .footer-cutout {
    .white-cutout {
        display: none;
    }

    .blue-cutout {
        display: block;
    }
}

/* --------------------------------------------
   USER MANUALS GATED DOWNLOADS PAGE
   -------------------------------------------- */

.user-manuals-table {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: .25rem;
    overflow: hidden;
}

.user-manuals-table-col {
    display: grid;
    grid-template-rows: auto 1fr;
}

.user-manuals-table-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 2rem 1.5rem;
    background-color: #fff;
}

.user-manuals-table-header img {
    max-width: 230px;
    height: auto;
}

.user-manuals-table-body {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    background-color: var(--light-gray);
    padding: 2rem 1.5rem;
}

.user-manuals-table-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    font-weight: 600;

    li:last-child {
        margin-bottom: 0;
    }
}

.user-manuals-table-body a {
    color: var(--base-color);
    text-decoration: none;

    &:hover {
        text-decoration: underline;
    }
}

.user-manuals-gated-downloads-page .footer-cutout {
    .white-cutout {
        display: block;
    }

    .blue-cutout {
        display: none;
    }
}

/* --------------------------------------------
   FAQ PAGE
   -------------------------------------------- */

.faq-page .footer-cutout {
    .white-cutout {
        display: none;
    }

    .blue-cutout {
        display: block;
    }
}

/* --------------------------------------------
   WORKFLOW PAGE
   -------------------------------------------- */

.workflows-page .workflows-section {
    background-color: #fff;
}

.workflows-page .workflow-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.workflows-page .workflow-product-header {
    background: var(--light-gray);
    border-top: 10px solid var(--base-color);
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.workflows-page .workflow-product-logo {
    width: min(260px, 80%);
    height: auto;
    display: block;
}

.workflows-page .workflow-card {
    background: #fff;
    border: 1px solid var(--base-color);
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.workflows-page .workflow-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background-color: var(--base-color);
    color: #fff;
    font-weight: 700;
    border-bottom-right-radius: 1.5rem;
}

.workflow-card-header img {
    height: 28px;
    width: auto;
    display: block;
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.85);
}

.workflows-page span {
    display: block;
    line-height: 1.1;
    font-size: 1.4rem;
}

.workflows-page .workflow-figure {
    position: relative;
}

.workflows-page .workflow-img {
    display: block;
    width: 100%;
    height: auto;
}

.workflows-page .workflow-overlay-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(140px, 45%, 240px);
    height: auto;
    top: var(--workflow-logo-top, 8%);
}

/* Dual Modality Workflow & PACS Workflow*/

.workflow-figure-dual .workflow-overlay-logo,
.workflow-figure-pacs .workflow-overlay-logo {
    width: clamp(60px, 25%, 150px);
    top: 14%;
    left: 49%;
}

/* Cloud Workflow */

.workflow-figure-cloud .workflow-overlay-logo {
    width: clamp(60px, 20%, 120px);
}

.workflow-figure-cloud {
    .logo-ct-left,
    .logo-xray-left {
        top: 6%;
        left: 40%;
    }

    .logo-ct-right,
    .logo-xray-right {
        top: 5%;
        left: 82%;
    }
}

.workflows-page .footer-cutout {
    .white-cutout {
        display: none;
    }

    .blue-cutout {
        display: block;
    }
}

/* ============================================
   MEDIA QUERIES
   ============================================ */

/* --------------------------------------------
   511px
   -------------------------------------------- */
@media (min-width: 511px) {
    .news-grid-section .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .partners-grid-section .row > [class*="col-"],
    .resources-grid-section .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .employee-image-container {
        width: 424px;
        height: 384px;
    }

    .employee-image-container img {
        width: auto;
        top: -40px;
    }

    .leadership-page .employee-content-container {
        position: relative;
        justify-content: center;
    }

    .leadership-page .employee-header {
        order: unset;
    }

    .leadership-page .employee-link {
        position: absolute;
        top: 2rem;
        right: 2rem;
        order: unset;
        margin-bottom: 0;
    }

    .leadership-page .employee-bio {
        order: unset;
    }

    /* Tall/portrait logos that need more height */
    .basic-card img.logo-tall {
        max-height: 110px;
    }
}

/* --------------------------------------------
   700px
   -------------------------------------------- */
@media (min-width: 700px) {

    .workflow-figure-cloud .workflow-overlay-logo {
        width: clamp(60px, 20%, 160px);
    }

    .workflow-figure-cloud {
        .logo-ct-left,
        .logo-xray-left {
            top: 6%;
            left: 40%;
        }

        .logo-ct-right,
        .logo-xray-right {
            top: 5%;
            left: 81%;
        }
    }
}

/* --------------------------------------------
   768px
   -------------------------------------------- */
@media (min-width: 768px) {
    .partners-grid-section .row > [class*="col-"],
    .partners-grid-section .row > [class*="col-"],
    .news-grid-section .row > [class*="col-"],
    .resources-grid-section .row > [class*="col-"] {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .btn-demo-floating {
        padding: 0.8rem 1.5rem 0.8rem 1.8rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .btn-demo-floating:hover {
        padding-right: 2.5rem;
    }

    .thoracic-item {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

    .filter-label {
        width: auto;
    }

    .technology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .support-page .phone-link {
        text-decoration: none;
        pointer-events: none;
        cursor: default;
    }

    .resources-lung-health-v2-product-card {
        width: calc(40% - 0.75rem);
    }

    .user-manuals-table {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .user-manuals-table-col + .user-manuals-table-col {
        border-left: 1px solid rgba(0, 0, 0, 0.25);
    }
}

/* --------------------------------------------
   800px
   -------------------------------------------- */
@media (min-width: 800px) {
    .hero-col-800 {
        flex: 0 0 auto;
        width: 50%;
    }

    .d-800-block {
        display: block !important;
    }

    .hero-image-container {
        margin: 0;
        border-radius: 0;
        max-width: none;
        box-shadow: none;
    }

    .hero-image {
        min-height: 700px;
        object-fit: cover;
    }
}

/* --------------------------------------------
   992px
   -------------------------------------------- */
@media (min-width: 992px) {

    /* Hero Section */
    .hero-container {
        padding-bottom: 15%;
        padding-top: 8%;
    }

    /* Hero Images */
    .hero-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        right: 0;
        bottom: 0;
        background-image: var(--hero-bg);
        background-repeat: no-repeat;
        background-position: right center;
        background-size: cover;
        z-index: 1;
    }

    .about-us-page .hero-section {
        --hero-bg: url('images/img-about-us-hero.webp');
    }

    .careers-page .hero-section {
        --hero-bg: url('images/img-careers-hero.webp');
    }

    .clinical-conditions-page .hero-section {
        --hero-bg: url('images/img-clinical-conditions-hero.webp');
    }

    .leadership-page .hero-section {
        --hero-bg: url('images/img-leadership-hero.webp');
    }

    .partners-page .hero-section {
        --hero-bg: url('images/img-partners-hero.webp');
    }

    .resources-page .hero-section {
        --hero-bg: url('images/img-resources-hero.webp');
    }

    .contact-us-page .hero-section {
        --hero-bg: url('images/img-contact-us-hero.webp');
    }

    .resources-lung-health-page .hero-section {
        --hero-bg: url('images/img-resources-lung-health-hero.webp');
    }

    .resources-lung-health-v2-page .hero-section {
        --hero-bg: url('images/img-resources-lung-health-hero-v2.webp');
    }

    .resources-cardiac-health-page .hero-section {
        --hero-bg: url('images/img-resources-cardiac-health-hero.webp');
    }

    .technology-page .hero-section {
        --hero-bg: url('images/img-technology-hero.webp');
    }

    .case-studies-page .hero-section {
        --hero-bg: url('images/img-case-studies-hero.webp');
    }

    .case-study-univ-hospital-zurich-page .hero-section {
        --hero-bg: url('images/img-case-studies-univ.-hospital-of-zurich-hero.webp');
    }

    .clinical-evidence-page .hero-section {
        --hero-bg: url('images/img-clinical-evidence-hero.webp');
    }

    .lung-cancer-resources-page .hero-section {
        --hero-bg: url('images/img-lung-cancer-resources-hero.webp');
    }

    .series-recommendations-page .hero-section {
        --hero-bg: url('images/img-series-recommendations-hero.webp');
    }

    .system-requirements-page .hero-section {
        --hero-bg: url('images/img-system-requirements-hero.webp');
    }

    .support-page .hero-section {
        --hero-bg: url('images/img-support-hero.webp');
    }

    .videos-page .hero-section {
        --hero-bg: url('images/img-videos-hero.webp');
    }

    .user-manuals-gated-downloads-page .hero-section {
        --hero-bg: url('images/img-user-manuals-gated-downloads-hero.webp');
    }

    .faq-page .hero-section {
        --hero-bg: url('images/img-faq-hero.webp');
    }

    .workflows-page .hero-section {
        --hero-bg: url('images/img-workflows-hero.webp');
    }

    .hero-subsection .card {
        max-width: none;
        margin: initial;
    }

    /* Feature Pills */
    .feature-pill {
        min-height: 480px;
    }

    /* Thoracic Grid */
    .thoracic-item {
        flex: 0 0 calc(20% - 1.25rem);
    }

    /* Clinical Advisors */
    .employee-cards-container {
       gap: 5rem;
    }

    .employee-card {
        flex-direction: row;
        padding-top: 0;
    }

    .employee-image-container {
        margin: 0;
    }

    /* Join the Team */
    .secondary-text-container img {
        width: 100%;
        margin: 0;
    }

    .secondary-text-container {
        margin-left: 0;
        padding-left: 5rem !important;
    }

    /* Technology Page Desktop Layout */
    .technology-grid {
        display: flex;
        flex-direction: column;
        grid-template-columns: none; /* Reset grid cols if strictly using flex */
        gap: 0; /* Reset gap for overlapping */
    }

    .color-container {
        display: grid;
        place-items: center;
        width: 60%;
        max-width: 650px; /* Cap size to match <1400px layout (60% of 1140px container) */
        height: 500px;
        aspect-ratio: 1.3 / 1; /* Pill shape - wider than tall */
        padding: 3rem 1.5rem;
        border-radius: 1000px; /* Oval shape */
    }

    .content-layer {
         width: 80%; /* Constrain width of text inside the oval */
    }

    /* Overlapping Positioning */
    .item-cyan {
        margin-right: auto;
    }

    .item-teal {
        margin: -12% auto 0; /* Center align, overlap top */
    }

    .item-purple {
        margin: -12% 0 0 auto; /* Right align, overlap top */
    }

    .item-gray {
        margin: -12% auto 0; /* Center align, overlap top */
    }
}

/* --------------------------------------------
   1400px
   -------------------------------------------- */

@media (min-width: 1400px) {

    .workflow-figure-cloud {

        .logo-ct-left,
        .logo-xray-left {
            left: 42%;
        }

        .logo-ct-right,
        .logo-xray-right {
            left: 79%;
        }
    }
}

/* --------------------------------------------
   1621px
   -------------------------------------------- */
@media (min-width: 1621px) {
    .partners-grid-section .row > [class*="col-"],
    .news-grid-section .row > [class*="col-"],
    .resources-grid-section .row > [class*="col-"] {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* --------------------------------------------
   Reduced Motion for Accessibility
   -------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .accordion .collapsing {
        transition: none !important;
    }

    .accordion-button,
    .accordion-button::before,
    .accordion-button::after {
        transition: none !important;
    }
}