/* The outer container box */
.news-box {
  margin: 24px 0;
  display: flex; /* Aligns items side-by-side */
  /* align-items: center; Vertically centres the text with the image */
  gap: 10px; /* Creates space between image and text */
  /* max-width: 600px; Keeps the box from getting too wide */
  /* padding: 20px; Inner spacing around the content */
  /* border: 1px solid #ccc; The border line */
  /* border-radius: 8px; Rounds the corners of the box */
  /* background: #ffffff; Background color */
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); Soft drop shadow */
  /* font-family: sans-serif; */
}

/* Fixed styling for the image */
.news-box img {
  width: 150px; /* Set standard width */
  height: 150px; /* Set standard height */
  object-fit: cover; /* Prevents stretching/distortion */
  /* border-radius: 4px; Optional: rounds image corners slightly */
  display: block;
}

.news-box h2 {
  line-height: 1;
}

/* Text wrapper to ensure paragraph layouts behave */
.side-text {
  flex: 1; /* Allows text to fill remaining horizontal space */
}

.side-text p {
  margin: 0;
}
