.news-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 44px auto;
  padding: 0 20px;
}

.news-item {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 6px;
  padding: 40px;
  gap: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  align-items: flex-start;
}

.news-text {
  flex: 1;
  max-width: 75%;
}

.news-text h3 {
  font-weight: bold;
  margin-bottom: 7px;
}
.news-title a {
  color: inherit;
  text-decoration: none;
}
.news-title a:hover {
  color: #444;
  text-decoration: none;
}

.date-location {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.date-location .date {
  margin-right: 10px;
}

.date-location .location {
  font-weight: 600;
}

.description {
  font-size: 0.95rem;
  color: #363636;
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: justify;
}

.btn-read {
  display: inline-block;
  background-color: black;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.btn-read:hover {
  background-color: #333;
}

.news-image {
  max-width: 250px;
  flex-shrink: 0;
}

.news-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}


.review-box {
  margin-top: 30px;
  margin-left: 0px;
  background: rgba(36, 36, 36, 0.5);
  padding: 15px 20px;
  border-radius: 6px;
  width: fit-content;
  backdrop-filter: blur(2px);
}

.review-box ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.review-box li {
  font-size: 14px;
  margin-bottom: 10px;
  color: white;
}

@media (max-width: 600px) {
  .news-container {
    padding: 0 1rem;
    margin: 24px auto;
    gap: 20px;
  }

  .news-item {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .news-image {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .news-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .news-text {
    max-width: 100%;
  }

  .news-text h3 {
    font-size: 1.1rem;
  }

  .date-location {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: justify;
  }

  .btn-read {
    display: block;
    /* width: fit-content; */
    margin: 0 auto 1rem auto;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 4px;
    margin-bottom: 1px;
    width: 100%;
    text-align: center;
  }

  .review-box {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    background: none;
  }

  .review-box ul {
    padding-left: 0rem;
  }

  .review-box li {
    font-size: 13px;
    margin-bottom: 8px;
  }
}
