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

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

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

/* --- 10 tip cards --- */
.kplm-tips {
    padding: 40px 20px 32px;
}
.kplm-tip {
    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;
}
.kplm-tip:last-child {
    margin-bottom: 0;
}
.kplm-tip__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;
}
.kplm-tip__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 24px;
    color: var(--color-text);
    line-height: 1.15;
    margin: 0 0 10px;
}
.kplm-tip__text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}
