
.news-title {
  margin-bottom: 10px; /* Adjust this value as needed */
}


 .news {
    float: right;
    width: 650px;
    height: 366px;
    margin: 21px 0 0px 7px;
    border: 2px solid #007BFF; /* blue border */
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .text {
    margin-left: 10px;
    max-width: 807px;
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    padding: 0px;
     
    border-radius: 0px;
    box-shadow: 0 0px 0px rgba(0,0,0,0.05);
  }



  .text p::first-letter {
    font-size: 2.5em;
    font-weight: bold;
    float: left;
    line-height: 1;
    padding-right: 8px;
    font-family: "Times New Roman", Times, serif;
    color: #black;
  }

  /* ✅ Responsive Additions */
  @media screen and (max-width: 768px) {
    .news {
      float: none;
      width: 100%;
      height: auto;
      margin: 10px 0;
      display: block;
    }

    .text {
      margin-left: 0;
      max-width: 100%;
      padding: 15px;
      font-size: 16px;
    }

    .text p::first-letter {
      font-size: 2em;
      padding-right: 5px;
      font-family: "Times New Roman", Times, serif;
    }

    .published-date {
      display: block;
      margin-top: 10px;
      font-size: 0.9em;
      color: #555;
    }

    h4 {
      font-size: 1.1em;
      cursor: pointer;
      margin-bottom: 5px;
    }

    .story-content {
      margin-top: 10px;
    }
  }

