/* =============================================================
   SPECIALIZED PAGE — Scoped page styles
   Only loaded on specialized.php
   ============================================================= */

/* ── Laundry & Sanitation section background ── */
.specialized-process-section {
    background: var(--bg-light);
}

/* ── Paragraph spacing inside step cards ── */
.specialized-process-step p {
    margin-bottom: 1rem;
}

/* ── Process steps — 2-column grid layout ── */
.specialized-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* ── Individual step card styling ── */
.specialized-process-step {
    text-align: left;
    padding: 2.5rem;
    background: var(--accent-color);
    display: flex;
    flex-direction: column;
}

/* ── Step icon alignment ── */
.specialized-step-icon {
    justify-content: flex-start;
    margin-bottom: 0.75rem;
}

/* ── Checklist inside step cards ── */
.specialized-step-checklist {
    margin-bottom: 0;
    margin-top: 1rem;
}

/* ── Lord-icon step sizing ── */
.lordicon-step {
    width: 36px;
    height: 36px;
}

/* ── Responsive: single column on tablet and below ── */
@media (max-width: 768px) {
    .specialized-process-steps {
        grid-template-columns: 1fr;
    }
}
