/*
  ----------------
  - Global
  ----------------
*/

[data-page="news"] #ipsLayout_mainArea{
  padding-bottom: 20px;
}



/*
  ----------------
  - Header
  ----------------
*/

.news-header{
  background-color: #012a40;
  color: #fff;
  text-align: center;
  /* Stretches the header to full width */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;  
  margin-bottom: 10px;
}

/* Needed due to .i-outer-width */
@media (min-width: 2000px){
  .news-header{
    max-width: 1800px;
  }
}
/* Prevents the page from stretching due to the full width header */
[data-page="news"] #ipsLayout_mainArea{
  display: block;
}

  .news-header a{
    color: inherit;
  }

  .news-header hr{
    max-width: 150px;
    border: 0;
    height: 0;
    border-top: 1px solid currentColor;
    opacity: .5;
    margin: 10px auto;
  }

  .news-header ._padding{
    padding: 10vh 0;
    padding: min(50px, 10vh) 0;
  }

    .news-header ._title{
      margin: 0;
      font-size: 44px;
      font-size: clamp(24px, 3vw, 44px);
      font-weight: 500;
      line-height: 1.2;
    }

    .news-header ._desc{
      margin: 0;
      font-size: 21px;
      font-size: clamp(16px, 2.4vw, 21px);
      opacity: .75;
    }

    .news-header ._nav ul{
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      align-items: flex-end;
      line-height: 42px;

      overflow-x: scroll;
      overscroll-behavior-x: contain;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

      .news-header ._nav ul::-webkit-scrollbar {
        -webkit-appearance: none;
        height: 0px;
      }

      .news-header ._nav li{
        flex: 1 0 auto;
      }

      .news-header ._nav a{
        display: block;
        padding: 0 20px;
        color: #fff;
        border-radius: 4px 4px 0 0;
        font-weight: bold;
      }

        .news-header ._nav a:hover{
          background-color: rgba(255,255,255,.1);
        }

          .news-header ._nav ._active a{
            background-color: rgb( var(--theme-page_background) );
            color: rgb(var(--theme-text_dark));
          }



/*
  ----------------
  - Article header
  ----------------
*/

.news-article-header{
  background-size: cover;
  background-position: 50%;
  border-radius: 6px;
  overflow: hidden;
  margin: 15px 0;
}

  .news-article-header ._height{
    overflow: hidden;
    max-height: 50vh;
  }

    .news-article-header ._height::before{
      content: '';
      display: block;
      padding-top: 59.65%;
    }

  .news-article-header ._nav ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    background: rgba(0,0,0,.6);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: 0 5px 0 0;
    overflow: hidden;
    font-weight: 500;
  }

    .news-article-header ._nav a{
      display: block;
      color: #fff;
      padding: 0 20px;
      line-height: 42px;
    }

      .news-article-header ._nav a:hover{
        background: rgba(0,0,0,.2);
      }





[data-page="news"] .sSection {
  padding: 5rem 0 5rem;
}
@media screen and (min-width: 980px) {
  [data-page="news"] .sSection {
    padding: 8rem 0 8rem;
  }
}
[data-page="news"] .sHero {
  padding: 5rem 0 5rem;
}
@media screen and (min-width: 980px) {
  [data-page="news"] .sHero {
    padding: 7.5rem 0 9rem;
  }
}
[data-page="news"] .sHero__title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 3.2rem;
}
[data-page="news"] .sHero__title a {
  color: #fff;
}
@media screen and (min-width: 980px) {
  [data-page="news"] .sHero__title {
    font-size: 4.4rem;
  }
}
[data-page="news"] .sHero__strapLine {
  margin-top: 10px;
  font-size: 1.7rem;
}
@media screen and (min-width: 980px) {
  [data-page="news"] .sHero__strapLine {
    font-size: 2.1rem;
  }
}
[data-page="news"] .sHero__hr {
  width: 150px;
  border: 0;
  height: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
[data-page="news"] .sNews__catBadge {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(51, 51, 51, 0.5);
  border-radius: 30px;
  padding: 3px 15px;
  line-height: 18px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
}
[data-page="news"] .sNews__blockquote {
  font-size: 22px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.3;
  font-weight: 300;
  font-style: italic;
  color: #963c8a;
  margin: 20px;
  padding: 10px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 980px) {
  [data-page="news"] .sNews__blockquote {
    float: right;
    margin: 20px 0 20px 20px;
    padding: 0 0 10px 20px;
    border: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 240px;
  }
}
[data-page="news"] .sNews__blockquote > p {
  margin: 0;
}
[data-page="news"] .sNews__blockquote:before,
[data-page="news"] .sNews__blockquote:after {
  font-family: FontAwesome;
  font-size: 28px;
  color: #963c8a;
}
[data-page="news"] .sNews__blockquote:before {
  content: '\f10d';
  margin-bottom: 10px;
}
[data-page="news"] .sNews__blockquote:after {
  content: '\f10e';
  float: right;
  margin-top: 10px;
  display: none;
}
[data-page="news"] .sNews__nav {
  /*max-width: 940px;*/
  margin: 0 auto 15px;
  line-height: 44px;
  position: relative;
  top: -44px;
}
[data-page="news"] .sNews__nav a {
  color: #fff;
  opacity: 0.5;
}
[data-page="news"] .sNews__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 25px;
}
@media screen and (min-width: 980px) {
  [data-page="news"] .sNews__row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
[data-page="news"] .sNews__row--primary .sNews__item {
  max-width: 100%;
}
[data-page="news"] .sNews__row--primary .sNews__item__title {
  font-size: 26px;
}
@media screen and (min-width: 980px) {
  [data-page="news"] .sNews__row--primary .sNews__item {
    max-width: 50%;
  }
  [data-page="news"] .sNews__row--primary .sNews__item__title {
    font-size: 28px;
  }
}
[data-page="news"] .sNews__row--primary .sNews__item__image {
  height: 200px;
}
[data-page="news"] .sNews__row--primary .sNews__item__snippet {
  font-size: 15px;
}
[data-page="news"] .sNews__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 980px) {
  [data-page="news"] .sNews__item {
    margin-right: 20px;
    max-width: 32%;
  }
}
[data-page="news"] .sNews__item:last-child {
  margin-right: 0;
}
[data-page="news"] .sNews__item__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
}
[data-page="news"] .sNews__item__title {
  font-size: 24px;
}
[data-page="news"] .sNews__item__snippet {
  margin-top: 10px;
  margin-bottom: 0 !important;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 16px;
}
[data-page="news"] .sNews__item__image {
  height: 150px;
  background-image: url("//invisioncommunity.com/site_assets//images/placeholder.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}
[data-page="news"] .sNews__item__image > img {
  display: none;
}
[data-page="news"] .sNews__item__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
}
[data-page="news"] .sNews__item__comments {
  font-size: 18px;
}
[data-page="news"] .sNews__item .ipsDataItem_modCheck {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
}
/*.sNews__view {
  max-width: 940px;
  margin: 0 auto;
}*/
[data-page="news"] .sNews__view .cShareLink {
  width: 36px;
  height: 36px;
  border-radius: 36px;
  line-height: 36px;
  font-size: 17px;
}
[data-page="news"] .sNews__article .ipsType_pageTitle {
  font-size: 28px;
  margin-top: 30px;
}
@media screen and (min-width: 980px) {
  [data-page="news"] .sNews__article .ipsType_pageTitle {
    font-size: 36px;
  }
}
/* MATT EDIT - INCREASED FONT SIZE AND LINE-HEIGHT */
[data-page="news"] .sNews__article .ipsType_richText.ipsType_normal {
  font-size: 16px;
  font-family: inherit;
  line-height: 1.7;
}
/*
[data-page="news"] .sNews__article .ipsType_richText.ipsType_normal > p:first-child {
  font-size: 20px;
}
[data-page="news"] .sNews__article .ipsType_richText.ipsType_normal > p:first-child:first-letter {
  font-size: 60px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
  line-height: 60px;
  float: left;
  margin-right: 5px;
  color: #963c8a;
}
*/
[data-page="news"] .sNews__article .ipsType_richText.ipsType_normal span[style] {
  font-family: inherit;
  font-weight: bold;
}

[data-page="news"] .sNews__article .ipsType_richText.ipsType_normal span[style] em {
  font-family: inherit;
}

[data-page="news"] .sNews__article .ipsType_richText.ipsType_normal li {
  margin-bottom: 5px;
}
[data-page="news"] .sNews__article .ipsItemControls {
  padding-top: 15px;
}
[data-page="news"] .sNews__form .cke_wysiwyg_div {
  font-size: 15px;
  font-family: inherit;
}
/*
[data-page="news"] .sNews__form .cke_wysiwyg_div > p:first-child {
  font-size: 20px;
}
*/
[data-page="news"] .sNews__form .cke_wysiwyg_div span[style] {
  font-family: inherit;
  font-weight: bold;
}

[data-page="news"] .sNews__form .cke_wysiwyg_div span[style] em {
  font-family: inherit;
}
[data-page="news"] .sNews__form .cke_wysiwyg_div li {
  margin-bottom: 15px;
}
[data-page="news"] .sNews__comments {
  /*max-width: 940px;*/
  margin: 30px auto 0;
}
[data-page="news"] .sNews__comments .ipsTabs,
[data-page="news"] .sNews__comments p[data-role="noComments"] {
  display: none;
}
[data-page="news"] .sNews__comments .ipsTabs_panels.ipsTabs_contained {
  border: 0;
}
[data-page="news"] .sNews__comments .ipsTabs_panels.ipsTabs_contained .ipsTabs_panel {
  border: 0;
  padding: 0;
}
[data-page="news"] .sNews__comments .ipsComment_author a {
  color: #485257;
}

[data-page="news"] .cFramedImageFullWidth img {
  width: 100% !important;
  height: auto;
}

/* MATT EDIT [ NEW RULE ] */
@media screen and (min-width: 980px) {
  [data-page="news"] .sNews__view .sNews__article.ipsBox {
    padding: 50px 150px !important;
  }
}




















/* Remove [data-page="news"] from everything above this line post-launch */


/* Delete everything below this line once new design goes live */


[data-page="news"] .ipsLayout_container{
  max-width: var(--container--width) !important;
}

[data-page="news"] [style="display:none"]{
  display: block !important;
}




/* This stylesheet is automatically generated from LESS files. Don't manually edit; changes will be lost
  when new versions are applied. Edit the custom.css file instead. */
body.cCmsDatabase_articles .ipsLayout_container {
  max-width: 1140px; 
}
body.cCmsDatabase_articles .ipsBreadcrumb .ipsList_inline.ipsPos_right {
  display: none;
}
.sPage__news .sSection {
  padding: 5rem 0 5rem;
}
@media screen and (min-width: 980px) {
  .sPage__news .sSection {
    padding: 8rem 0 8rem;
  }
}
.sPage__news .sHero {
  padding: 5rem 0 5rem;
}
@media screen and (min-width: 980px) {
  .sPage__news .sHero {
    padding: 7.5rem 0 9rem;
  }
}
.sPage__news .sHero__title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 3.2rem;
}
.sPage__news .sHero__title a {
  color: #fff;
}
@media screen and (min-width: 980px) {
  .sPage__news .sHero__title {
    font-size: 4.4rem;
  }
}
.sPage__news .sHero__strapLine {
  margin-top: 10px;
  font-size: 1.7rem;
}
@media screen and (min-width: 980px) {
  .sPage__news .sHero__strapLine {
    font-size: 2.1rem;
  }
}
.sPage__news .sHero__hr {
  width: 150px;
  border: 0;
  height: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.sPage__news .sNews__catBadge {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(51, 51, 51, 0.5);
  border-radius: 30px;
  padding: 3px 15px;
  line-height: 18px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
}
.sPage__news .sNews__blockquote {
  font-size: 22px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.3;
  font-weight: 300;
  font-style: italic;
  color: #963c8a;
  margin: 20px;
  padding: 10px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 980px) {
  .sPage__news .sNews__blockquote {
    float: right;
    margin: 20px 0 20px 20px;
    padding: 0 0 10px 20px;
    border: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 240px;
  }
}
.sPage__news .sNews__blockquote > p {
  margin: 0;
}
.sPage__news .sNews__blockquote:before,
.sPage__news .sNews__blockquote:after {
  font-family: FontAwesome;
  font-size: 28px;
  color: #963c8a;
}
.sPage__news .sNews__blockquote:before {
  content: '\f10d';
  margin-bottom: 10px;
}
.sPage__news .sNews__blockquote:after {
  content: '\f10e';
  float: right;
  margin-top: 10px;
  display: none;
}
.sPage__news .sNews__tabs {
  background: transparent;
  padding: 0;
  position: relative;
  top: -44px;
}
.sPage__news .sNews__tabs .ipsTabs_item {
  line-height: 44px;
}
.sPage__news .sNews__nav {
  /*max-width: 940px;*/
  margin: 0 auto 15px;
  line-height: 44px;
  position: relative;
  top: -44px;
}
.sPage__news .sNews__nav a {
  color: #fff;
  opacity: 0.5;
}
.sPage__news .sNews__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 25px;
}
@media screen and (min-width: 980px) {
  .sPage__news .sNews__row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.sPage__news .sNews__row--primary .sNews__item {
  max-width: 100%;
}
.sPage__news .sNews__row--primary .sNews__item__title {
  font-size: 26px;
}
@media screen and (min-width: 980px) {
  .sPage__news .sNews__row--primary .sNews__item {
    max-width: 50%;
  }
  .sPage__news .sNews__row--primary .sNews__item__title {
    font-size: 28px;
  }
}
.sPage__news .sNews__row--primary .sNews__item__image {
  height: 200px;
}
.sPage__news .sNews__row--primary .sNews__item__snippet {
  font-size: 15px;
}
.sPage__news .sNews__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 980px) {
  .sPage__news .sNews__item {
    margin-right: 20px;
    max-width: 32%;
  }
}
.sPage__news .sNews__item:last-child {
  margin-right: 0;
}
.sPage__news .sNews__item__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
}
.sPage__news .sNews__item__title {
  font-size: 24px;
}
.sPage__news .sNews__item__snippet {
  margin-top: 10px;
  margin-bottom: 0 !important;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 16px;
}
.sPage__news .sNews__item__image {
  height: 150px;
  background-image: url("//invisioncommunity.com/site_assets//images/placeholder.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}
.sPage__news .sNews__item__image > img {
  display: none;
}
.sPage__news .sNews__item__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
}
.sPage__news .sNews__item__comments {
  font-size: 18px;
}
.sPage__news .sNews__item .ipsDataItem_modCheck {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
}
/*.sPage__news .sNews__view {
  max-width: 940px;
  margin: 0 auto;
}*/
.sPage__news .sNews__view .cShareLink {
  width: 36px;
  height: 36px;
  border-radius: 36px;
  line-height: 36px;
  font-size: 17px;
}
.sPage__news .sNews__article .ipsType_pageTitle {
  font-size: 28px;
  margin-top: 30px;
}
@media screen and (min-width: 980px) {
  .sPage__news .sNews__article .ipsType_pageTitle {
    font-size: 36px;
  }
}
.sPage__news .sNews__article .ipsType_richText.ipsType_normal {
  font-size: 17px;
  font-family: Georgia, Times, Times New Roman, serif;
}
.sPage__news .sNews__article .ipsType_richText.ipsType_normal > p:first-child {
  font-size: 20px;
}
.sPage__news .sNews__article .ipsType_richText.ipsType_normal > p:first-child:first-letter {
  font-size: 60px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
  line-height: 60px;
  float: left;
  margin-right: 5px;
  color: #963c8a;
}
.sPage__news .sNews__article .ipsType_richText.ipsType_normal span[style] {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
}

.sPage__news .sNews__article .ipsType_richText.ipsType_normal span[style] em {
  font-family: Georgia, Times, Times New Roman, serif;
}

.sPage__news .sNews__article .ipsType_richText.ipsType_normal li {
  margin-bottom: 15px;
}
.sPage__news .sNews__article .ipsItemControls {
  padding-top: 15px;
}
.sPage__news .sNews__form .cke_wysiwyg_div {
  font-size: 17px;
  font-family: Georgia, Times, Times New Roman, serif;
}
.sPage__news .sNews__form .cke_wysiwyg_div > p:first-child {
  font-size: 20px;
}
.sPage__news .sNews__form .cke_wysiwyg_div span[style] {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
}

.sPage__news .sNews__form .cke_wysiwyg_div span[style] em {
  font-family: Georgia, Times, Times New Roman, serif;
}
.sPage__news .sNews__form .cke_wysiwyg_div li {
  margin-bottom: 15px;
}
.sPage__news .sNews__comments {
  /*max-width: 940px;*/
  margin: 30px auto 0;
}
.sPage__news .sNews__comments .ipsTabs,
.sPage__news .sNews__comments p[data-role="noComments"] {
  display: none;
}
.sPage__news .sNews__comments .ipsTabs_panels.ipsTabs_contained {
  border: 0;
}
.sPage__news .sNews__comments .ipsTabs_panels.ipsTabs_contained .ipsTabs_panel {
  border: 0;
  padding: 0;
}
.sPage__news .sNews__comments .ipsComment_author a {
  color: #485257;
}

.sPage__news .cFramedImageFullWidth img {
  width: 100% !important;
  height: auto;
}

/* Improve alignment of post controls */
.sNews__article .ipsItemControls{
  padding-left: 0;
}

.sNews__article .ipsItemControls_left{
  flex-grow: 0;
}