/* ──────────────────────────────────────────
 * Incotec Info-Box Widget
 * ────────────────────────────────────────── */

.incotec-info-box {
    border-left: 4px solid #002D47;
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 24px 0;
    font-family: "Montserrat", sans-serif;
}

/* Label (supports h2-h6 and div with identical appearance) */
.incotec-info-box__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 8px;
    padding: 0;
    line-height: 1.4;
    color: #002D47;
}

/* Content */
.incotec-info-box__content {
    font-size: 15px;
    line-height: 1.7;
    color: #002D47;
}

.incotec-info-box__content p:last-child {
    margin-bottom: 0;
}

/* ──────────────────────────────────────────
 * Variants
 * ────────────────────────────────────────── */

/* Blue */
.incotec-info-box--blue {
    background-color: #e8f4fd;
}

/* Yellow */
.incotec-info-box--yellow {
    background-color: #fef9e7;
    border-left-color: #f59e0b;
}

/* Green */
.incotec-info-box--green {
    background-color: #eaf7f4;
    border-left-color: #7AD3C1;
}

/* Red */
.incotec-info-box--red {
    background-color: #fef2f2;
    border-left-color: #dc2626;
}

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

@media (max-width: 767px) {
    .incotec-info-box {
        padding: 16px 18px;
        margin: 16px 0;
    }

    .incotec-info-box__content {
        font-size: 14px;
    }
}
