/* ============================================================
   Incotec Praxisbeispiel (Case Study) Widget
   ============================================================ */

.incotec-case-study {
    --accent: #7AD3C1;
    font-family: "Montserrat", sans-serif;
    background: #f8faf9;
    border: 1px solid #e8eeeb;
    border-radius: 12px;
    padding: 28px 32px;
}

/* ── Category Label ────────────────────────────────────────── */

.incotec-case-study__category {
    display: inline-block;
    padding-left: 12px;
    border-left: 3px solid var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #3E5B75;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* ── Body / Sections ───────────────────────────────────────── */

.incotec-case-study__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.incotec-case-study__section {
    /* individual section block */
}

.incotec-case-study__label {
    font-size: 15px;
    font-weight: 700;
    color: #002D47;
    margin-bottom: 4px;
}

.incotec-case-study__content {
    font-size: 15px;
    line-height: 1.7;
    color: #3E5B75;
}

/* ── Dos & Don'ts ──────────────────────────────────────────── */

.incotec-case-study__dosdonts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e8eeeb;
}

.incotec-case-study__do,
.incotec-case-study__dont {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.incotec-case-study__dd-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-top: 1px;
}

.incotec-case-study__dd-icon--do {
    background: #DEF7EC;
    color: #166534;
}

.incotec-case-study__dd-icon--dont {
    background: #FDE8E8;
    color: #991b1b;
}

.incotec-case-study__dd-text {
    font-size: 14px;
    line-height: 1.6;
    color: #3E5B75;
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 767px) {
    .incotec-case-study {
        padding: 20px;
    }

    .incotec-case-study__dosdonts {
        grid-template-columns: 1fr;
    }
}
