

/* ===== Who We're Looking For ===== */

.wk-checklist-wrapper{

    width:100%;

    padding:70px 15px;

    box-sizing:border-box;

    font-family:inherit;

}

.wk-checklist-header{

    text-align:center;

    margin-bottom:45px;

}

.wk-checklist-subtitle{

    font-size:12px;

    letter-spacing:3px;

    color:#999999;

    text-transform:uppercase;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    margin-bottom:18px;

}

.wk-checklist-subtitle:before,
.wk-checklist-subtitle:after{

    content:"";

    width:35px;

    height:1px;

    background:#dcdcdc;

}

.wk-checklist-title{

    font-size:36px;

    font-weight:800;

    color:#222222;

    margin:0 0 18px;

    line-height:1.25;

}

.wk-checklist-desc{

    max-width:760px;

    margin:0 auto;

    font-size:16px;

    line-height:1.8;

    color:#666666;

}

/* 白色内容卡 */

.wk-checklist-box{

    max-width:1000px;

    margin:45px auto 0;

    background:#ffffff;

    border-radius:18px;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:0 8px 24px rgba(0,0,0,.05);

    padding:40px 45px;

}

/* 两列 */

.wk-checklist-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    column-gap:50px;

    row-gap:26px;

}

/* 单项 */

.wk-check-item{

    display:flex;

    align-items:flex-start;

    gap:16px;

}

/* √ */

.wk-check-icon{

    flex-shrink:0;

    width:32px;

    height:32px;

    border-radius:50%;

    background:#73BD02;

    color:#222222;

    font-size:18px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

}

/* 标题 */

.wk-check-title{

    font-size:18px;

    font-weight:700;

    color:#222222;

    margin-bottom:6px;

    line-height:1.35;

}

/* 描述 */

.wk-check-text{

    font-size:15px;

    color:#666666;

    line-height:1.65;

}

/* ================= Mobile ================= */

@media(max-width:768px){

    .wk-checklist-wrapper{

        padding:45px 12px;

    }

    .wk-checklist-title{

        font-size:28px;

    }

    .wk-checklist-desc{

        font-size:14px;

        line-height:1.7;

    }

    .wk-checklist-box{

        padding:26px 20px;

        margin-top:30px;

        border-radius:16px;

    }

    .wk-checklist-grid{

        grid-template-columns:1fr;

        row-gap:22px;

    }

    .wk-check-icon{

        width:28px;

        height:28px;

        font-size:16px;

    }

    .wk-check-title{

        font-size:17px;

    }

    .wk-check-text{

        font-size:14px;

    }

}

