
/* =========================
PRACTICE PAGE
========================= */

.practice-page{
    width:100%;
}

.practice-container{
    width:100%;
}

/* =========================
HERO
========================= */

.practice-hero{

    background:linear-gradient(135deg,#ede9fe,#f5f3ff);

    border-radius:36px;

    padding:55px;

    margin-bottom:30px;
}

.practice-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:white;

    color:#6d28d9;

    padding:12px 20px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:24px;
}

.practice-hero h1{

    font-size:72px;

    line-height:1.1;

    font-family:'Poppins',sans-serif;

    margin-bottom:20px;
}

.practice-hero p{

    font-size:21px;

    line-height:1.9;

    color:#64748b;
}

/* =========================
CONTENT
========================= */

.practice-content-card{

    background:white;

    border-radius:32px;

    padding:50px;

    border:1px solid #ede9fe;

    margin-bottom:30px;
}

.practice-content{

    color:#334155;

    line-height:1.9;

    font-size:18px;
}

.practice-content h1,
.practice-content h2,
.practice-content h3,
.practice-content h4{

    font-family:'Poppins',sans-serif;

    margin-top:35px;

    margin-bottom:16px;

    color:#111827;
}

.practice-content h2{
    font-size:38px;
}

.practice-content h3{
    font-size:28px;
}

.practice-content p{
    margin-bottom:18px;
}

.practice-content ul,
.practice-content ol{

    padding-left:22px;

    margin-bottom:18px;
}

/* =========================
BOTTOM BOX
========================= */

.practice-bottom-box{

    background:linear-gradient(135deg,#fff7ed,#fefce8);

    border-radius:32px;

    padding:35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:24px;

    flex-wrap:wrap;

    margin-bottom:50px;
}

.practice-bottom-left{

    display:flex;

    align-items:center;

    gap:18px;
}

.practice-bottom-icon{

    width:80px;

    height:80px;

    border-radius:24px;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:36px;
}

.practice-bottom-left h3{

    font-size:38px;

    margin-bottom:8px;

    font-family:'Poppins',sans-serif;
}

.practice-bottom-left p{

    color:#64748b;

    line-height:1.8;
}

.next-lesson-btn{

    background:#6d28d9;

    color:white;

    padding:18px 34px;

    border-radius:18px;

    font-weight:600;

    transition:0.3s ease;

    display:inline-flex;

    justify-content:center;

    align-items:center;
}

.next-lesson-btn:hover{
    background:#5b21b6;
}

/* =========================
TABLET
========================= */

@media(max-width:1100px){

.practice-bottom-box{

    flex-direction:column;

    text-align:center;
}

.practice-bottom-left{
    flex-direction:column;
}

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.practice-hero{

    padding:34px 22px;

    border-radius:26px;
}

.practice-badge{

    width:100%;

    justify-content:center;

    font-size:14px;
}

.practice-hero h1{

    font-size:42px;

    line-height:1.2;
}

.practice-hero p{

    font-size:16px;

    line-height:1.8;
}

/* CONTENT */

.practice-content-card{

    padding:26px 18px;

    border-radius:24px;
}

.practice-content{

    font-size:15px;

    line-height:1.9;
}

.practice-content h2{

    font-size:28px;
}

.practice-content h3{

    font-size:22px;
}

/* BOTTOM */

.practice-bottom-box{

    padding:24px 18px;

    border-radius:24px;
}

.practice-bottom-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    font-size:28px;
}

.practice-bottom-left h3{

    font-size:28px;
}

.practice-bottom-left p{

    font-size:15px;
}

.next-lesson-btn{

    width:100%;
}
}
