/* ==========================================
   Divine Connectionz
   playlist.css
========================================== */

/* Main Container */

.playlist-page{

    max-width:1200px;

    margin:50px auto;

    padding:0 20px;

}

/* ==========================================
   Header
========================================== */

.playlist-header{

    background:linear-gradient(135deg,#fff8ef,#ffffff);

    padding:50px;

    border-left:8px solid #ff9800;

    border-radius:15px;

    margin-bottom:50px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    text-align:center;

}

.playlist-header h1{

    font-size:42px;

    color:#d46a00;

    margin-bottom:20px;

}

.playlist-header p{

    font-size:21px;

    line-height:1.8;

    color:#555;

    max-width:900px;

    margin:auto;

}

/* ==========================================
   Category
========================================== */

.playlist-category{

    margin-bottom:60px;

}

.playlist-category h2{

    font-size:34px;

    color:#d46a00;

    margin-bottom:30px;

}

/* ==========================================
   Grid
========================================== */

.playlist-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

/* ==========================================
   Card
========================================== */

.playlist-card{

    background:#ffffff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.10);

    transition:.35s;

}

.playlist-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

/* ==========================================
   Image
========================================== */

.playlist-card img{

    width:100%;

    height:180px;

    object-fit:cover;

    display:block;

}

/* ==========================================
   Content
========================================== */

.playlist-card h3{

    padding:20px 20px 10px;

    font-size:24px;

    color:#222;

}

.playlist-card p{

    padding:0 20px;

    font-size:18px;

    line-height:1.7;

    color:#555;

    min-height:120px;

}

/* ==========================================
   Button
========================================== */

.playlist-card a{

    display:inline-block;

    margin:25px 20px 25px;

    padding:12px 24px;

    background:#ff9800;

    color:#ffffff;

    text-decoration:none;

    border-radius:8px;

    font-size:18px;

    font-weight:bold;

    transition:.3s;

}

.playlist-card a:hover{

    background:#d46a00;

}

/* ==========================================
   Coming Soon Badge
========================================== */

.coming-soon{

    display:inline-block;

    margin:20px;

    background:#eeeeee;

    color:#555;

    padding:8px 15px;

    border-radius:30px;

    font-size:15px;

}

/* ==========================================
   Footer Note
========================================== */

.playlist-note{

    margin-top:60px;

    text-align:center;

    font-size:19px;

    color:#666;

    line-height:1.8;

}

/* ==========================================
   Mobile
========================================== */

@media(max-width:768px){

    .playlist-page{

        margin:25px auto;

        padding:15px;

    }

    .playlist-header{

        padding:30px 20px;

    }

    .playlist-header h1{

        font-size:32px;

    }

    .playlist-header p{

        font-size:18px;

    }

    .playlist-category h2{

        font-size:28px;

    }

    .playlist-card img{

        height:200px;

    }

    .playlist-card h3{

        font-size:22px;

    }

    .playlist-card p{

        font-size:17px;

        min-height:auto;

    }

    .playlist-card a{

        display:block;

        text-align:center;

        margin:20px;

    }

}
