.news-one__img .news-one__bottom .row {
    display: flex;
    flex-wrap: wrap;

}
.news-one__img img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

.news-one__single {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: 1 / 1;
    width: 100%;
    border: 1px solid #000;
    padding: 25px;
    margin: 15px 0;
    /* background-color: #fff; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.news-one__single:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-one__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-one__read-more {
    margin-top: auto;
}



@media (max-width: 991px) {
    .news-one__single {
        aspect-ratio: auto;
        height: auto;
    }
}