.read-like-me {
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 10px;
    width: 100%;
    max-width: 1432px;
    box-sizing: border-box;
}

.read-like-me-wrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background-color: #fff;

    border-radius: 32px;
    margin: 20px 0;
}

.read-like-me-image-wrapper {
    display: flex;
}

.read-like-me-image {
    max-width: 100%;
    position: relative;
}

.read-like-me-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: -webkit-fill-available;
    padding: 24px 0 0;
}

.read-like-me-features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
}

.read-like-me-feature {
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.read-like-me-heading {
    margin-bottom: 16px;
}

.read-like-me-image-wrapper {
    overflow: hidden;
}

.read-like-me-content .hero-buttons {
    margin-bottom: 0;
    padding-bottom: 0;
}

@media only screen and (min-width: 992px) {
    .read-like-me {
        padding: 0 40px;
        max-width: 1512px;
    }

    .read-like-me-wrapper {
        flex-direction: row-reverse;
        justify-content: space-between;
        margin: 32px 0;
    }

    .read-like-me-content {
        flex: 50%;
    }

    .read-like-me-description .bold-desc {
        font-weight: 700;
    }

    .read-like-me-description {
        max-width: 550px;

    }

    .read-like-me-image {
        border: none;
        border-radius: unset;
        max-width: 100%;
    }

    .read-like-me-visual {
        display: flex;
    }

    .read-like-me-visual img {
        width: 100%;
        height: auto;
    }

    .read-like-me-image-wrapper {
        max-width: 100%;
    }

    .read-like-me-content .hero-buttons {
        margin-top: 48px;
    }

}