:root {
    --challenges-color: #dc2626;
    --research-color: #2563eb;
    --testing-color: #7c3aed;
    --results-color: #16a34a;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafbfc;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Simple Navigation */
nav {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e1e5e9;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(102, 126, 234, 0.15);
    z-index: 9999;
}

.reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 0%;
    transition: width 0.1s ease-out;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.back-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #667eea;
}

/* Main site nav underline on hover */
nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}
nav a:hover::after {
    width: 100%;
}

/* Case Study Header */
.case-header {
    padding: 3rem 0;
    text-align: left;
    background: white;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid #e1e5e9;
}

.case-header .container {
    padding: 0 6rem;
}

.breadcrumb {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-left: 2rem;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #5a67d8;
}

.case-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
    padding-left: 2rem;
    padding-right: 2rem;
}

.case-tag-pill {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102,126,234,0.65), rgba(118,75,162,0.65));
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    margin-left: 2rem;
    pointer-events: auto;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, white 7%, white 93%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, white 15%, white 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, white 7%, white 93%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, white 15%, white 85%, transparent 100%);
    -webkit-mask-composite: intersect;
    mask-composite: intersect;
}

/* Main Content Areas - All white backgrounds */
.content-section {
    margin: 4rem 0;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 2px solid #e1e5e9;
    position: relative;
    scroll-margin-top: 110px;
}

/* Section labels in top left */
.content-section::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 3rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.4;
    padding-left: 1rem;
}

/* Add colored dots before section labels */
.content-section::after {
    content: '';
    position: absolute;
    top: 1.45rem;
    left: 3rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0.4;
}

/* Section borders and titles use CSS variables */
.content-section.challenges {
    border-color: var(--challenges-color);
}

.content-section.challenges::before {
    content: 'Challenges';
    color: var(--challenges-color);
}

.content-section.challenges::after {
    background: var(--challenges-color);
}

.content-section.challenges .section-title {
    color: var(--challenges-color);
}

.content-section.research {
    border-color: var(--research-color);
}

.content-section.research::before {
    content: 'Research';
    color: var(--research-color);
}

.content-section.research::after {
    background: var(--research-color);
}

.content-section.research .section-title {
    color: var(--research-color);
}

.content-section.testing {
    border-color: var(--testing-color);
}

.content-section.testing::before {
    content: 'Testing';
    color: var(--testing-color);
}

.content-section.testing::after {
    background: var(--testing-color);
}

.content-section.testing .section-title {
    color: var(--testing-color);
}

.content-section.results {
    border-color: var(--results-color);
}

.content-section.results::before {
    content: 'Results';
    color: var(--results-color);
}

.content-section.results::after {
    background: var(--results-color);
}

.content-section.results .section-title {
    color: var(--results-color);
}

/* Move .design variant here to ensure correct order and specificity */
.content-section.design {
    border-color: var(--testing-color);
}

section.content-section.design::before {
    content: 'Design';
    color: var(--testing-color);
}

section.content-section.design::after {
    background: var(--testing-color);
}

.content-section.design .section-title {
    color: var(--testing-color);
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem !important;
    letter-spacing: -0.5px;
    color: #1f2937;
}

.section-description {
    font-size: 1.25rem;
    color: #6e6e73;
    line-height: 1.6;
}

/* Intro text styling */
.intro-text {
    text-align: center;
    padding: 0 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4b5563;
}

.content-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2d2d2d;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text strong {
    color: #1a1a1a;
}

.content-text ul {
    margin: 1rem 0 1.5rem 2rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

/* Image Placeholders */
.image-container {
    margin: 3rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e5e9;
}

.image-placeholder {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 20px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
    opacity: 0.6;
}

.image-placeholder.tall {
    height: 600px;
}

.image-placeholder.short {
    height: 250px;
}

.image-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder-text {
    color: #6e6e73;
    font-size: 1rem;
    text-align: center;
    line-height: 1.4;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 4rem;
    margin: 3rem 0;
    align-items: start;
}

.two-column .process-image-container {
    margin-top: 0.2rem !important;
    margin-bottom: 0.2rem !important;
    padding: 0 !important;
}

.two-column .process-image-container img {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    display: block;
}

.two-column .process-image-container .process-image {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
}

.two-column .content-text {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    font-size: 0.92rem !important;
}

/* Project Info Bar */
.project-info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    padding: 1rem 0.5rem 1.5rem 0.5rem;
    margin: 2rem 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e1e5e9;
    position: relative;
}

.problem-statement {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

.problem-statement h5 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 1rem;
    text-decoration: none;
}

.problem-statement p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.problem-statement strong {
    font-weight: 500;
}

/* Process Guide as standalone element */
.process-guide-standalone {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 0 0;
    padding: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.info-emoji {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    display: block;
}

.info-label {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 0.3rem;
    text-decoration: none;
}

.info-item h4 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.info-item p {
    font-size: 0.85rem;
    color: #1f2937;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

/* Process Navigation Guide */
.process-guide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.process-label {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.process-dot {
    margin: 0;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 50%;
}

.challenges-dot {
    background: var(--challenges-color);
}

.research-dot {
    background: var(--research-color);
}

.testing-dot {
    background: var(--testing-color);
}

.results-dot {
    background: var(--results-color);
}

.process-guide-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    font-size: 1rem;
    font-weight: 300;
    margin: 0 0.5rem;
}

.process-guide-item:hover .process-dot {
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.process-stage {
    text-align: center;
    padding: 1rem 0.5rem;
    background: #fafbfc;
    border-radius: 12px;
    border: 2px solid #e1e5e9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.process-stage:nth-child(1) {
    border-color: #2563eb; /* Blue for Discover */
}

.process-stage:nth-child(2) {
    border-color: #2563eb; /* Blue for Define */
}

.process-stage:nth-child(3) {
    border-color: #7c3aed; /* Purple for Develop */
}

.process-stage:nth-child(4) {
    border-color: #16a34a; /* Green for Deliver */
}

.process-stage:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.process-stage::before {
    display: none;
}

.process-stage h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.process-stage p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

.challenges-section {
    margin: 4rem 0;
}

.challenge-card {
    background: #fef7f7;
    border-left: 4px solid #ef4444;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.challenge-card h4 {
    color: #ef4444;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.challenge-card p {
    color: #5d5d5d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Quote/Insight Callouts */
.insight-callout {
    background: linear-gradient(135deg, var(--results-color), #15803d);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    margin: 4rem 0;
    text-align: center;
}

.insight-callout,
.insight-callout .insight-quote,
.insight-callout .insight-source {
    color: white !important;
}

.insight-quote {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.insight-source {
    opacity: 0.9;
    font-size: 1rem;
}

/* Testing Sections */
.testing-highlight {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.testing-highlight h4 {
    color: #1e40af;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Findings Lists */
.findings-list {
    background: #fef7f7;
    border-left: 4px solid #ef4444;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.findings-list h4 {
    color: #ef4444;
    font-weight: 700;
    margin-bottom: 1rem;
}

.findings-list ul {
    margin: 0;
    padding-left: 1.5rem;
}

.findings-list li {
    color: #5d5d5d;
    margin-bottom: 0.5rem;
}

/* Navigation Footer */
.case-footer {
    border-top: 1px solid #e8e8ed;
    padding: 4rem 0;
    margin-top: 6rem;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.nav-link, .nav-link.primary {
    text-decoration: none;
}

.nav-link {
    color: #667eea;
    border: 2px solid #667eea;
    background: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
}

.nav-link.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
    font-weight: 700;
}

.nav-link.primary:hover,
.nav-link.primary:focus {
    background: #5a6fd8;
    color: white;
    border-color: #5a6fd8;
}

.nav-link.disabled {
    color: #b0b0b0 !important;
    border-color: #b0b0b0 !important;
    background: #f5f5f5 !important;
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .case-title {
        font-size: 2rem !important;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .intro-text p {
        font-size: 1rem;
    }
    .content-text {
        font-size: 0.98rem;
    }
    .stat-caption {
        font-size: 0.95rem;
    }
    .insight-quote {
        font-size: 1.1rem;
    }
    .case-header .intro-text {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    .process-guide-standalone {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 2rem;
    }
    .process-guide-item {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    .process-dot {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
        margin: 0 0.3rem 0 0;
        display: inline-block;
        border-radius: 50%;
    }
    .process-label {
        display: block;
        min-width: 110px;
        text-align: left;
    }
    .process-guide-arrow {
        display: none;
    }
    .footer-nav {
        flex-direction: column;
        text-align: center;
    }
    .stat-highlight-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .stat-highlight {
        padding: 2rem 0.5rem 1.5rem 0.5rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .problem-statement p {
        font-size: 0.92rem;
    }
    .project-info-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1.2rem !important;
        padding: 1rem 1rem 1.5rem 1rem !important;
        margin: 2rem auto !important;
        width: 95% !important;
        max-width: 420px;
        box-sizing: border-box;
        justify-content: center;
    }
    .problem-statement {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e5e9;
        background: none;
        box-shadow: none;
        border-radius: 0 0 12px 12px;
        margin-bottom: 0;
        width: 100% !important;
        box-sizing: border-box;
    }
    .info-item {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .reflection-blurbs-row {
        flex-direction: column;
        align-items: stretch;
        padding: 0 0.5rem;
    }
    .reflection-separator {
        width: 100%;
        height: 2px;
        margin: 1.2rem 0;
        background: #e1e5e9;
        border-radius: 1px;
    }
    .reflection-blurb {
        max-width: 100%;
        min-width: 0;
        padding: 1.2rem 0.5rem;
    }
    .cx-tag {
        display: none;
    }
}

.challenge-image-container {
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8fafc;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.10);
    margin: 2rem auto;
    border: 1.5px solid #e1e5e9;
    padding: 1rem;
}

.challenge-image {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.10);
    background: white;
    display: block;
}

.process-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8fafc;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.10);
    margin: 2rem auto;
    border: 1.5px solid #e1e5e9;
    padding: 1rem;
    width: fit-content;
}

.process-image {
    display: block;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.10);
    background: white;
}

.process-image-container.short-card {
    padding: 0.5rem 0;
    min-height: unset;
    background: none;
    box-shadow: none;
    border: none;
}

.process-image-container.short-card .process-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 2px solid #e1e5e9;
    border-radius: 14px;
    box-shadow: none;
    background: white;
}

/* Only for the user persona image in the Creating User Personas section */
section:has(> .section-header > h2.section-title:contains('Creating User Personas')) .process-image-container.short-card .process-image {
    max-width: 700px;
}

.content-section.research .two-column > div > .process-image-container.short-card {
    margin-top: -1rem;
}

.persona-image {
    max-width: 665px !important;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.process-image-container:not(.short-card) .process-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.stat-highlight-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    margin: 2.5rem 0 2.5rem 0;
}

.stat-highlight {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem 2rem 1rem;
    border-radius: 18px;
    background: #f8fafc;
    box-shadow: 0 2px 12px rgba(22,163,74,0.07);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--results-color), #15803d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-align: center;
}

.stat-caption {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 500;
    text-align: center;
    margin-top: 0.25rem;
}

.arrow-up {
    position: relative;
    top: -0.12em;
}

/* Usability Metrics Grid Styles */
.usability-metrics-section {
    margin: 2.5rem 0 2rem 0;
    text-align: center;
}

.usability-metrics-section > p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.usability-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    justify-items: center;
    align-items: stretch;
    max-width: 700px;
    margin: 0 auto;
}

.usability-metric-card {
    background: #f4f5f7;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.07);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-width: 220px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #e1e5e9;
    transition: box-shadow 0.2s;
}

.usability-metric-card:hover {
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.13);
}

.metric-title {
    color: var(--testing-color);
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    letter-spacing: 0.2px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-top: 0.2rem;
}

@media (max-width: 600px) {
    .usability-metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .usability-metric-card {
        min-width: 0;
        width: 100%;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
}

.case-study-visual {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.10);
    position: relative;
    padding: 0;
    margin: 0;
}

.case-study-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.insight-tooltip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.85);
    padding: 1rem;
    font-size: 1rem;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
}

/* === Reflection & Impact Blurbs === */
.reflection-blurbs-row {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    margin-top: 2rem;
}
.reflection-blurb {
    flex: 1 1 220px;
    padding: 1.2rem;
    min-width: 180px;
    max-width: 320px;
    text-align: center;
}
.reflection-icon {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}
.reflection-separator {
    width: 2px;
    height: auto;
    background: #e1e5e9;
    margin: 0 1.2rem;
    border-radius: 1px;
}

@media (max-width: 768px) {
    .reflection-blurbs-row {
        flex-direction: column;
        align-items: stretch;
        padding: 0 0.5rem;
    }
    .reflection-separator {
        width: 100%;
        height: 2px;
        margin: 1.2rem 0;
        background: #e1e5e9;
        border-radius: 1px;
    }
    .reflection-blurb {
        max-width: 100%;
        min-width: 0;
        padding: 1.2rem 0.5rem;
    }
}

.content-section,
.content-section p,
.content-section li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2d2d2d;
}