/* ==========================================================
   INFORMATION LAYOUT
========================================================== */


.info-layout{

    max-width:1200px;

    margin:40px auto 50px;

    display:grid;

    grid-template-columns:2.2fr 1fr;

    gap:30px;

    align-items:start;

}






/* ==========================================================
   ABOUT SECTION
========================================================== */


.about-section{

    background:white;

    border-radius:12px;

    padding:45px 35px;

    box-shadow:0 6px 20px rgba(0,0,0,.12);

    text-align:center;

    box-sizing:border-box;

}





.about-title{

    font-size:48px;

    font-weight:bold;

    margin:0 0 5px;

    color:#444444;

}





.about-intro{

    font-size:16px;

    font-weight:bold;

    margin:0 0 30px;

    color:#777777;

}





.about-description{

    max-width:750px;

    margin:0 auto 35px;

    font-size:16px;

    line-height:1.8;

    color:#555555;

}





.about-quote{

    display:block;

    margin-bottom:35px;

    font-size:22px;

    font-weight:bold;

    line-height:1.5;

    color:#333333;

}





.about-left{

    text-align:left;

}





.about-left p{

    margin-bottom:25px;

}





.start-button{

    display:inline-block;

    padding:15px 32px;

    background:#222222;

    color:white;

    text-decoration:none;

    border-radius:8px;

    font-size:18px;

    font-weight:bold;

    transition:.2s ease;

}





.start-button:hover{

    background:#555555;

    transform:translateY(-3px);

}








/* ==========================================================
   RIGHT SIDE PANELS
========================================================== */


.side-information{

    display:flex;

    flex-direction:column;

    gap:30px;

}






.faq-section,
.contact-section{

    background:white;

    border-radius:12px;

    padding:25px;

    box-shadow:0 6px 20px rgba(0,0,0,.12);

}





.side-title{

    text-align:center;

    font-size:28px;

    margin:0 0 20px;

    color:#444444;

}



.contact-section a{

    color:#222;

    font-weight:bold;

    text-decoration:none;

}


.contact-section a:hover{

    color:#777;

    text-decoration:underline;

}




/* ==========================================================
   FAQ
========================================================== */


.faq-scroll{

    max-height:420px;

    overflow-y:auto;

    padding-right:8px;

}





.faq-item{

    border-bottom:1px solid #ddd;

    padding-bottom:12px;

    margin-bottom:15px;

}





.faq-item summary{

    cursor:pointer;

    font-size:16px;

    font-weight:bold;

    color:#333333;

}





.faq-item p{

    font-size:15px;

    line-height:1.6;

    color:#555555;

    margin-top:10px;

}





.faq-item strong{

    color:#333333;

}








/* ==========================================================
   CONTACT
========================================================== */


.contact-list{

    font-size:15px;

    line-height:1.8;

    color:#555555;

}





.contact-list strong{

    color:#333333;

}





/* ==========================================================
   COMIC ARCHIVE
========================================================== */


.archive-section{

    max-width:1200px;

    margin:40px auto 50px;

    padding:0 20px;

    box-sizing:border-box;

}




.archive-title{

    text-align:center;

    font-size:42px;

    margin-bottom:40px;

    color:#444444;

}






.archive-grid{

    display:flex;

    flex-direction:column;

    gap:30px;

}






/* =========================
   CHAPTER CARD
========================= */


.chapter-card{

    background:white;

    border-radius:14px;

    padding:20px;

    box-shadow:0 6px 20px rgba(0,0,0,.12);

    width:100%;

    box-sizing:border-box;

}






.chapter-header{

    display:flex;

    align-items:flex-end;

    gap:12px;

    margin-bottom:8px;

}






.chapter-title{

    font-size:24px;

    font-weight:bold;

    color:#333;

}






.chapter-subtitle{

    font-size:18px;

    font-weight:bold;

    color:#7c7c7c;

    margin-bottom:5px;

}






.chapter-count{

    color:#777;

    margin-bottom:18px;

}






/* =========================
   PAGE BUTTON GRID
========================= */


.page-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,24px);

    gap:5px;

}






.page-box{

    width:24px;

    height:24px;

    border-radius:4px;

    background:#222;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:10px;

    font-weight:bold;

    text-decoration:none;

    transition:.2s;

}





.page-box:hover{

    background:#555;

    transform:translateY(-2px);

}


/* ==========================================================
   MOBILE
========================================================== */


@media(max-width:900px){


    .info-layout{

        grid-template-columns:1fr;

        margin:25px 15px 40px;

    }



    .about-section{

        padding:30px 20px;

    }



    .about-title{

        font-size:36px;

    }



    .about-quote{

        font-size:18px;

    }



    .faq-scroll{

        max-height:none;

    }



}

/* Prevent About layout styles from affecting archive */

.archive-section,
.archive-section *{

    box-sizing:border-box;

}