/* Mangaung (Free State) page styles */
/* City-specific styling to complement freestate.css */

body.freestate .province-content {
  max-width: 800px;
  margin: 20px auto;
  padding: 16px;
}

body.freestate .province-content h3 {
  margin-top: 0;
  font-size: 20px;
  color: #8b1c1c;
  font-weight: 600;
}

body.freestate .districts {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

body.freestate .districts li {
  background: white;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #f9e6e4;
  box-shadow: 0 2px 4px rgba(139, 28, 28, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 500;
}

body.freestate .districts li:hover {
  border-color: #8b1c1c;
  box-shadow: 0 4px 8px rgba(139, 28, 28, 0.12);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fff7f4 0%, #ffffff 100%);
}

body.freestate .districts a {
  color: #8b1c1c;
  text-decoration: none;
}

body.freestate .districts a:hover {
  color: #e76a4b;
  text-decoration: underline;
}

body.freestate .province-content h2 {
  margin-top: 24px;
  font-size: 20px;
  color: #8b1c1c;
  font-weight: 600;
}

body.freestate .province-content > ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

body.freestate .province-content > ul li {
  background: white;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #f9e6e4;
  box-shadow: 0 2px 4px rgba(139, 28, 28, 0.08);
  transition: all 0.3s ease;
}

body.freestate .province-content > ul li:hover {
  border-color: #8b1c1c;
  box-shadow: 0 4px 8px rgba(139, 28, 28, 0.12);
  transform: translateY(-2px);
}

body.freestate .province-content > ul a {
  color: #8b1c1c;
  text-decoration: none;
  font-weight: 500;
}

body.freestate .province-content > ul a:hover {
  color: #e76a4b;
  text-decoration: underline;
}

@media (min-width: 768px) {
  body.freestate .province-content {
    max-width: 900px;
    padding: 16px 12px;
  }

  body.freestate .districts {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
  }

  body.freestate .province-content h3 {
    font-size: 22px;
  }

  body.freestate .province-content h2 {
    font-size: 22px;
  }
}
