.container {
    max-width: 1200px;
    margin: 0 auto;
}
.modo-post-block h2 {
    font-size: 42px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 56px;
}

.modo-post-block__articles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 32px;
}

.modo-post-block__article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.modo-post-block__thumbnail {
    border-radius: 0 16px 16px 0;
}

.modo-post-block__article__content {
    padding: 24px;
}

.modo-post-block__thumbnail img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.modo-post-block__article h4 {
    font-weight: bold;
    margin: 0 0 12px 0;
}

.modo-post-block__article h4 a {
    font-weight: inherit;
}

.modo-post-block__article p {
    font-size: 14px;
    line-height: 1.5;
}

.modo-post-block__article__btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
}


/*==========

Offer Block

===========*/

.offers-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 16px;
    margin-bottom: 64px;
}

.offers-block__offer {
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    color: #000;
    transition: all 0.3s ease-in-out;
}

.offers-block__offer:hover {
    color: #000;
    background-color: #efefef;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
}

.offers-block__offer img {
    display: block;
    max-width: 100%;
    margin-bottom: 24px;
}

.offers-block__offer p {
    margin-bottom: 0;
}

/*==========

Welcome Block

===========*/
.welcome-page {
    padding-top: 80px;
}
.welcome-block {
    text-align: center;
}

.welcome-block h1 {
    margin-bottom: 0;
    text-transform: uppercase;
}

.welcome-block h2 {
    margin-bottom: 80px;
}

.welcome-block__btn {
    font-size: 24px;
    padding: 8px 64px !important;
    border-radius: 24px !important;
    height: auto !important;
}

.welcome-images {
    display: flex;
    justify-content: space-between;
    margin: -100px auto 0 auto;
    max-width: 1100px;
}

.welcome-images img {
    max-width: 300px;
}

/*==========

Ad

===========*/

.ad-block {
    width: 1100px;
    margin: 32px auto 64px auto;
    border: 1px solid #ccc;
}

.ad-block img {
    max-width: 100%;
}