/* ===== News Layout ===== */
.news-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin: 20px 0;
  padding: 20px;
  gap: 25px;
}

/* Image on left */
.news-image {
  flex: 1 1 40%;
  max-width: 400px;
}

.news-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Content on right */
.news-content {
  flex: 1 1 55%;
}

.news-content h1 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Meta info (date, location, author) */
.meta p {
  font-size: 1.1rem;
  color: #555;
  margin: 5px 0;
}

.meta .date {
  font-weight: 600;
  color: #333;
}

.meta .location {
  color: #0077cc;
  font-style: italic;
}

.meta .author {
  color: #666;
}

/* Description styling */
.description {
  font-size: 1.75rem;
  color: #333;
  margin-top: 15px;
  line-height: 1.7;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .news-item {
    flex-direction: column;
    text-align: left;
    padding: 15px;
  }

  .news-image, .news-content {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .news-content h1 {
    font-size: 1.6rem;
  }

  .description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .news-content h1 {
    font-size: 1.4rem;
  }
  .meta p {
    font-size: 1rem;
  }
  .description {
    font-size: 1.65rem;
  }
}
