.page-main {
  flex: 1;
  padding-top: 100px; /* Push content below fixed header */
  padding-bottom: 40px; /* Prevent footer overlap */
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 30px 20px;
  min-height: 300px; /* Prevent footer from floating */
}

.news-entry {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

.news-entry img {
  width: 180px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.news-entry .content {
  flex: 1;
}

.news-entry h3 {
  margin: 0 0 10px;
  color: #2d4d3a;
}

.news-entry p {
  margin: 0;
  color: #555;
}
.gallery-item img,
.news-entry img {
  height: 180px;
  object-fit: cover;
}
.show-toggle {
  margin: 20px auto;
  display: block;
  background-color: #2d4d3a;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.show-toggle:hover {
  background-color: #3d6f52;
}
