/* ==========================================================================
   Voorlezen Mobile — V4 mobile styles
   Prefix: kpvm-
   Depends on shared.css
   ========================================================================== */

/* --- Page title --- */
.kpvm-title {
    padding: 24px 20px 12px;
}
.kpvm-title h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 36px;
    color: var(--color-text);
    margin: 0;
    line-height: 1.05;
}

/* --- Hero (grey card with photo on top + text below) --- */
.kpvm-hero {
    padding: 8px 20px 24px;
}
.kpvm-hero__card {
    background: var(--color-grey-warm);
    border-radius: var(--radius-card);
    padding: 24px 20px;
}
.kpvm-hero__photo {
    margin: 0 0 16px;
    line-height: 0;
}
.kpvm-hero__photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.kpvm-hero__text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
}
.kpvm-hero__text p {
    margin: 0 0 14px;
}
.kpvm-hero__text p:last-child {
    margin-bottom: 0;
}

/* --- 5 numbered benefit cards (same pattern as leestips) --- */
.kpvm-benefits {
    padding: 40px 20px 24px;
}
.kpvm-benefit {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-card);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    padding: 44px 22px 24px;
    margin-bottom: 44px;
    text-align: center;
}
.kpvm-benefit:last-child {
    margin-bottom: 0;
}
.kpvm-benefit__num {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-white);
    border: 4px solid var(--color-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
}
.kpvm-benefit__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 28px;
    color: var(--color-text);
    line-height: 1.15;
    margin: 0 0 26px;
}
.kpvm-benefit__text {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* --- Tips (rich content block in grey card) --- */
.kpvm-tips {
    padding: 0 20px 32px;
}
.kpvm-tip {
    background: var(--color-grey-warm);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    margin-bottom: 20px;
}
.kpvm-tip:last-child {
    margin-bottom: 0;
}
.kpvm-tip__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 22px;
    color: var(--color-text);
    line-height: 1.3;
    margin: 0 0 16px;
}
.kpvm-tip__body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.6;
}
.kpvm-tip__body p {
    margin: 0 0 14px;
}
.kpvm-tip__body p:last-child {
    margin-bottom: 0;
}
.kpvm-tip__body ul {
    background: var(--color-white);
    border-radius: 10px;
    margin: 0 0 14px;
    padding: 16px 18px 16px 36px;
    list-style: disc;
}
.kpvm-tip__body li {
    margin-bottom: 8px;
}
.kpvm-tip__body li:last-child {
    margin-bottom: 0;
}
