.read-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 40px;

    background-color: rgb(117, 173, 66);
    color: #fff;
    border-radius: 4px;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}
.read-more a:hover {
    background-color: rgb(100, 150, 55);
    color: #fff;
}