.newest-blog * {
    font-family: 'Aeroport', sans-serif;
    letter-spacing: 0;
    font-weight: 300;
}

.newest-blog {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
}

.newest-blog .right-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-surface-grey);
    border-radius: var(--border-radius-max);
    flex-grow: 1;
}

.newest-blog-button {
    margin: 0 auto;
    min-width: 237px;
}

.newest-blog .section-title {
    margin-bottom: 1rem;
    font-size: 30px;
    line-height: 120%;
}

.newest-blog .paristore-choise__card {
    aspect-ratio: auto;
}


@media screen and (max-width: 1280px) {
    .newest-blog .right-content  {
        width: 30%;
    }

    .newest-blog .paristore-choise__card {
        width: 66%;
    }

}


@media screen and (max-width: 780px) {

    .newest-blog {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .newest-blog .paristore-choise__card {
        order: 1;
        width: 100%;
    }

    .newest-blog .right-content {
        width: 100%;
        background: none;
    }

    .newest-blog .section-title {
        margin-bottom: 15px;
    }

    .newest-blog-button {
        width: 100%;
    }

    .newest-blog .paristore-choise__card-name {
        font-size: 20px;
    }

    .newest-blog .paristore-choise__card-info {
        padding: 22px 40px;
    }
}