/*==================================================
ESSAY READER
Awaken Your Inner Compass
==================================================*/

:root{

    --paper:#FAF8F4;
    --text:#353535;
    --heading:#1F1F1F;

    --green:#2F4F46;
    --gold:#C8A15A;

    --border:#E6E0D8;

    --reading-width:760px;

}

body{

    margin:0;

    background:var(--paper);

    color:var(--text);

    font-family:Inter,sans-serif;

    line-height:1.95;

    font-size:18px;

    -webkit-font-smoothing:antialiased;

}

.reading-width{

    width:min(var(--reading-width),92%);

    margin:auto;

}

/*==================================================
READER HEADER
==================================================*/

.reader-header{

    position:sticky;

    top:0;

    z-index:999;

    background:rgba(250,248,244,.92);

    backdrop-filter:blur(14px);

    border-bottom:1px solid var(--border);

}

.reader-container{

    width:min(1200px,95%);

    height:72px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.back-home{

    text-decoration:none;

    color:#777;

    font-size:.95rem;

    transition:.3s;

}

.back-home:hover{

    color:var(--gold);

}

.reader-logo{

    text-decoration:none;

    color:var(--heading);

    font-family:"Cormorant Garamond",serif;

    font-size:1.75rem;

}

/*==================================================
INTRO
==================================================*/

.essay-intro{

    padding:90px 0 60px;

}

.essay-category{

    letter-spacing:.35em;

    text-transform:uppercase;

    color:var(--gold);

    font-size:.78rem;

    margin-bottom:18px;

}

.essay-intro h1{

    margin:0;

    font-family:"Cormorant Garamond",serif;

    font-size:4rem;

    font-weight:500;

    line-height:1.05;

    color:var(--heading);

}

.essay-description{

    margin-top:28px;

    font-size:1.3rem;

    color:#666;

    max-width:600px;

}

.essay-meta{

    display:flex;

    align-items:center;

    gap:20px;

    margin-top:45px;

}

.listen-btn{

    border:none;

    padding:12px 24px;

    border-radius:999px;

    background:var(--green);

    color:white;

    cursor:pointer;

    transition:.3s;

}

.listen-btn:hover{

    background:var(--gold);

}

/*==================================================
BODY
==================================================*/

.essay-body{

    padding:20px 0 100px;

}

.essay-body p{

    margin:0 0 2rem;

}

.essay-body p:first-child{

    font-size:1.2rem;

}

.essay-body p:first-child::first-letter{

    float:left;

    font-family:"Cormorant Garamond",serif;

    font-size:5rem;

    line-height:.82;

    color:var(--gold);

    padding-right:12px;

}

.essay-body p:first-child{

    font-size:1.2rem;

}

.essay-body p:first-child::first-letter{

    float:left;

    font-family:"Cormorant Garamond",serif;

    font-size:5rem;

    line-height:.82;

    color:var(--gold);

    padding-right:12px;

}

strong{

    color:var(--heading);

    font-weight:600;

}

em{

    color:var(--green);

    font-style:italic;

}

blockquote{

    margin:70px auto;

    padding:0;

    max-width:620px;

    text-align:center;

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    font-style:italic;

    line-height:1.7;

    color:var(--green);

}

.essay-body h2{

    margin:90px 0 25px;

    text-align:center;

    font-family:"Cormorant Garamond",serif;

    font-size:3rem;

    font-weight:500;

    color:var(--heading);

}

.ending{

    text-align:center;

    font-size:1.35rem;

    color:var(--green);

}

.echo{

    border-top:1px solid var(--border);

    border-bottom:1px solid var(--border);

    padding:90px 0;

    text-align:center;

}

.echo p{

    text-transform:uppercase;

    letter-spacing:.35em;

    font-size:.78rem;

    color:var(--gold);

}

.echo cite{

    display:block;

    margin-top:25px;

    color:#888;

}

.continue-reading{

    padding:90px 0;

}

.continue-reading h3{

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    margin-bottom:35px;

}

.continue-reading a{

    display:block;

    padding:18px 0;

    border-bottom:1px solid var(--border);

    color:var(--heading);

    text-decoration:none;

    transition:.3s;

}

.continue-reading a:hover{

    color:var(--gold);

    padding-left:12px;

}

.reader-footer{

    padding:80px 0;

    border-top:1px solid var(--border);

    text-align:center;

}

.reader-footer p{

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    margin:0;

}

.reader-footer small{

    display:block;

    margin-top:15px;

    color:#888;

}

@media (max-width:768px){

    body{

        font-size:17px;

    }

    .reader-header{

        position:relative;

    }

    .reader-logo{

        display:none;

    }

    .essay-intro{

        padding:55px 0 35px;

    }

    .essay-intro h1{

        font-size:2.7rem;

    }

    .essay-description{

        font-size:1.05rem;

    }

    blockquote{

        font-size:1.55rem;

        margin:50px auto;

    }

    .essay-body h2{

        font-size:2.3rem;

    }

}