/* ================= SECTIONS ================= */

.doc-section{
    padding:90px 0;
}

/* alternating background for readability */
.doc-section.alt{
    background:var(--light-bg);
}

/* ================= HEADINGS ================= */

.doc-section h2{
    font-size:2.3rem;
    color:var(--green-dark);
    margin-bottom:25px;
    line-height:1.2;
}

/* subsection headings */
.doc-section h3{
    font-size:1.35rem;
    color:var(--green);
    margin-top:35px;
    margin-bottom:12px;

    position:relative;
    padding-left:14px;
}

.doc-section h3::before{
    content:"";
    position:absolute;
    left:0;
    top:5px;

    width:4px;
    height:18px;
    background:var(--yellow);
    border-radius:2px;
}

/* ================= TEXT ================= */

.doc-section p{
    font-size:1.15rem;
    line-height:1.9;
    margin-bottom:18px;
    color:var(--text);
}

/* optional readability cap ONLY on text */
.doc-section p{
    max-width:900px;
}

/* last paragraph spacing cleanup */
.doc-section p:last-child{
    margin-bottom:0;
}

/* ================= LISTS ================= */

.doc-section ul{
    margin:18px 0 25px;
    padding-left:20px;
    max-width:900px;
}

.doc-section ul li{
    margin-bottom:10px;
    line-height:1.7;
    font-size:1.1rem;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .page-hero{
        padding:150px 16px 70px;
    }

    .page-hero h1{
        font-size:34px;
    }

    .page-hero p{
        font-size:1.05rem;
    }

    .doc-section{
        padding:70px 16px;
    }

    .doc-section h2{
        font-size:1.8rem;
    }

    .doc-section p{
        font-size:1.05rem;
    }
}