/*comment the section below to make the system show two columns */
/*version 20-apr-2021*/
body{background-color: #F4F5E5}
.col-lg-6 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}


.article-item { /* The article snippet blocl */
  background-color: #3d0000; /* temptress - see https://chir.ag/projects/name-that-color/#3D0000 */
  color: rgba(255, 255, 255);
  font-family: 'Open Sans';
  font-size: 14px;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}


  .article-item .image {
    background: no-repeat center center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;

    /* See the size breaks below for the image size */
  }


  .article-item h3 { /* The main title */
    font-family: 'Open Sans';
    font-weight: bold;
    font-size: 20px;
    padding: 20px 0 12px 0;
    margin: 0;
  }


  .article-item h4 { /* Article date */
    font-family: 'Open Sans';
    font-size: 14px;
    font-weight: normal;
    font-style: italic;
    padding: 0 0 4px 0;
  }

  .article-item a { /* Read more link */
    color: #fff; /* white */
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    text-transform: uppercase;
  }

    .article-item a:before { /* this prefixes the link with the content specified*/
      content: "> ";
    }

    .article-item a:hover { /* the style to make the read more link when you hover */
      text-decoration: underline;
    }

  .article-item .snippet {
    padding-bottom: 12px;
  }

.article-detail {
  background-color: #fff; /* white */
  font-family: 'Open Sans';
  color: #000; /* black */
  font-size: 14px;
  margin-bottom: 40px;
  padding: 20px;
}

  .article-detail h3 {
    font-family: 'Open Sans';
    color: #000; /* black */
    font-size: 26px;
    font-weight: bold;
    padding: 0;
    margin: 0;
  }

  .article-detail h4 {
    font-family: 'Open Sans';
    color: #000; /* black */
    font-size: 14px;
    border-bottom: 2px solid #3d0000; /* temptress */
    padding: 12px 0 12px 0;
    margin: 0 0 8px 0;
  }

  .article-detail a {
    color: #3d0000; /* maroon */
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
  }

    .article-detail a.back {
      display: inline-block;
      color: #3d0000; /* maroon */
      text-decoration: none;
      padding: 8px 16px;
      border: 2px solid #3d0000; /* maroon */
    }

      .article-detail a.back:hover {
        color: #fff; /* white */
        background-color: #3d0000; /* maroon */
      }

a.download {
  border: 1px solid #741a18; /* maroon */
  padding: 4px 12px 4px 12px;
  display: inline-block;
  border-radius: 8px;
  margin: 6px 8px 0 0;
  text-decoration: none;
  font-weight: normal;
}

  a.download:before {
    font-family: FontAwesome;
    content: "\f019";
  }

  a.download:hover {
    color: #fff; /* white */
    background-color: #741a18; /* maroon */
  }


@media (max-width: 767px) { /*this size is for mobile (less than 768px) - any style above can be added to this block */
  .article-item {
    padding: 20px 20px 20px 180px;
  }

    .article-item .image {
      width: 160px;
    }

    .article-item h3 {
      font-size: 20px;
    }
}

@media (min-width: 767px) { /* this size is for a tablet (between 768 & 991) - any style above can be added to this block */
  .article-item {
    padding: 10px 20px 20px 240px;
  }

    .article-item .image {
      width: 220px;
    }

    .article-item h3 {
      font-size: 20px;
    }
}

@media (min-width: 992px) {/* this size is for a laptop or older pc (between 992 & 1199) - any style above can be added to this block */

  .article-item {
    padding: 20px 20px 20px 340px;
  }

    .article-item .image {
      width: 320px;
    }

    .article-item h3 {
      font-size: 20px;
    }
}

@media (min-width: 1200px) {  /* this size is for a desktop PC (>= 1200) - any style above can be added to this block */



  .article-item {
    padding: 20px 20px 20px 360px; /*Left padding must always be greater than the image width specified below if the image is on the left */
  }

    .article-item .image {
      width: 320px;
      
    }
}
