/* ============================================================
   What It Takes Block
   ============================================================ */

.wit-block {
    padding: 60px 20px;
    background: #fff;
}

.wit-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* ── Heading ─────────────────────────────────────────────── */

.wit-heading {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

/* ── Description ─────────────────────────────────────────── */

.wit-description {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    text-align: center;
    max-width: 720px;
    margin: 0;
}

/* ── Grid ────────────────────────────────────────────────── */

.wit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 32px;
    width: 100%;
    margin-top: 12px;
}

/* ── Item ────────────────────────────────────────────────── */

.wit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wit-check {
    flex-shrink: 0;
    margin-top: 2px;
	svg{
    width: 35px;
    height: 35px;		
	}
}

.wit-item-text {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    line-height: 1.5;
}

/* ── Closing Line ────────────────────────────────────────── */

.wit-closing {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin: 12px 0 0;
}

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

@media (max-width: 768px) {
    .wit-heading {
        font-size: 26px;
    }

    .wit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .wit-grid {
        grid-template-columns: 1fr;
    }
}