/* 
Override Blog entry styles  
*/

.article a {
  color: #005596;
  text-decoration: underline;
}

.article p
.article ul
.article li
.article ol {
  font-size: 1.25em;
}

table {
  border-collapse: collapse;
  margin: 10px 10px 10px 0;
}

table, th, td  {
  border: 1px solid black;
  padding: 5px;
}

thead {
  background-color: #F4F7F9;
}

table tr:nth-child(even) td{
  background-color: #F4F7F9;
}

figure {
  margin-top: 20px;
  padding-top: 30px;
  text-align: center;
}

figure,
figcaption {
  background-color: #F4F7F9;
}

figure iframe {
  max-width: 100%;
}

.article ul {
  list-style-type: disc;
  list-style-position: inside;
}

.article ol {
  list-style-position: inside;
}

.blog-article-container {
  display: flex;
  padding-top: 50px;
}

.article-container {
  width: 65%;
  padding-right: 10%;
}

.article-image-container {
  max-width: 100%;
}

.article-image-container img,
.article-content img  {
  max-width: 100%;
  max-height: 500px;
}

.article-sidebar {
  width: 30%;
  padding-left: 2%;
  padding-right: 2%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.article-subheader {
  font-weight: bold;
  font-size: 24px;
}

.article-divider {
  background-color: #E6E9EB;
  border: none;
  height: 1px;
  margin-bottom: 40px;
}

.article-content p {
  padding-top: 20px;
}

.article-list-link-bottom {
  padding-top: 50px;
}

.article-list-link a {
  color: #005596;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
}

/* Article Image */

.article-image {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 50px;
}

.article-image-wrapper {
  width: 100%;
}

.article-image-wrapper img {
  width: 100%;
}

.article-image-desc {
  background-color: #F4F7F9;
  padding: 20px;
  padding-top: 0;
}

/* End Article Image */

.featured-section {
  display: none;
}

.featured-section {
  padding-top: 40px;
}


/********************* Media Queries **********************/

/*************** Smaller Screens and Lower *******************/

@media only screen and (min-width: 1920px) {

}


@media only screen and 
(max-width: 1100px) {

  .blog-article-container {
    flex-direction: column;
  }

  .article-container {
    width: 100%;
  }
  
  .article-sidebar {
    display: none;
  }

  .featured-section {
    display: block;
  }

}

/* Smaller Screens */

@media only screen and 
(max-width: 1100px) and
(min-width: 850px) {

}

/* Tablet */

@media only screen and 
(max-width: 850px) and
(min-width: 451px) {

}

/* Mobile */

@media only screen and (max-width: 450px) {

  .nav-tab-container {
    overflow-y: auto;
    justify-content: flex-start;
  }

}

/****************************** 

Blog Sidebar

******************************/

.blog-sidebar-header {
  font-weight: 800;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.04em;
}

/* Sidebar Box */

.sidebar-box {
  background-color: #005596;
  color: #ffffff;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
}

.sidebar-box-icons {
  text-align: center;
}

.sidebar-box-icons img {
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
}

/* End Sidebar Box */

/* Related Articles */

.related-articles {
  padding-top: 60px;
}

.article-card h2 {
  font-size: 16px;
}

.ac-author-date p,
.ac-comments {
  font-size: 14px;
}

/* End Related Articles */