/* Bloemfontein (Eastern Cape) page styles */
/* City-specific styling to complement easterncape.css */

body.easterncape .province-meta {
  max-width: 700px;
  margin: 20px auto;
  padding: 16px;
  background: rgba(11, 110, 165, 0.05);
  border-radius: 8px;
  border-left: 4px solid #0b6ea5;
}

body.easterncape .province-meta h2 {
  margin-top: 0;
  font-size: 22px;
  color: #0b6ea5;
  font-weight: 600;
}

body.easterncape .news-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.easterncape .news-list li {
  background: white;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #d4e5f7;
  box-shadow: 0 2px 4px rgba(11, 110, 165, 0.08);
  transition: all 0.3s ease;
}

body.easterncape .news-list li:hover {
  border-color: #0b6ea5;
  box-shadow: 0 4px 8px rgba(11, 110, 165, 0.12);
  transform: translateY(-2px);
}

body.easterncape .news-list a {
  color: #0b6ea5;
  text-decoration: none;
  font-weight: 500;
}

body.easterncape .news-list a:hover {
  color: #1b9bd7;
  text-decoration: underline;
}

@media (max-width: 768px) {
  body.easterncape .province-meta {
    margin: 16px 8px;
    padding: 12px;
  }

  body.easterncape .news-list li {
    padding: 10px 12px;
  }
}
