/* Container Layout */
.ai-use-case-container {
    width: 100%;
    margin: 0 auto;
}

.ai-use-case-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.ai-use-case-left {
    flex: 1;
    min-width: 300px;
}

.ai-use-case-right {
    flex: 0 0 380px;
    max-width: 100%;
    position: sticky;
    top: 100px; /* Make the right column sticky */
}

@media (max-width: 991px) {
    .ai-use-case-wrapper {
        flex-direction: column;
    }
    
    .ai-use-case-right {
        flex: 1;
        width: 100%;
        position: static; /* Disable sticky on mobile */
    }
}

/* Left Column Styling */
.ai-use-case-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #202C40; /* Fallback primary */
    border-radius: 4px;
    margin-bottom: 25px;
    letter-spacing: 0.8px;
}

.ai-use-case-headline {
    font-size: 34px;
    line-height: 1.25;
    color: #202C40;
    margin-bottom: 25px;
    font-weight: 700;
}

.ai-use-case-intro {
    font-size: 17px;
    line-height: 1.65;
    color: #4A5568;
    margin-bottom: 35px;
}

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

.ai-use-case-section h3 {
    font-size: 22px;
    color: #202C40;
    margin-bottom: 20px;
    font-weight: 700;
}

.ai-use-case-content {
    font-size: 16px;
    line-height: 1.6;
    color: #4A5568;
}

.ai-use-case-content ul {
    padding-left: 20px;
    margin-top: 15px;
}

.ai-use-case-content li {
    margin-bottom: 10px;
}

/* Action Points List (What We Do) */
.ai-use-case-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.ai-use-case-action-item {
    display: flex;
    align-items: flex-start;
}

.ai-use-case-check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #EBF0F2; /* Fallback secondary */
    color: #BBA364; /* Accent color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 11px;
    margin-top: 2px;
}

.ai-use-case-action-content {
    flex: 1;
}

.ai-use-case-action-text {
    font-size: 16px;
    color: #202C40;
    line-height: 1.5;
    font-weight: 600;
    display: block;
}

.ai-use-case-action-desc {
    font-size: 14px;
    color: #718096;
    margin: 4px 0 0 0;
    line-height: 1.4;
}

/* Right Column: Outcome Card */
.ai-use-case-card {
    background-color: #F8F9FA;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 40px;
    border: 1px solid rgba(0,0,0,0.03);
}

.ai-use-case-card-header {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.ai-use-case-card-title {
    font-size: 12px;
    text-transform: uppercase;
    color: #BBA364;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ai-use-case-card-label {
    font-size: 24px;
    font-weight: 700;
    color: #202C40;
    line-height: 1.2;
}

.ai-use-case-card-subtext {
    font-size: 14px;
    color: #718096;
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.5;
}

/* Outcomes List */
.ai-use-case-outcomes {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.ai-use-case-outcome-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #2D3748;
    font-weight: 500;
}

/* Disable pseudo-elements to avoid double icons from themes */
.ai-use-case-outcome-item::before,
.ai-use-case-outcome-item::after {
    content: none !important;
    display: none !important;
}

.ai-use-case-arrow {
    margin-right: 10px;
    font-size: 12px;
    color: #BBA364; /* Accent */
}

/* Typical Situations */
.ai-use-case-situations-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #202C40;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 3px solid #BBA364;
    padding-left: 12px;
}

.ai-use-case-situations-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-use-case-situation-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #edf2f7;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.ai-use-case-situation-icon {
    flex-shrink: 0;
    margin-right: 12px;
    color: #718096;
    font-size: 16px;
    margin-top: 2px;
}

.ai-use-case-situation-text {
    font-size: 14px;
    line-height: 1.4;
    color: #4A5568;
    font-weight: 500;
}

/* CTA Box */
.ai-use-case-cta-box {
    background-color: #202C40;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 50px;
}

.ai-use-case-cta-box h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.ai-use-case-cta-box p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}
