/* ========================================
   CONTENT PAGE TEMPLATE STYLES
   Simple page layout: image, heading, text
======================================== */

.content-page-template {
  max-width: 900px;
  margin: 2em auto;
}

.content-page-template h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
  text-align: center;
}

.content-page-body {
  display: inline-block;
}

.content-page-image img {
  max-width: 400px;
  height: auto;
  float: left;
  margin-right: 2em;
  border-radius: 6px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.content-page-text p {
  font-size: 1.1em;
  margin: 0.5em 0;
  line-height: 1.7;
}

.content-page-text h2 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.content-page-text h3 {
  margin-top: 1.2em;
  margin-bottom: 0.4em;
}

.content-page-text ul,
.content-page-text ol {
  margin: 0.5em 0 0.5em 1.5em;
  line-height: 1.7;
}

.content-page-text a {
  color: #c41230;
  text-decoration: underline;
}

.content-page-text a:hover {
  color: #a00e28;
}

@media (max-width: 700px) {
  .content-page-template {
    padding: 1em 0.5em;
  }

  .content-page-image img {
    float: none;
    display: block;
    width: min(100%, 360px);
    margin: 0 auto 1rem;
  }
}
