/* ===========================================
   Pro Tip Box — metablogue.com
   Mobile-first. Accent: #C0602B
   =========================================== */

.mb-protip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #C0602B;
    color: #fff;
    padding: 16px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin: 24px 0;
    line-height: 1.5;
}

.mb-protip__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mb-protip__icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.mb-protip__label {
    font-weight: 700;
    white-space: nowrap;
}

.mb-protip__text {
    flex: 1;
}

/* --- ≥ 600 px --- */
@media (min-width: 600px) {
    .mb-protip {
        padding: 18px 28px;
        gap: 16px;
    }
}
