h1 {
    font-size: 1.7rem;
}

h2 {
    font-size: 1.4rem;
}

p, li {
    font-size: 20px;
}

li {
    padding-bottom: 0.1rem;
}

.w-70 {
    width: 70%;
}

.title {
    background-color: #FAFFD2;
    padding: 3rem 0;
}

.play_button {
    width: 150px;
}

.fa-arrow-up-from-bracket {
    font-size: 18px
}

.program_photo {
    width: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.nature_blog_div {
    max-width: 1000px;
}

.audio_player {
    width: 100%;
    background-color: rgba(87, 177, 50, 0.8);
    height: 220px;
    /* position: fixed; */
    bottom: 0px;
}

.audio_player i {
    color: #fff;
    font-size: 38px;
}

.podcast_content {
    margin: 3rem auto;
    min-height: calc(100vh - 300px);
}

.podcast-img-div {
    background-color: rgb(255, 255, 255);
    border-radius:5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    padding:0.2rem;
    max-width: 60px;
}

.w-80 {
    width: 80%;
}

.timer-bar {
    background-color: #fff;
    width: 300px;
    height: 2px;
    border-radius: 2px; 
}

#progress {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    cursor: pointer;
    margin: 5px 0;
}
 
#progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: #57b132;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 5px rgba(48, 99, 28, 0.22);
}

.active {
    color: #fff;
}

.content_cube {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
    margin: 3rem;
}

.content_cube h1 {
    font-size: 2.5rem;
}

.biger_icon {
    font-size: 25px;
}

.order-modal {
    position: fixed;
    top: 15rem;
    /* background-color: #fff; */
    border: 1px solid #ccc;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.3);
    padding: 1rem 2rem;
    min-height: 250px;
    z-index: 99999;
}

@media screen and (max-width:490px) {
    .scroll-top {
        bottom: 150px;
    }

    .audio_player {
        bottom: 0px;
        z-index: 999999;
    }

    .title {
        background-color: #FAFFD2;
    }

    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }


    .play_button {
        width: 50%;
    }

    .audio_player {
        position: relative;
        height: 300px;
    }

    .audio_player i {
        font-size: 30px;
    }

    .program_photo {
        width: 200px;
    }
    
    .podcast-img-div {
        max-width: 80px;
    }

    .content_cube {
        width: 100%;
        height: 150px;
        margin: 0.5rem 0;
        padding: 0 0.5rem;
    }

    .play_button {
        width: 100%;
    }

    .content_cube h1 {
        font-size: 1.8rem;
    }

    .nature_blog_div {
        overflow-x: scroll;
    }
    .nature_blog_div::-webkit-scrollbar {
        display: none;
    }

    .nature_blog_div button h5 {
        white-space: nowrap;
        padding: 0 1rem;
    }

    .ellipsis {
        display: -webkit-box;
        -webkit-line-clamp: 2;      /* 限定行數（2 行） */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .title_share_button {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .biger_icon {
        font-size: 23px;
    }

    .share_bitton {
        top: 10px;
        position: absolute;
        right: 1rem;
    }

    .order-modal {
            top: 25rem;
            /* background-color: #fff; */
            border-radius: 10px;
            width: 90%;
            box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
            z-index: 9999999;
            padding: 1rem 1rem;
    }

    .title_order_button {
        width: 100%;
        margin-top: 1rem;
    }
}