.bookeasy-appBlock {
    width: 100%;
    display: none;
    margin-top: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}

.bookeasy-appBlock-image {
    width: 50%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bookeasy-appBlock-details {
    gap: 10px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
}

.bookeasy-appBlock-image img {
    max-height: 300px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

.bookeasy-appBlock-details .bookeasy-appBlock-button {
    width: 350px
}

.bookeasy-appBlock-details .title {
    margin: 0px;
    font-size: 35px;
    font-weight: 600;
}

.bookeasy-appBlock-details .description {
    max-height: 200px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    /* Adjust the number of lines you want to display */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    scrollbar-width: thin;
}

.bookeasy-appBlock-image {
    width: 100%;
    max-width: 300px;
    object-fit: cover;
    border-radius: 12px;
}

@media only screen and (max-width: 800px) {
    .bookeasy-btn {
        width: 60%;
        align-self: flex-start;
    }
}

@media only screen and (max-width: 700px) {
    .bookeasy-appBlock {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .bookeasy-appBlock-image {
        width: 100%;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .bookeasy-appBlock-image img {
        max-height: 300px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center;
    }

    .bookeasy-appBlock-details {
        width: 100%;
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .bookeasy-appBlock-details .title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .bookeasy-appBlock-details .description {
        max-height: none;
        margin-bottom: 20px;
    }

    .bookeasy-appBlock-details .bookeasy-appBlock-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 416px) {
    .bookeasy-appBlock {
        padding: 10px;
    }

    .bookeasy-appBlock-details {
        padding: 10px;
    }

    .bookeasy-appBlock-details .title {
        font-size: 22px;
    }

    .bookeasy-appBlock-image img {
        height: 300px;
    }
}