/*==================================================

ACADEMY SINGLE

Awaken Your Inner Compass

==================================================*/


/*=========================
GENERAL
==========================*/

.lesson-hero,
.lesson-section,
.lesson-navigation{

    padding:7rem 0;

}

.reading-width{

    width:min(720px,92%);
    margin:auto;

}

.cream{

    background:#FAF8F4;

}



/*=========================
BACK LINK
==========================*/

.back-link{

    display:inline-block;

    margin-bottom:4rem;

    color:var(--green);

    text-decoration:none;

    font-size:.95rem;

    transition:.3s;

}

.back-link:hover{

    color:var(--gold);

}



/*=========================
HERO
==========================*/

.lesson-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:5rem;

    align-items:center;

}

.lesson-image img{

    width:100%;

    border-radius:22px;

    display:block;

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.lesson-number{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:.8rem;

}

.lesson-content h1{

    margin:1rem 0;

    font-size:4rem;

    color:var(--green);

    line-height:1.1;

}

.lesson-content h2{

    font-size:1.8rem;

    color:var(--rose);

    font-weight:400;

    margin-bottom:2rem;

}

.lesson-content blockquote{

    font-size:1.35rem;

    line-height:1.7;

    color:#555;

    font-style:italic;

    margin:0;

}



/*=========================
SECTION LABEL
==========================*/

.section-label{

    display:inline-block;

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:.8rem;

    margin-bottom:1rem;

}



/*=========================
HEADINGS
==========================*/

.lesson-section h2{

    font-size:2.2rem;

    color:var(--green);

    margin-bottom:2rem;

    line-height:1.3;

}

.lesson-section h3{

    color:var(--green);

    font-size:1.35rem;

    margin-bottom:1rem;

}



/*=========================
BODY TEXT
==========================*/

.lesson-section p{

    color:#555;

    line-height:2.1;

    font-size:1.08rem;

    margin-bottom:1.7rem;

}



/*=========================
BIG QUESTION
==========================*/

.big-question{

    text-align:center;

    font-size:2.7rem !important;

    font-weight:300;

    line-height:1.5;

    max-width:650px;

    margin:auto;

}



/*=========================
LESSONS
==========================*/

.lesson-item{

    padding:3rem 0;

    border-top:1px solid rgba(0,0,0,.08);

}

.lesson-item:last-child{

    border-bottom:1px solid rgba(0,0,0,.08);

}

.lesson-item span{

    color:var(--gold);

    font-size:.85rem;

    letter-spacing:3px;

}

.lesson-item h3{

    margin-top:.8rem;

}



/*=========================
REFLECTION
==========================*/

.reflection{

    text-align:center;

}

.reflection h2{

    max-width:600px;

    margin:auto;

    font-style:italic;

    font-weight:400;

}



/*=========================
NAVIGATION
==========================*/

.lesson-navigation{

    border-top:1px solid rgba(0,0,0,.06);

}

.navigation-grid{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.navigation-grid a{

    color:var(--green);

    text-decoration:none;

    transition:.3s;

    display:flex;

    flex-direction:column;

    gap:.4rem;

}

.navigation-grid a strong{

    font-size:1.1rem;

    font-weight:600;

}

.navigation-grid a:hover{

    color:var(--gold);

}



/*=========================
RESPONSIVE
==========================*/

@media(max-width:980px){

.lesson-grid{

grid-template-columns:1fr;

text-align:center;

gap:3rem;

}

.lesson-image{

max-width:320px;

margin:auto;

}

.lesson-content h1{

font-size:3rem;

}

}

@media(max-width:768px){

.lesson-hero,
.lesson-section,
.lesson-navigation{

padding:5rem 0;

}

.big-question{

font-size:2rem !important;

}

.lesson-section h2{

font-size:1.8rem;

}

.navigation-grid{

flex-direction:column;

gap:2rem;

text-align:center;

}

}