 .risalah-title {
     font-size: 30px;
     font-weight: 700;
 }

 .kollektif {
     font-family: 'Kollektif', Arial, sans-serif;
 }

 .btn-pelajari-risalah {
     float: left;
     border: 1px solid #000;
     padding: 10px 28px;
     border-radius: 40px;
     font-size: 20px;
     color: #000;
     background-color: #ffffff;
     text-decoration: none;
     cursor: pointer;
 }

 /* ========= search risalah ======== */
 /* Floating posisi bawah banner */
 .risalah-search-floating {
     display: flex;
     justify-content: center;
     margin-top: -35px;
     position: relative;
     z-index: 10;
 }

 /* Container utama */
 .risalah-search-inner {
     width: 75%;
     display: flex;
     align-items: center;
     gap: 20px;
 }

 /* Field umum */
 .rs-field {
     background: #fff;
     border-radius: 40px;
     height: 54px;
     display: flex;
     align-items: center;
     padding: 0 20px;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
 }

 /* Search kiri (lebih panjang) */
 .rs-text {
     flex: 2;
 }

 .rs-text i {
     color: #999;
     margin-right: 12px;
 }

 .rs-text input {
     border: none;
     outline: none;
     width: 100%;
     font-size: 14px;
 }

 /* Dropdown tengah */
 .rs-year {
     flex: 1;
     position: relative;
 }

 .rs-year select {
     border: none;
     outline: none;
     width: 100%;
     appearance: none;
     font-size: 14px;
     background: transparent;
     cursor: pointer;
 }

 .rs-year i {
     position: absolute;
     right: 18px;
     color: #b30000;
 }

 /* Tombol kanan */
 .rs-btn {
     height: 54px;
     padding: 0 35px;
     border-radius: 40px;
     border: none;
     background: #9b0d0d;
     color: #fff;
     font-weight: 700;
     letter-spacing: 1px;
     cursor: pointer;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
 }

 @media(max-width:768px) {

     .risalah-search-inner {
         flex-direction: column;
         width: 90%;
     }

     .rs-field,
     .rs-btn {
         width: 100%;
     }
 }

 .risalah-conten {
     max-width: 1200px;
     margin: auto;
     display: grid; 
     gap: 32px;
     padding: 0 16px;
 }

 .risalah-conten h2{
    color: black;
 }

 /* ===== LIST RISALAH ===== */

.risalah-grid{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* item */
.risalah-item-detail{
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e5e5e5;
}

/* cover */
.risalah-cover{
    width: 120px;
    border-radius: 12px;
}

/* info */
.risalah-info{
    flex: 1;
}

/* judul */
.risalah-info h3{
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 8px;
}

/* tanggal */
.risalah-date{
    font-size: 14px;
    color: #777;
    display: block;
    margin-bottom: 15px;
}

/* AUDIO */
.risalah-audio{
    display: flex;
    align-items: center;
    gap: 15px;
}

/* play */
.audio-play{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #b31212;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* volume */
.audio-volume{
    color: #444;
}

/* progress */
.audio-bar{
    flex: 1;
    height: 5px;
    background: #cfcfcf;
    border-radius: 5px;
    position: relative;
}

.audio-bar span{
    position: absolute;
    left: 0;
    top: 0;
    height: 5px;
    width: 15%;
    background: #b31212;
    border-radius: 5px;
}

/* waktu */
.audio-time{
    font-size: 13px;
    color: #777;
}

/* ACTION */
.risalah-action{
    display: flex;
    gap: 12px;
}

/* tombol baca */
.btn-baca{
    background: #b31212;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
}

/* tombol unduh */
.btn-unduh{
    background: #fff4dc;
    color: #b31212;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
}
@media(max-width:768px){

    .risalah-item-detail{
        flex-direction: column;
        align-items: flex-start;
    }

    .risalah-action{
        margin-top: 15px;
    }

}
