/* Kaimai Parish Map - minimal, theme-friendly styles */
.kaimai-map-wrapper { max-width: 100%; }
#parish-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 12px; }
#parish-filters button {
	color:#00643e;
  border: 1px solid #ddd;
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}
#parish-filters button.active { 
	background: #00643e !important;
	border-color: #2f8363 !important; 
}
#kaimai-map { 
	width: 100%; 
	height: 600px; 
	border-radius: 8px;
	 overflow: hidden; 
 }

#parish-results { margin-top: 12px; }
.parish-item { padding: 10px 0; border-bottom: 1px solid #eee; cursor: pointer; }
.parish-item:last-child { border-bottom: 0; }
.parish-item h4 { margin: 0 0 4px; font-size: 2rem; }
.parish-item.active { 
	/* background: #00643e !important; */
	border:solid 2px #2f8363 !important; 
 }
 
 .parish-head {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   gap: 12px;
   margin-bottom: 6px;
 }
.parish-title { margin: 0 0 4px; font-size: 1rem; }
 .parish-footer {
   display: flex;
   justify-content: flex-end;
   margin-top: 6px;
 }
 .parish-visit {
	 font-size:16px;
	 color:#00643e;
   text-decoration: none;
   white-space: nowrap;
 }
 .parish-visit:hover { 
	 text-decoration: underline;
 }
 
 #parish-results article {
   background-color:#ffffff;
   border:solid 1px #dfe9e3;
   padding:20px 30px 10px 25px;
   border-radius:10px;
   margin:15px 0px;
 }
 #parish-results article:hover {
   border:solid 2px #00653e;
 }

.parish-loadmore { text-align: center; margin-top: 12px; }
.parish-loadmore button {
	color:#ffffff;
  padding: 15px 30px;
  border: 1px solid #2f8363;
  border-radius: 50px;
  background: #00643eff;
  cursor: pointer;
}
.parish-loadmore button:hover { 
	color:#ffffff;
	background: #00643e; 
}

@media (max-width: 640px) {
  .parish-head { flex-direction: column; align-items: flex-start; }
  .parish-visit { margin-top: 6px; }
}