.hero {
    position: relative;
}

.hero::after {
    content: '';
    width: 100%;
    height: 48px;
    z-index: -1;
    position: absolute;
    bottom: 106px;
    left: 0;
    background: url(../Imgs/Decoration-large-hero.svg);
}

.hero__container {
    display: flex;
    gap: 28px;
}

.hero__title h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 62px;
    line-height: 1.15;
    text-transform: uppercase;
    color: #2c332f;
    padding-bottom: 40px;
}

.hero__title-text {
    line-height: 1.3;
    color: #535755;
    padding-bottom: 140px;
    max-width: 439px;
    width: 100%;
}

.hero__title h1 strong {
    font-weight: 600;
    color: #3596ed;
}

.hero__button {
    display: inline-block;
    padding: 19px 32px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    background: #3596ed;
    color: #fff;
    transition: opacity 0.3s;
}

.hero__button:hover {
    opacity: 0.8;
}

.hero__imgs {
    display: flex;
    position: relative;
}

.imgs-choose {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 22px;
    border: 1px solid #535755;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    color: #2c332f;
    background: #ffffffe6;
    max-width: 161px;
}

.news-article {
    display: flex;
    flex-direction: column;
    max-width: 284px;
    background-color: #fff;
    border: 1px solid #d3cbd9;
    overflow: hidden;
}

.news-article img {
    display: block;
}

.news-info {
    padding: 20px 20px 0;
    margin-bottom: 12px;
}

.news-date {
    display: inline-block;
    margin-bottom: 8px;
}

.article-text-color {
    color: #2c332f;
}

.news-container {
    display: flex;
    gap: 28px;
}

.news-article footer {
    padding: 0 20px 20px;
    margin-top: auto;
}

.article-link {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #3596ed;
}


.article-link::after {
    content: "";
    display: inline-flex;
    width: 22px;
    height: 9px;
    background-image: url(../Imgs/Arrow_right.svg);
    transition: transform 0.2s;
}

.article-link:hover::after {
    transform: translateX(5px);
}