.single-parish-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.single-parish-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.parish-photo {
  flex: 0 0 300px;
}

.parish-photo img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.parish-info {
  flex: 1;
}

.parish-info h1 {
  margin-top: 0;
  font-size: 2rem;
  color: #2c3e50;
}

.parish-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #444;
}

.parish-history,
.parish-map {
  margin-top: 2rem;
}

.parish-history h2,
.parish-map h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #0073aa;
}


/* Tablet and up */
@media (min-width: 768px) {
  .single-parish-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
  }

  .parish-photo {
    flex: 0 0 300px;
  }

  .parish-info {
    flex: 1;
  }

  .parish-info h1 {
    font-size: 2rem;
  }

  .parish-history h2,
  .parish-map h2 {
    font-size: 1.4rem;
  }

  .map-embed iframe {
    height: 400px;
  }
}


/*
@media (max-width: 768px) {
  .single-parish-inner {
    flex-direction: column;
  }

  .parish-photo {
    width: 100%;
  }
}

.parish-back-button {
  margin-top: 3rem;
}

.back-link {
  display: inline-block;
  padding: 0.6rem 1rem;
  background-color: #0073aa;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.back-link:hover {
  background-color: #005f8d;
}
/*Google Map
.map-embed iframe {
  width: 100%;
  height: 400px;
  border: none;
}
/*Google Map*/