.news img {
    width: 500px;  /* Set the width of the images */
    height: 500px; /* Set the height of the images */
    object-fit: contain; /* Ensure the image covers the entire area without distortion */
    border-radius: 15px; /* Adjust the value as needed */
    /* Individual corner rounding */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }