/* بخش اخبار هتل */
#hotel-news {
  padding: 60px 0;
  font-family: 'IRANSans', sans-serif;
}

#hotel-news .heading {
  font-size: 30px;
  font-weight: bold;
  color: #003132;
}

#hotel-news .section-subtitle {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.news-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-content {
  flex: 1;
  padding: 20px;
  text-align: right;
}

.news-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #003132;
}

.news-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.btn-news {
  background: #006d5b;
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
  text-decoration: none;
}

.btn-news:hover {
  background: #005144;
  color: #fff;
}
