/* Rodenbeck page styles */

body.freestate {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(165deg, #fff6f4 0%, #fff0ec 50%, #ffe7e1 100%);
  color: #4a1f16;
}

body.freestate .hero {
  background: linear-gradient(135deg, #8b1c1c 0%, #b23524 52%, #d3543a 100%);
  color: #fff;
  padding: 130px 75px 112px;
  border-bottom: 3px solid #f7b5a8;
}

body.freestate main {
  width: min(1040px, calc(100% - 24px));
  margin: 22px auto;
  display: grid;
  gap: 18px;
  flex: 1 0 auto;
}

body.freestate .main-areas h2,
body.freestate .province-meta h2 {
  color: #8b1c1c;
  margin: 0 0 12px;
}

body.freestate #areaList,
body.freestate .news-list {
  list-style: none;
  margin: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid #f3d3cd;
  border-radius: 12px;
  display: grid;
  gap: 10px;
}

body.freestate #areaList li,
body.freestate .news-list li {
  background: linear-gradient(145deg, #fff 0%, #fff7f4 100%);
  border: 1px solid #f3d3cd;
  border-radius: 10px;
  padding: 11px 12px;
}

body.freestate .news-list a {
  color: #8b1c1c;
  text-decoration: none;
  font-weight: 600;
}

body.freestate .news-list a:hover {
  color: #d3543a;
  text-decoration: underline;
}

@media (min-width: 760px) {
  body.freestate #areaList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
