/* =========================
   PULS7 Morning Show
========================= */


main {

    width:min(1000px,90%);

    margin:100px auto;

    font-family:"Inter",sans-serif;

}



/* Header */

.show-header {

    text-align:center;

    margin-bottom:100px;

}


.show-time {

    color:#ff3b30;

    font-size:15px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

}


.show-header h1 {

    margin:25px 0;

    font-size:56px;

    line-height:1.1;

    font-weight:900;

    color:#111827;

    letter-spacing:-2px;

}


.show-header p {

    max-width:700px;

    margin:auto;

    color:#6b7280;

    font-size:19px;

    line-height:1.7;

}



/* Content */

.show-content {

    display:flex;

    flex-direction:column;

    gap:70px;

}



.show-block {

    border-top:1px solid #e5e7eb;

    padding-top:40px;

}



.show-block h2 {

    font-size:30px;

    font-weight:800;

    color:#111827;

    margin-bottom:20px;

}



.show-block p {

    color:#6b7280;

    font-size:17px;

    line-height:1.8;

    max-width:800px;

}



.show-block ul {

    padding:0;

    list-style:none;

}


.show-block li {

    padding:15px 0;

    border-bottom:1px solid #e5e7eb;

    color:#374151;

    font-size:17px;

}



/* Moderator */

.moderator h3 {

    font-size:32px;

    margin-bottom:10px;

    color:#111827;

}



/* Mobile */

@media(max-width:700px){


    main {

        margin:70px auto;

    }


    .show-header h1 {

        font-size:38px;

    }


    .show-header p {

        font-size:16px;

    }


    .show-block h2 {

        font-size:24px;

    }


}