.news__title {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
}

.news__title strong {
    margin: 0;
    font-size: 32px;
    line-height: 36px;
    color: #1A2533;
}

.card__image {
    width: 300px;
    height: 240px;
    border-radius: 24px;
}

.card__title {
    margin: 15px;
    font-weight: 500;
    font-size: 16px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card__text {
    text-align: left;
    height: 53px;
    width: 270px;
    margin: 0 15px 0 15px;
    font-size: 12px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card__button-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card__button {
    background-color: transparent;
    border-style: solid;
    border-width: 1px;
    border-color: #DFE5EE;
    border-radius: 24px;
    width: 200px;
    height: 41px;
    margin-right: 15px;
    margin-left: 15px;
    color: #DFE5EE;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.card__button:hover {
    color: #CBD42F;
    border-color: #CBD42F;
}