/* Variables */
:root {
    --primary: #0695c7;
    --hover: #0474a6;
}

/* Typography defaults */

  p {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
  }

  /* Headings */
  .content h1,
  .content h2,
  .content h3,
  .content h4,
  .content h5,
  .content h6 {
    margin-bottom: 1em;
  }
  
  /* Lists */
  .content ul,
  .content ol {
    margin: 1em 0 1em 2em;
    padding: 0;
  }
  .content ul {
    list-style: disc outside;
  }
  .content ol {
    list-style: decimal outside;
  }
  .content li {
    margin-bottom: 0.4em;
    padding-left: 0.1em;
  }
  
  /* Blockquote */
  .content blockquote {
    margin: 1.5em 0;
    padding: 0.5em 1em;
    border-left: 4px solid #0695c7;
    background: #f6fafd;
    color: #555;
    font-style: italic;
  }
  
  /* Images */
  .content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em 0;
  }
  
  /* Tables */
  .content table {
    border-collapse: collapse;
    width: 100%;
    margin: 2em 0;
    font-size: 0.95em;
  }
  .content th,
  .content td {
    border: 1px solid #d4dbe2;
    padding: 0.5em 1em;
    text-align: left;
  }
  .content th {
    background: #f0f4f8;
    font-weight: 600;
  }
  
  /* Links */
  .content a {
    color: #0695c7;
    text-decoration: underline;
  }
  .content a:hover {
    color: #0474a6;
    text-decoration: none;
  }

  .content p {
    margin: 0 0 1.75em;
  }

  .content h2 {
    font-size: 1.5rem;        /* text-2xl */
    line-height: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .content h3 {
    font-size: 1.25rem;       /* text-xl */
    line-height: 1.75rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .content h4 {
    font-size: 1.125rem;      /* text-lg */
    line-height: 1.75rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .content h5 {
    font-size: 1rem;          /* text-base */
    line-height: 1.5rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  
  

  /* Theme */

    .navigation .desktop-nav{
        background: url(../images/header-background-darker.png) no-repeat;
    }

    h1,
    h2,
    h3,
    h4,
    .serif,
    .site-title {
        font-family: 'Cinzel', serif;
    }

    .site-title {
        color: var(--primary);
        font-weight: 600;
        text-shadow: 1px 1px rgba(255, 255, 255, .8);
    }

    main {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    /* FLEX VIDEO */

    .flex-video {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      max-width: 100%;
    }
    
    .flex-video iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }




    /* TINYMCE IMAGE STYLES */

    .content .leftAlone,
    .content figure.leftAlone {
      float: left;
      margin-right: 100%;
    }

    .content .rightAlone,
    .content figure.rightAlone {
      float: right;
      margin-left: 100%;
    }

    .content .left,
    .content .float-start,
    .content figure.float-start {
      float: left;
      margin: 0 1em 1em 0;
    }

    .content .right,
    .content figure.right {
      float: right;
      margin: 0 0 1em 1em;
    }

    .content .center,
    .content figure.center {
      display: block;
      margin: 0 auto;
      text-align: center;
    }

    .content img {
      max-width: 100%;
      height: auto;
    }



