    .news {
        width: 200px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border: 1px solid #ddd;
        background-color: white;
        margin: 10px;
    }

    .news img {
        width: 100%;
        height: auto;
    }

    .news span {
        color: #475583;
        font-size: 14px;
        display: flex;
        align-items: center;
        background: url(/wp-content/uploads/2024/06/calendar_month_20dp_FILL0_wght400_GRAD0_opsz20.svg) no-repeat left center / 20px;
        padding-left: 25px;
        min-height: 25px;
        margin: 15px 20px;
    }

    .news div {		
		font-size: 17px;
    color: #475583;
    font-weight: bold;
    height: 60px;
    margin: 0 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    }

    .news a {
        padding: 5px 10px;
        margin: 20px 20px 17px 0;
        background-color: #d32f2f;
        color: #fff !important;
        text-decoration: none;
        border-radius: 7px;
        text-align: center;
        float: right;
        width: fit-content;
    }

    @media (max-width: 900px) {
        .news {
            min-width: 250px;
        }

        .news img {
            height: 160px;
            object-fit: cover;
            object-position: center;
        }

        .news span {
            gap: 4px;
            margin: 15px;
            margin-bottom: 8px;
        }

        .news div {
            font-size: 16px;
            line-height: 1.4;
            font-weight: 600;
            min-height: 48px;
        }

        .news a {
            padding: 8px 16px;
            font-size: 14px;
            margin: 15px;
        }
    }