.posts-wrapper {
    padding: 60px 110px;
    max-width: 70%;
}

.posts-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: normal;
    color: var(--bravoauto-dark-blue);
}

.posts-image img {
    width: 100%;
    height: 450px;
    border-radius: 30px;
}

.posts-content p strong {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: normal;
    color: #000;
}

.posts-content p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: normal;
    color: #000;
}

p img {
    width: 100%;
    height: 450px;
    border-radius: 30px;
}

.btn-wrapper {
    text-align: center;
}

.posts-btn {
    font-weight: 400;
    border-radius: 30px;
    font-size: 1.6rem;
    line-height: normal;
    padding: 13px 31px;
    height: 48px;
    text-align: center;
    background-color: var(--bravoauto-dark-blue);
    color: #fff;
    cursor: pointer;
    border: 1px solid var(--bravoauto-dark-blue);
    width: fit-content;
    transition: all 0.2s linear;
}

.posts-btn:hover {
    background: var(--bravoauto-blue);
    color: #fff;
    border: none;
}

@media screen and (max-width: 800px) {
    .posts-wrapper {
        max-width: 100%;
        padding: 60px 45px;
    }

    .posts-image img {
        height: 338px;
    }

    p img {
        height: 338px;
    }
}

@media screen and (max-width: 575px) {
    .posts-wrapper {
        max-width: 100%;
        padding: 60px 45px;
    }

    .posts-title {
        font: 2.2rem;
    }

    .posts-image img {
        height: 226px;
    }

    .posts-content p strong {
        font-size: 1.8rem;
    }

    p img {
        height: 226px;
    }
}