.newswrap{
    background-color: var(--background-color);
    margin-top: var(--space-3x-large);
}
.newsTxt{
    max-width: 926px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5rem 0;
}
.newsTxt>div h2{
    margin-bottom: 1rem;
    font-size: var(--heading2);
    font-weight: bold;
}
.btn_mainNews{
    display: inline-flex;
    gap: var(--space-small);
    align-items: center;
}
.newsTxt .btn_mainNews{
    padding-right: 0.8rem;
}
.btn_mainNews svg{
    height: 0.8rem;
}
.btn_mainNews:hover{
    background-color: var(--main-color);
    color: #ffffff;
}
.btn_mainNews:hover svg path {
    stroke: #fff;
}
@media (max-width:768px){

    .newswrap{
       width: auto;
       padding: 0 1rem;
    }

    .newsTxt{
        width: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}