.news-short-desc-btn {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-short-desc-btn__text {
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: -4%;
    color: #4F4F4F;
}

.news-short-desc-btn__link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
    color: #FFFFFF;
    background: #4671B9;
    padding: 15px 32px;
    width: fit-content;
    border-radius: 40px;
    text-decoration: none;
}

.news-short-desc-btn__link:hover svg {
    animation: arrow-slide 0.7s ease-in-out infinite alternate;
}

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

    .news-short-desc-btn__text {
        font-size: 14px;
        line-height: 22px;
    }

    .news-short-desc-btn__link {
        gap: 8px;
        font-size: 14px;
        padding: 12px 16px;
    }

  
}