.practice-exact {
    position: relative;
    /* min-height: 100vh; */
    background: #f7f2ea;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    font-family: 'Inter', sans-serif;
}

/* TOP TEXT */
.practice-top-text {
    font-size: 34px;
    font-weight: 700;
    color: #8a2c13;
    margin-bottom: 30px;
    font-family: cursive;
    text-align: center;
}

/* PRACTICE CARD */
.practice-title-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(90deg, #000, #5f5f5f);
    padding: 22px 34px;
    border-radius: 16px;
    margin-bottom: 35px;
}

.practice-cartoon {
    width: 60px;
}

.practice-title-text {
    font-size: 34px;
    font-weight: 700;
}

.practice-word {
    color: #ffffff;
}

.tests-word {
    color: #19c37d;
    margin-left: 6px;
}

/* MODES BLOB */
/* .modes-blob {
            background: #e3b29a;
            padding: 50px 60px;
            border-radius: 50%;
            text-align: center;
            margin-bottom: 40px;
        } */

.modes-text {
    font-size: 26px;
    font-family: cursive;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .25);
}

/* .modes-pill {
            background: #1aa6d6;
            padding: 14px 28px;
            border-radius: 12px;
            font-size: 20px;
            font-weight: 700;
        } */

/* FEATURES */
.features-panel {
    background: #8f8a7d;
    padding: 26px 40px;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 600;
}

.features-panel p {
    margin: 10px 0;
    color: #000;
}

/* RIGHT IMAGE */
.practice-illustration {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
}

/* RESPONSIVE */
@media(max-width:1650px) {
    .practice-illustration {
      
        width: 300px;
    }
}
@media(max-width:1400px) {
    .practice-illustration {
        position: static;
        transform: none;
        margin-top: 40px;
        width: 300px;
    }
}

@media(max-width:1000px) {
    .practice-illustration {
        position: static;
        transform: none;
        margin-top: 40px;
        width: 300px;
    }

    .modes-blob {
        border-radius: 24px;
    }
}

.modes-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7f2ea;
    padding: 40px 0;
    font-family: 'Inter', sans-serif;
}

/* BLOB BACKGROUND */
.modes-blob {
    background: #e6b39a;
    padding: 55px 70px;
    border-radius: 55% 45% 60% 40% / 50% 60% 40% 55%;
    text-align: center;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, .35),
        0 10px 20px rgba(0, 0, 0, .15);
}

/* TITLE TEXT */
.modes-title {
    font-size: 30px;
    color: #ffffff;
    font-family: cursive;
    margin-bottom: 18px;
    text-shadow:
        2px 2px 0 rgba(0, 0, 0, .35);
}

/* BLUE PILL */
.modes-pill {
    background: #14a6d6;
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    display: inline-block;
}

/* TEXT SPACING */
.modes-pill span {
    margin: 0 6px;
}


@media(max-width: 767px) {
    .modes-pill a {
        display: block;
        width: 170px;
    }

    .modes-blob {
        background: #e6b39a;
        padding: 55px 40px;
    }
}