/**
 * Use Case Template - Matching Plugin UI/UX
 * CSS Prefix: use-case-template
 * Max Container Width: 1280px
 *
 * Typography System:
 * - Headings (H1, H2, H3): Inter font family
 * - Body text: Source Sans 3 font family
 */

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

.use-case-wrapper {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #344054;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY SYSTEM ===== */
/* Headings use Inter font */
.use-case-wrapper h1,
.use-case-wrapper h2,
.use-case-wrapper h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* H1: Inter 700 */
.use-case-wrapper h1 {
    font-weight: 700;
}

/* H2: Inter 600 */
.use-case-wrapper h2 {
    font-weight: 600;
}

/* H3: Inter 600 */
.use-case-wrapper h3 {
    font-weight: 600;
}

/* Body text: Source Sans 3 */
.use-case-wrapper p,
.use-case-wrapper li,
.use-case-wrapper td,
.use-case-wrapper th,
.use-case-wrapper span {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400; /* Default weight */
    margin-bottom: 0px !important;
}

/* Emphasis text: Source Sans 3 500 */
.use-case-wrapper strong,
.use-case-wrapper th {
    font-weight: 500;
}

/* Caption/secondary text: Source Sans 3 300 */
.use-case-wrapper .caption,
.use-case-wrapper .secondary-note {
    font-weight: 300;
}

/* ===== CONTAINER ===== */
.use-case-template-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog Container - Max Width 1280px */
.blog-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Surface Science Hub Container - Max Width 1280px */
.ssh-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1320px) {
    .use-case-template-container,
    .blog-container,
    .ssh-container {
        padding: 0 25px;
    }
}

/* ===== HERO SECTION ===== */
.use-case-template-hero-section {
    padding: 80px 0;
    background: #ffffff;
}

.use-case-template-hero-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 64px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1280px;
}

@media (max-width: 1320px) {
    .use-case-template-hero-container {
        padding: 0 25px;
    }
}

/* Left Content */
.use-case-template-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1;
    max-width: 588px;
}

.use-case-template-hero-container.use-case-template-hero-container-no-media .use-case-template-hero-content {
    max-width: 100%;
}

.use-case-template-hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.use-case-template-hero-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #EFF8FF;
    color: #175CD3;
    font-size: 14px;
    font-weight: 500;
    border-radius: 16px;
    border: 1px solid #B2DDFF;
}

.media-video iframe {
    width: 100%;
}

.use-case-template-hero-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 48px !important;
    line-height: 60px !important;
    letter-spacing: -0.02em !important;
    color: #22212A !important;
    margin: 0 !important;
    padding: 0 !important;
}

.use-case-template-hero-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 28px !important;
    color: #344054 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.use-case-template-hero-description p {
    margin: 0 0 14px 0 !important;
}

.use-case-template-hero-description p:last-child {
    margin-bottom: 0 !important;
}

/* Meta Info */
.use-case-template-hero-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.use-case-template-hero-meta-item {
    background: #F9FAFB;
    border-left: 3px solid #175CD3;
    padding: 16px 20px;
    border-radius: 4px;
}

.use-case-template-hero-meta-label {
    font-size: 12px;
    font-weight: 600;
    color: #667085;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.use-case-template-hero-meta-value {
    font-size: 14px;
    font-weight: 400;
    color: #344054;
    line-height: 20px;
}

/* CTA Buttons */
.use-case-template-hero-ctas {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.use-case-template-hero-btn {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 18px;
    gap: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05) !important;
    cursor: pointer;
    border: 1px solid;
}

.use-case-template-hero-btn-primary {
    background: #175CD3 !important;
    border-color: #175CD3 !important;
    color: #FFFFFF !important;
}

.use-case-template-hero-btn-primary:hover {
    background: #FFA400 !important;
    border-color: #FFA400 !important;
    transform: translateY(-1px);
    box-shadow: 0px 4px 8px rgba(255, 164, 0, 0.3) !important;
}

.use-case-template-hero-btn-secondary {
    background: #FFFFFF !important;
    border-color: #D0D5DD !important;
    color: #344054 !important;
}

.use-case-template-hero-btn-secondary:hover {
    background: #F9FAFB !important;
    border-color: #9CA3AF !important;
    transform: translateY(-1px);
    color: var(--e-global-color-primary) !important;
}

/* Right Image/Carousel */
.use-case-template-hero-image-wrapper {
    flex: 1;
    max-width: 628px;
    width: 100%;
}

.use-case-template-hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.use-case-template-hero-carousel-track {
    position: relative;
    width: 100%;
    height: 628px;
    background: #F3F4F6;
    border-radius: 4px;
}

.use-case-template-hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    pointer-events: none;
}

.use-case-template-hero-carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 1;
}

.use-case-template-hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    background: #fff;
    display: block;
}

/* Carousel Indicators - Horizontal Lines */
.use-case-template-hero-carousel-indicators {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    width: 100%;
}

.use-case-template-hero-carousel-indicator {
    flex: 1;
    height: 4px;
    background: #E4E7EC !important;
    border: none;
    border-radius: 1px !important;
    cursor: pointer !important;
    padding: 0 !important;
    max-width: 100%;
	outline: none;
    border-color: #E4E7EC !important;
    transition: background 0.3s ease, opacity 0.3s ease;
}

button.use-case-template-hero-carousel-indicator:focus {
    outline: none;
}

.use-case-template-hero-carousel-indicator.active {
    background: #22212A !important;
	border-color: #22212A !important;
	outline: none;
}

.use-case-template-hero-carousel-indicator:hover {
    background: #E4E7EC !important;
	outline: none;
	outline: none;
	border-color: #E4E7EC !important;
}

.use-case-template-hero-carousel-caption {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    color: #667085;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.use-case-template-hero-carousel-caption span {
    display: inline-block;
    transition: opacity 0.3s ease;
}

/* ===== AUTHORS SECTION ===== */
.ucm-authors-section {
    padding: 60px 0;
    background: #ffffff;
}

.ucm-authors-wrapper {
    display: flex;
    gap: 20px;
    margin: 0;
    flex-wrap: wrap;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ucm-author-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid #E4E7EC;
    border-radius: 12px;
    flex: 1 1 calc(50% - 10px);
    min-width: 300px;
    transition: all 0.3s ease;
}

.ucm-author-card:hover {
    border-color: #D0D5DD;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ucm-author-card-left {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex: 1;
}

.ucm-author-avatar {
    flex-shrink: 0;
}

.ucm-author-avatar img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.ucm-author-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ucm-author-label {
    font-size: 12px;
    font-weight: 600;
    color: #667085;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ucm-author-name {
    font-size: 18px;
    font-weight: 600;
    color: #101828;
    line-height: 1.4;
}

.ucm-author-bio-preview {
    font-size: 14px;
    color: #667085;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ucm-author-position {
    font-size: 13px;
    color: #175CD3;
    font-weight: 500;
    margin-top: 4px;
}

.ucm-author-card-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
}

.ucm-author-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E4E7EC;
    border-radius: 8px;
    color: #667085;
    transition: all 0.2s ease;
    text-decoration: none;
}

.ucm-author-social-icon:hover {
    background: #F9FAFB;
    border-color: #D0D5DD;
    color: #344054;
}

.ucm-author-social-icon svg {
    width: 18px;
    height: 18px;
}

.ucm-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #F0FDF4;
    border: 1px solid #86EFAC;
    border-radius: 8px;
    color: #166534;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}

.ucm-verified-badge svg {
    flex-shrink: 0;
    color: #22C55E;
}

.ucm-verified-badge strong {
    font-weight: 600;
    color: #14532D;
}

/* Responsive */
@media (max-width: 768px) {
    .ucm-authors-wrapper {
        flex-direction: column;
    }

    .ucm-author-card {
        flex: 1 1 100%;
    }

    .ucm-author-card-left {
        flex-direction: column;
    }

    .ucm-author-card-right {
        flex-direction: row;
        justify-content: flex-start;
    }

    .ucm-author-avatar img {
        width: 80px;
        height: 80px;
    }
}

/* ===== SECTION SEPARATOR ===== */
.use-case-template-section-separator {
    height: 1px;
    background: linear-gradient(to right, transparent, #E4E7EC 20%, #E4E7EC 80%, transparent);
    margin: 0 auto;
    max-width: 1280px;
}

/* ===== CONTENT SECTION ===== */
.use-case-template-section {
    padding: 80px 0;
    background: #ffffff;
}

.use-case-template-section-header {
    margin-bottom: 40px;
}

.use-case-template-section-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 36px !important;
    font-weight: 600 !important;
    line-height: 44px !important;
    letter-spacing: -0.02em !important;
    color: #22212A !important;
    margin: 0 0 16px 0 !important;
}

.use-case-template-section-subtitle {
    font-size: 18px !important;
    line-height: 28px !important;
    color: #667085 !important;
    margin: 0 !important;
}

.use-case-template-section-content {
    font-size: 16px;
    line-height: 28px;
    color: #344054;
}

.use-case-template-section-content p {
    margin-bottom: 20px;
}

.use-case-template-section-content p:last-child {
    margin-bottom: 0;
}

.use-case-template-section-content strong {
    font-weight: 600;
    color: #22212A;
}

.use-case-template-section-content em {
    font-style: italic;
    color: #175CD3;
}

/* ===== FEATURE GRID (3 COLUMNS) ===== */
.use-case-template-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.use-case-template-feature-card {
    background: #FFFFFF;
    border: 1px solid #E4E7EC;
    border-radius: 8px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.use-case-template-feature-card:hover {
    border-color: #175CD3;
    box-shadow: 0 4px 16px rgba(23, 92, 211, 0.1);
    transform: translateY(-4px);
}

/* ===== WORKFLOW CARDS ===== */
.use-case-template-workflow-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.use-case-template-workflow-card {
    background: #FFFFFF;
    border: 1px solid #E4E7EC;
    border-left: 4px solid #175CD3;
    border-radius: 4px;
    padding: 32px;
    transition: all 0.3s ease;
}

.use-case-template-workflow-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.use-case-template-workflow-number {
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: #175CD3;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
}

.use-case-template-workflow-title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #22212A !important;
    margin-bottom: 12px !important;
    line-height: 28px !important;
}

.use-case-template-workflow-content {
    font-size: 16px;
    line-height: 24px;
    color: #344054;
}

.use-case-template-workflow-content ul {
    margin: 16px 0 0 24px;
}

.use-case-template-workflow-content li {
    margin-bottom: 8px;
}

/* ===== MEDIA EMBED ===== */
.use-case-template-media-embed {
    background: #F9FAFB;
    border: 2px dashed #E4E7EC;
    border-radius: 8px;
    padding: 48px;
    text-align: center;
    margin: 32px 0;
}

.use-case-template-media-caption {
    font-size: 14px;
    color: #667085;
    font-style: italic;
}

/* ===== DATA TABLE ===== */
.use-case-template-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 8px;
    border: 1px solid #E4E7EC;
}

.use-case-template-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
}

.use-case-template-table thead {
    background: #F9FAFB;
    border-bottom: 1px solid #E4E7EC;
}

.use-case-template-table th {
    padding: 12px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    color: #667085;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.use-case-template-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #E4E7EC;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.use-case-template-table tbody tr:last-child td {
    border-bottom: none;
}

.use-case-template-table tbody tr:hover {
    background: #F9FAFB;
}

.use-case-template-table td strong {
    font-weight: 600;
    color: #22212A;
}

/* With Dropometer Column Styling - Fallback (overridden by inline styles) */
.use-case-template-table .with-dropometer-column {
    /* Inline styles from shortcode will override these */
}

.use-case-template-table-wrapper--impact {
    position: relative;
}

.use-case-template-table--impact {
    table-layout: fixed;
    background-image: linear-gradient(180deg, var(--ucm-impact-highlight-bg-top, #E0F2FE) 0%, #fff 100%);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 33.333% 100%;
}

.use-case-template-table--impact thead {
    background: transparent;
}

.use-case-template-table--impact th {
    background: #F9FAFB;
}

.use-case-template-table--impact .with-dropometer-column {
    background: transparent;
}

.use-case-template-table--impact tbody tr:hover {
    background: transparent;
}

.use-case-template-table--impact tbody tr:hover td:not(.with-dropometer-column) {
    background: #F9FAFB;
}

/* ===== METRICS GRID ===== */
.use-case-template-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.use-case-template-metric-card {
    background: #FFFFFF;
    border: 1px solid #E4E7EC;
    border-top: 4px solid #175CD3;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
}

.use-case-template-metric-label {
    font-size: 12px;
    font-weight: 600;
    color: #667085;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.use-case-template-metric-value {
    font-size: 40px;
    font-weight: 700;
    color: #175CD3;
    line-height: 1;
    margin-bottom: 16px;
}

.use-case-template-metric-description {
    font-size: 14px;
    line-height: 20px;
    color: #667085;
}

/* ===== HIGHLIGHTED FEATURE ===== */
.use-case-template-highlighted-box {
    background: #F9FAFB;
    border: 1px solid #E4E7EC;
    border-radius: 8px;
    padding: 40px;
    margin: 0px 0;
}

.use-case-template-example-table-heading {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    font-family: 'Inter' !important;
    color: #1E293A !important;
    margin-bottom: 1rem;
}

.use-case-template-charts-heading {
    font-family: 'Inter' !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin-bottom: 0.75rem;
}

.use-case-template-highlighted-box h3 {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #22212A !important;
    font-family: Inter !important;
    margin-bottom: 16px !important;
}

.evidence-box-item {
    background: #F9FAFB;
    border-left: 3px solid #175CD3;
    padding: 16px 20px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.evidence-box-item ul {
    padding-left: 20px;
}

.use-case-template-qc-list {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.25rem 2.5rem;
}

.use-case-template-qc-notes {
    background: #fffbeb;
    border: 1px solid #fde047;
    border-radius: 8px;
    padding: 1.25rem 2.5rem;
    margin-top: 1rem;
}

.use-case-template-highlighted-box p {
    font-size: 16px;
    line-height: 24px;
    color: #344054;
    margin-bottom: 16px;
}

.use-case-template-highlighted-box p:last-child {
    margin-bottom: 0;
}

/* ===== PITFALL CARDS WITH HOVER ===== */
.use-case-template-pitfall-card {
    background: #FFFFFF;
    border: 1px solid #E4E7EC;
    border-radius: 12px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.use-case-template-pitfall-card:hover {
    border-color: #D0D5DD;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.use-case-template-pitfall-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid;
}

.use-case-template-pitfall-card.tip .use-case-template-pitfall-icon-wrapper {
    background: #F0FDF4;
    border-color: #10B981;
}

.use-case-template-pitfall-card.legal .use-case-template-pitfall-icon-wrapper {
    background: #EFF6FF;
    border-color: #3B82F6;
}

.use-case-template-pitfall-card.warning .use-case-template-pitfall-icon-wrapper {
    background: #FFFBEB;
    border-color: #F59E0B;
}

.use-case-template-pitfall-card.tip:hover .use-case-template-pitfall-icon-wrapper {
    background: #10B981;
    border-color: #10B981;
}

.use-case-template-pitfall-card.legal:hover .use-case-template-pitfall-icon-wrapper {
    background: #3B82F6;
    border-color: #3B82F6;
}

.use-case-template-pitfall-card.warning:hover .use-case-template-pitfall-icon-wrapper {
    background: #F59E0B;
    border-color: #F59E0B;
}

.use-case-template-pitfall-icon-wrapper i {
    font-size: 28px;
    transition: all 0.3s ease;
}

.use-case-template-pitfall-card.tip .use-case-template-pitfall-icon-wrapper i {
    color: #10B981;
}

.use-case-template-pitfall-card.legal .use-case-template-pitfall-icon-wrapper i {
    color: #3B82F6;
}

.use-case-template-pitfall-card.warning .use-case-template-pitfall-icon-wrapper i {
    color: #F59E0B;
}

.use-case-template-pitfall-card:hover .use-case-template-pitfall-icon-wrapper i {
    color: #FFFFFF;
}

.use-case-template-pitfall-title {
    font-size: 20px;
    font-weight: 600;
    color: #22212A;
    margin-bottom: 12px;
    line-height: 28px;
}

.use-case-template-pitfall-description {
    font-size: 15px;
    line-height: 24px;
    color: #667085;
}

.use-case-template-pitfall-description strong {
    font-weight: 600;
    color: #22212A;
}

/* ===== CTA SECTION ===== */
.use-case-template-cta-section {
    background: #F9FAFB;
    border-top: 1px solid #E4E7EC;
    border-bottom: 1px solid #E4E7EC;
    padding: 60px 0;
    text-align: center;
}

.use-case-template-cta-title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 32px !important;
    font-weight: 600 !important;
    color: #22212A !important;
    margin-bottom: 12px !important;
    line-height: 40px !important;
}

.use-case-template-cta-description {
    font-size: 18px;
    color: #667085;
    margin-bottom: 32px;
    line-height: 28px;
}

.use-case-template-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

  /* ===== PITFALL GRID ===== */
 .use-case-template-pitfall-grid {
      display: grid;
      gap: 24px;
      margin-top: 40px;
  }

.use-case-template-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    border: 1px solid;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}

.use-case-template-cta-btn-primary {
    background: #175CD3;
    border-color: #175CD3;
    color: #FFFFFF !important;
}

.use-case-template-cta-btn-primary:hover {
    background: #FFA400 !important;
    border-color: #FFA400 !important;
    transform: translateY(-1px);
    box-shadow: 0px 4px 8px rgba(23, 92, 211, 0.2);
}

.use-case-template-cta-btn-secondary {
    background: #FFFFFF;
    border-color: #D0D5DD;
    color: #344054;
}

.use-case-template-cta-btn-secondary:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
    transform: translateY(-1px);
}

/* ===== REFERENCES ===== */
.use-case-template-references {
    padding: 60px 0;
    background: #FFFFFF;
}

.use-case-template-references-list {
    margin-top: 32px;
}

.use-case-template-reference-item {
    background: #FFFFFF;
    border: 1px solid #E4E7EC;
    border-left: 3px solid #175CD3;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.use-case-template-reference-item:hover {
    background: #F9FAFB;
    transform: translateX(4px);
}

.use-case-template-reference-item a {
    color: #175CD3;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.use-case-template-reference-item a:hover {
    text-decoration: underline;
}

.use-case-template-reference-item p {
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .use-case-template-hero-container {
        flex-direction: column;
        gap: 48px;
    }
	
	.use-case-template-pitfall-grid {
    grid-template-columns: repeat(1, 1fr) !important;
}

    .use-case-template-hero-content {
        max-width: 100%;
    }

    .use-case-template-hero-image-wrapper {
        max-width: 100%;
    }

    .use-case-template-hero-carousel-track {
        height: 500px;
    }

    .use-case-template-feature-grid,
    .use-case-template-metrics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .use-case-template-hero-section,
    .use-case-template-section {
        padding: 60px 0;
    }

	
	
	
    .use-case-template-hero-heading {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    .use-case-template-hero-description {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .use-case-template-section-title {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    .use-case-template-hero-carousel-track {
        height: 400px;
    }

    .use-case-template-hero-ctas {
        width: 100%;
    }

    .use-case-template-hero-btn {
        width: 100%;
    }

    .use-case-template-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .use-case-template-cta-btn {
        width: 100%;
    }

    .use-case-template-highlighted-box {
        padding: 24px 20px;
    }

    .use-case-template-workflow-card {
        padding: 24px 20px;
    }

    .use-case-template-feature-grid[style*="repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    .use-case-template-pitfall-card {
        padding: 32px 24px;
    }
}

/* ===== AUTHORS SECTION WITH MODAL ===== */
/* Base font family */
.ucm-custom-authors-wrapper,
.ucm-custom-authors-wrapper * {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ucm-custom-authors-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0;
}

.ucm-custom-author-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 300px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.ucm-custom-author-card:hover {
    border-color: #026dcf;
    box-shadow: 0 4px 12px rgba(2, 109, 207, 0.1);
}

.ucm-custom-card-left {
    display: flex;
    gap: 16px;
    flex: 1;
}

.ucm-custom-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

.ucm-custom-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ucm-custom-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
}

.ucm-custom-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.ucm-custom-bio-preview {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ucm-custom-position {
    font-size: 13px;
    color: #026dcf;
    font-weight: 500;
}

.ucm-custom-readmore-link {
    font-size: 13px;
    color: #026dcf;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.ucm-custom-readmore-link:hover {
    color: #014a8f;
    text-decoration: underline;
}

.ucm-custom-card-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ucm-custom-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ucm-custom-social-icon:hover {
    background: #026dcf;
    transform: translateY(-2px);
}

.ucm-custom-social-icon svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: color 0.3s ease;
}

.ucm-custom-social-icon:hover svg {
    color: #fff;
}

/* Verified Badge Wrapper - provides spacing below author cards */
.ucm-verified-badge-wrapper {
    margin-top: 24px;
    width: 100%;
}

/* Verified Badge */
.ucm-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 8px;
    color: #2e7d32;
    font-size: 14px;
    font-weight: 500;
}

.ucm-verified-badge svg {
    color: #2e7d32;
}

.ucm-verified-badge strong {
    font-weight: 600;
    color: #1b5e20;
}

/* Modal Styles */
.ucm-custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ucm-custom-modal.ucm-custom-modal-active {
    opacity: 1;
}

.ucm-custom-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.ucm-custom-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.ucm-custom-modal.ucm-custom-modal-active .ucm-custom-modal-content {
    transform: scale(1);
}

.ucm-custom-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    text-decoration: none;
}

.ucm-custom-modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.ucm-custom-modal-close svg {
    color: #666;
}

/* Modal Header */
.ucm-custom-modal-header {
    display: flex;
    gap: 24px;
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 1px solid #e0e0e0;
}

.ucm-custom-modal-photo img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}

.ucm-custom-modal-header-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.ucm-custom-modal-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #026dcf;
    background: #e3f2fd;
    padding: 4px 12px;
    border-radius: 20px;
    align-self: flex-start;
}

.ucm-custom-reviewer-badge {
    color: #27ae60;
    background: #e8f5e9;
}

.ucm-custom-modal-name {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0;
    line-height: 1.2;
}

.ucm-custom-modal-job {
    font-size: 16px;
    color: #026dcf;
    font-weight: 500;
    margin: 0;
}

/* Modal Body */
.ucm-custom-modal-body {
    padding: 30px 40px 40px;
}

.ucm-custom-modal-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    font-family: 'Inter';
    font-weight: 400;
    margin-bottom: 24px;
}

.ucm-custom-modal-bio p {
    margin: 0 0 12px 0;
}

.ucm-custom-modal-bio p:last-child {
    margin-bottom: 0;
}

/* Modal Social Links */
.ucm-custom-modal-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.ucm-custom-modal-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ucm-custom-modal-social-link:hover {
    background: #026dcf;
    border-color: #026dcf;
    color: #fff !important;
    transform: translateY(-2px);
}

.ucm-custom-modal-social-link svg {
    width: 18px;
    height: 18px;
    transition: color 0.3s ease;
}

.ucm-custom-modal-social-link:hover svg {
    color: #fff;
}

/* Modal Studies */
.ucm-custom-modal-studies {
    margin-top: 30px;
}

.ucm-custom-modal-studies-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin: 0 0 16px 0 !important;
}

.ucm-custom-modal-studies-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ucm-custom-modal-study-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ucm-custom-modal-study-card:hover {
    border-color: #026dcf;
    box-shadow: 0 4px 12px rgba(2, 109, 207, 0.1);
    transform: translateY(-2px);
}

.ucm-custom-modal-study-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.ucm-custom-modal-study-icon svg {
    width: 24px;
    height: 24px;
}

.ucm-custom-modal-study-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ucm-custom-modal-study-type {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
}

.ucm-custom-modal-study-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.ucm-custom-modal-study-arrow {
    flex-shrink: 0;
    color: #999;
    transition: all 0.3s ease;
}

.ucm-custom-modal-study-card:hover .ucm-custom-modal-study-arrow {
    color: #026dcf;
    transform: translate(4px, -4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ucm-custom-author-card {
        flex: 1 1 100%;
    }

    .ucm-verified-badge-wrapper {
        margin-top: 20px;
    }

    .ucm-verified-badge {
        font-size: 13px;
        padding: 10px 16px;
    }

    .ucm-verified-badge svg {
        width: 18px;
        height: 18px;
    }

    .ucm-custom-modal-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px 20px;
    }

    .ucm-custom-modal-header-info {
        align-items: center;
    }

    .ucm-custom-modal-badge {
        align-self: center;
    }

    .ucm-custom-modal-body {
        padding: 20px;
    }

    .ucm-custom-modal-social {
        padding: 16px;
    }

    .ucm-custom-card-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ucm-custom-info {
        align-items: center;
    }
}

/* ===== HOW THIS PAGE WAS CREATED - ACCORDION ===== */
.use-case-accordion {
    background: #F8F9FA;
    border: 1px solid #E4E7EC;
    border-radius: 12px;
    overflow: hidden;
}

.use-case-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.use-case-accordion-header:hover {
    background: #F0F2F5;
}

.use-case-accordion-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.use-case-accordion-title svg {
    color: #026dcf;
    flex-shrink: 0;
}

.use-case-accordion-icon {
    color: #667085;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.use-case-accordion-header.active .use-case-accordion-icon {
    transform: rotate(180deg);
}

.use-case-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.use-case-accordion-header.active + .use-case-accordion-content {
    max-height: 1000px;
}

.use-case-accordion-list {
    padding: 0 24px 24px;
    margin: 0;
    list-style: none;
}

.use-case-accordion-list li {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #344054;
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
}

.use-case-accordion-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #026dcf;
    font-weight: 700;
    font-size: 18px;
}

.use-case-accordion-list li strong {
    font-weight: 500;
    color: #1a1a1a;
}

/* ===== VALIDATED MEASUREMENT APPROACH ===== */
.use-case-validated-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.use-case-validated-card {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border: 1px solid #BAE6FD;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.use-case-validated-text {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #0C4A6E;
    margin: 0;
}

.use-case-validated-text + .use-case-validated-cta {
    margin-top: 12px;
}

.use-case-validated-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #026dcf;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.use-case-validated-cta:hover {
    color: #014a8f;
    gap: 12px;
}

.use-case-validated-cta svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.use-case-validated-cta:hover svg {
    transform: translate(2px, -2px);
}

/* ===== REPORT A CORRECTION ===== */
.use-case-correction-box {
    background: #FFF7ED;
    border: 2px solid #FED7AA;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.use-case-correction-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFEDD5;
    border-radius: 10px;
}

.use-case-correction-icon svg {
    color: #EA580C;
}

.use-case-correction-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.use-case-correction-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #9A3412;
    margin: 0;
}

.use-case-correction-text {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #7C2D12;
    margin: 0;
}

.use-case-correction-text + .use-case-correction-cta {
    margin-top: 12px;
}

.use-case-correction-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #EA580C;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 4px;
}

.use-case-correction-cta:hover {
    color: #C2410C;
    gap: 12px;
}

.use-case-correction-cta svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.use-case-correction-cta:hover svg {
    transform: translateX(4px);
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .use-case-accordion-header {
        padding: 16px 20px;
    }

    .use-case-accordion-title {
        font-size: 16px;
    }

    .use-case-accordion-list li {
        font-size: 14px;
        padding-left: 20px;
    }

    .use-case-validated-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .use-case-validated-card {
        padding: 20px;
    }

    .use-case-correction-box {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }
}

/* ===== STATIC SECTIONS OVERRIDES (MATCH CORE SECTION UI) ===== */
.use-case-static-notes-panel {
    background: #FFFFFF;
    border: 1px solid #E4E7EC;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.use-case-static-notes-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #E4E7EC;
}

.use-case-static-notes-kicker {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #175CD3;
}

.use-case-static-notes-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #D0D5DD;
    background: #F9FAFB;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #475467;
    white-space: nowrap;
}

.use-case-static-notes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.use-case-static-note-card {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 16px;
    border: 1px solid #E4E7EC;
    border-radius: 8px;
    background: #FFFFFF;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.use-case-static-note-card:hover {
    border-color: #D0D5DD;
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.06);
    transform: translateY(-1px);
}

.use-case-static-note-index {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #175CD3;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.use-case-static-note-body {
    min-width: 0;
}

.use-case-static-note-title {
    margin: 1px 0 6px 0;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 22px !important;
    color: #22212A !important;
}

.use-case-static-note-text {
    margin: 0;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    line-height: 24px;
    color: #344054;
}

.use-case-accordion {
    background: #FFFFFF;
    border: 1px solid #E4E7EC;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.use-case-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    user-select: none;
    border: 0;
    background: #FFFFFF;
    text-align: left;
}

.use-case-accordion-header:hover {
    background: #F9FAFB;
}

.use-case-accordion-header:focus-visible {
    outline: 2px solid #175CD3;
    outline-offset: -2px;
}

.use-case-accordion-header.active {
    border-bottom: 1px solid #E4E7EC;
    background: #F9FAFB;
}

.use-case-accordion-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    margin: 0;
}

.use-case-accordion-kicker {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #175CD3;
}

.use-case-accordion-summary {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    line-height: 22px;
    color: #475467;
}

.use-case-accordion-icon {
    color: #667085;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.use-case-accordion-header.active .use-case-accordion-icon {
    transform: rotate(180deg);
}

.use-case-accordion-content {
    transition: max-height 0.28s ease;
}

.use-case-accordion-header.active + .use-case-accordion-content {
    max-height: 1200px;
}

.use-case-accordion-list {
    padding: 20px 24px 24px;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.use-case-accordion-list li {
    position: relative;
    margin: 0;
    padding: 14px 16px 14px 40px;
    border: 1px solid #E4E7EC;
    border-radius: 8px;
    background: #FFFFFF;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    line-height: 24px;
    color: #344054;
}

.use-case-accordion-list li::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 20px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #175CD3;
    box-shadow: 0 0 0 4px rgba(23, 92, 211, 0.12);
}

.use-case-accordion-list li strong {
    font-weight: 600;
    color: #22212A;
}

.use-case-validated-grid {
    margin-top: 0;
    align-items: stretch;
}

.use-case-validated-card {
    background: #FFFFFF;
    border: 1px solid #E4E7EC;
    border-top: 4px solid #175CD3;
    border-radius: 8px;
    padding: 24px;
    gap: 14px;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.use-case-validated-card:hover {
    border-color: #D0D5DD;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    transform: translateY(-2px);
}

.use-case-validated-label {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #667085;
}

.use-case-validated-text {
    font-size: 16px;
    line-height: 26px;
    color: #344054;
}

.use-case-validated-cta {
    color: #175CD3;
    transition: color 0.2s ease, gap 0.2s ease;
    margin-top: auto;
}

.use-case-validated-cta:hover {
    color: #144CB0;
    gap: 10px;
}

.use-case-validated-cta svg {
    transition: transform 0.2s ease;
}

.use-case-validated-cta:hover svg {
    transform: translate(2px, -1px);
}

.use-case-correction-box {
    background: #FFFFFF;
    border: 1px solid #E4E7EC;
    border-left: 4px solid #F59E0B;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.use-case-correction-icon {
    width: 40px;
    height: 40px;
    background: #FFFAEB;
    border: 1px solid #FDE68A;
    border-radius: 999px;
}

.use-case-correction-icon svg {
    color: #B54708;
    width: 20px;
    height: 20px;
}

.use-case-correction-content {
    gap: 10px;
}

.use-case-correction-label {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #B54708;
}

.use-case-correction-text {
    font-size: 16px;
    line-height: 26px;
    color: #344054;
}

.use-case-correction-cta {
    color: #175CD3;
    transition: color 0.2s ease, gap 0.2s ease;
    margin-top: 2px;
}

.use-case-correction-cta:hover {
    color: #144CB0;
    gap: 10px;
}

.use-case-correction-cta svg {
    transition: transform 0.2s ease;
}

.use-case-correction-cta:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .use-case-static-notes-panel {
        padding: 20px;
    }

    .use-case-static-notes-meta {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 14px;
        padding-bottom: 12px;
    }

    .use-case-static-notes-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .use-case-static-note-card {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
        padding: 14px;
    }

    .use-case-static-note-index {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .use-case-static-note-title {
        font-size: 15px !important;
        line-height: 21px !important;
    }

    .use-case-static-note-text {
        font-size: 14px;
        line-height: 22px;
    }

    .use-case-accordion-header {
        padding: 16px 20px;
    }

    .use-case-accordion-list {
        padding: 16px 20px 20px;
        gap: 10px;
    }

    .use-case-accordion-list li {
        font-size: 14px;
        line-height: 22px;
        padding: 12px 14px 12px 34px;
    }

    .use-case-accordion-list li::before {
        left: 14px;
        top: 17px;
        width: 7px;
        height: 7px;
    }

    .use-case-validated-card {
        padding: 20px;
    }

    .use-case-correction-box {
        flex-direction: column;
        padding: 20px;
        gap: 14px;
    }
}

/* ===== UTILITY - HIDE EMPTY SECTIONS ===== */
[data-section-visible="false"] {
    display: none;
}
