.article {
  padding: 0 0 0 88px;
}
.article__main {
  position: relative;
}
.article__main .adv {
  margin-bottom: 40px !important;
}
.article__main .adv--full {
  margin: 20px auto 20px auto !important;
}
.article__cover {
  margin: 0 0 40px;
}
.article__cover figcaption {
  max-width: 600px;
  margin: 10px auto 0;
}
article__cover .remote-video-wrapper iframe {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 40px;
  aspect-ratio: 16/9;
}
.article__body {
  max-width: 600px;
  margin: 0 auto 40px;
}
.article__body iframe{
  width: 100%;
  height: 300px;
}
.article__body oembed {
  color: #888;
  border: 1px dotted #888;
  padding: 10px;
  display: block;
  margin-bottom: 20px;
  font-size: 1.4rem;
  line-height: 1.5;
}
.article__body > p:first-child:first-letter {
  float: left;
  margin: 11px 10px 0 0;
  font-size: 8.4rem;
  line-height: 6.4rem;
  font-family: var(--Cheltenham);
  font-weight: bold;
}
.article__body .adv {
/*  float: left; */
  margin: 0 30px 27px -66px;
}
.article__body .self-article-embed {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--opal);
  padding: 30px 20px 20px 20px;
}
.article__body .self-article-embed a {
  font-weight: unset;
  color: unset;
}
.article__body .self-article-embed a {
  display: block;
  flex-grow: 1;
}
.article__body .self-article-embed .article__embedded--updated {
  color: var(--steel-teal);
}
.article__body .self-article-embed .article__embedded--title_row {
  display: flex;
  align-items: center;
  gap: 20px;
  align-items: self-start;
}
.article__body .self-article-embed .article__embedded--metadata {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: space-between;
  flex: 1;
}
.article__body .self-article-embed .article__embedded--thumbnail {
  flex: 1 0 auto;
  max-width: 76px;
  aspect-ratio: 1/1;
}
.article__body .self-article-embed .article__embedded--title {
  font-size: 1.1em;
  margin: 0;
  padding: 0;
}
.article__body .self-article-embed .default-cat-date {
  display: flex;
  flex-flow: row nowrap;
}
.article__body .self-article-embed .article__embedded--header {
  position: absolute;
  top: -1.6rem;
  left: 50%;
  padding: 0 10px;
  transform: translateX(-50%);
  color: var(--snow);
  font-size: 2.6rem;
  line-height: 1.3;
  background: rgb(0 134 86 / 40%);
  transition: background .33s linear 0s;
}
.article__body .self-article-embed:hover .article__embedded--header {
  background: rgb(0 134 86 / 66%);
}
.article__media {
  margin: 0 0 40px;
  clear: both;
}
/* expandable in-article photos */
.article__media.article__media-expandable a {
  position: relative;
  display: block;
}
.article__media.article__media-expandable a:before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, black, transparent 8rem);
  z-index: 1;
  pointer-events: none;
  opacity: .618;
  content: "";
  transition: all .323s ease-out 0s;
}
.article__media.article__media-expandable a:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "\26f6";
  z-index: 2;
  color: white;
  font-size: 92px;
  font-weight: normal;
  pointer-events: none;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 50% 50%;
  transition: all .323s ease-out 0s;
}
.article__media.article__media-expandable a:hover:before {
  opacity: .5;
}
.article__media.article__media-expandable a:hover:after {
  transform: translateX(-50%) translateY(-50%) scale(1.618);
  opacity: .25;
}
/* expandable photo container */
.expanded-photo-root:not(.hidden) {
  display: flex;
}
.expanded-photo-root {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, black 50px, transparent 15vh), radial-gradient(#28282880, #000);
  z-index: 5;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: all .17s ease-out 0s;
}
.expanded-photo-root:before {
  position: absolute;
  top: 0;
  left: 50%;
  content: url('/themes/custom/imerisia/images/logo.svg');
  display: block;
  pointer-events: none;
  z-index: 5;
  filter: invert(1);
  transform: translateX(-50%) scale(.5);
}

.expanded-photo-root img {
  max-height: 90vh;
  width: auto;
  object-fit: cover;
  margin: 0 auto;
  text-align: center;
  transition: all .17s ease-out 0s;
}
.expanded-photo-root:not(.hidden) img {
  animation: zoomedPhotoImageAnim .33s forwards 1;
}
@keyframes zoomedPhotoImageAnim {
  0% { transform: scale(.85); }
  100% { transform: scale(1); }
}

blockquote {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 50px auto;
  padding: 0 30px;
  font-size: 2rem;
  line-height: 2.6rem;
  font-family: var(--Cheltenham);
  font-weight: bold;
  color: var(--steel-teal);
  clear: both;
}
.article__body blockquote p {
  margin: 0;
}
blockquote svg {
  position: absolute;
  top: -30px;
  left: 0;
  z-index: -1;
  width: 63px;
  height: 116px;
  fill: var(--mint-cream);
}
blockquote svg:last-child {
  top: auto;
  left: auto;
  bottom: -30px;
  right: 0;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.article__gallery {
  position: relative;
  max-width: 686px;
  margin: 40px 0;
  padding: 0 86px 0 0;
  overflow: hidden;
  background: var(--theme--section-background);
  color: var(--theme--section-foreground);
}
.article__gallery:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 100%;
  background: var(--theme--section-background);
}
.article__images {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.article__images-figure {
  -ms-flex: 1 0 100%;
  -webkit-flex: 1 0 100%;
          flex: 1 0 100%;
  text-align: center;
}
.article__images-figure img {
  max-height: 400px;
}
.article__images-figure figcaption {
  margin-left: 66px;
  text-align: left;
}
.article__gallery-controllers {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 1;
  width: 86px;
  height: 340px;
  padding: 20px;
  background: var(--theme--section-background);
}
.swiper-pagination {
  display: none;
}
.article__gallery-thumbs {
  height: 188px;
  overflow: hidden;
}
.article__gallery-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.article__gallery-thumb {
  width: 46px;
  height: 46px;
  opacity: 0.2;
  cursor: pointer;
}
.swiper-slide-thumb-active {
  opacity: 1;
}
.swiper-ctrl {
  position: relative;
  z-index: 1;
  display: block;
  width: 46px;
  height: 46px;
  margin: 10px 0 0;
  padding: 10px;
  border-radius: 50%;
  background: var(--opal);
  fill: #000;
  cursor: pointer;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.swiper-ctrl--prev {
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.article__files {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 0;
  line-height: 0;
}
.article__file {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: top;
  margin: 0 20px 10px 0;
  border-radius: 60px;
  background: var(--mint-cream);
}
.article__file:after {
  content: '';
  position: absolute;
  right: 10px;
  top: 8px;
  z-index: -1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--opal);
}
.article__file a {
  display: block;
  padding: 10px 76px 10px 20px;
}
.article__file-name {
  display: block;
  margin: 0 0 9px;
  font-size: 2rem;
  line-height: 2rem;
  font-family: var(--Cheltenham);
  font-weight: bold;
}
.article__file-size {
  display: block;
  font-size: 1.3rem;
  line-height: 1.3rem;
  color: #838383;
}
.article__file svg {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 46px;
  height: 46px;
  padding: 13px;
  fill: currentColor;
}
.textlink {
  position: relative;
  z-index: 1;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 30px 0;
  padding: 0 20px 12px;
  font-size: 0;
  line-height: 0;
  white-space: nowrap;
}
a.textlink {
  color: #000;
}
.textlink:before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: var(--opal);
}
.textlink figure {
  display: inline-block;
  vertical-align: top;
  max-width: 80px;
  margin: 0 10px 0 0;
}
.textlink span {
  display: inline-block;
  vertical-align: top;
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-weight: bold;
  white-space: normal;
}
.textlink svg {
  display: inline-block;
  vertical-align: top;
  -ms-flex: 1 0 17px;
      -webkit-flex: 1 0 17px;
          flex: 1 0 17px;
  max-width: 17px;
  height: 12px;
  margin: 4px 0 0 10px;
  fill: currentColor;
}
aside {
  top: auto;
  bottom: 10px;
  -ms-flex-item-align: end;
      -webkit-align-self: flex-end;
          align-self: flex-end;
}
.article__related {
  position: relative;
  margin-top: 40px;
  padding: 0 20px 20px;
  text-align: center;
  background: var(--mint-cream);
}
.article__related--minified {
  padding: 0 20px;
}
.article__related h4 {
  display: inline-block;
  vertical-align: top;
  margin: -12px 0 20px;
  font-size: 2.4rem;
  line-height: 2.4rem;
  font-family: var(--Cheltenham);
  font-style: italic;
}
.article__related .latest-teasers {
  overflow: hidden;
}
.article__related--minified .latest-teasers {
  display: none;
}
.article__related article {
  padding-right: 0;
}
.article__related svg {
  position: absolute;
  top: -23px;
  right: -23px;
  width: 46px;
  height: 46px;
  padding: 13px;
  border-radius: 50%;
  background: var(--opal);
  fill: #000;
  cursor: pointer;
}
.article__body_related {
  max-width: 600px;
  margin: 40px auto 20px auto;
}
.article__body_related svg {
  visibility: hidden;
}
.article__body_related h5 {
  color: #000;
}
section.article__below_top {
  max-width: 600px;
  margin: 0 auto;
}
.article__cta {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 15px;
  color: #000;
  background: var(--opal);
  font-size: 2.2rem;
  line-height: 1.1;
}
.article__cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: var(--opal);
}
.article__cta:after {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 4px;
  mix-blend-mode: multiply;
  background-color: var(--opal);
}
.article__cta:hover {
  color: var(--steel-teal);
}
.article__cta:hover:before,
.article__cta:hover:after {
  background-color: var(--steel-teal);
}
.article__cta a {
  font: inherit;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
      -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 10px;
  padding: 20px;
}
.article__cta svg {
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 12px;
  margin: -2px 6px 0 6px;
  fill: currentColor;
}
.insider-tip {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 80px 0 0;
  text-align: center;
}
.insider-tip > * {
  position: relative;
  -ms-flex: 1 0 50%;
  -webkit-flex: 1 0 50%;
          flex: 1 0 50%;
}
.insider {
  padding: 0 20px 60px;
  background: var(--mint-cream);
}
.insider > svg {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: top;
  width: 80px;
  height: 80px;
  margin: -20px 0 20px;
  padding: 20px;
  fill: #fff;
}
.insider-tip h4 {
  max-width: 240px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 2.4rem;
  line-height: 3rem;
  font-family: var(--Cheltenham);
  font-style: italic;
}
.insider-tip h4:before {
  content: '';
  position: absolute;
  top: -20px;
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--steel-teal);
}
.insider__text {
  max-width: 240px;
  margin: 0 auto 20px;
}
.insider input {
  display: block;
  max-width: 240px;
  margin: 0 auto;
}
.insider-tip .more-link {
  margin: 20px 0 0;
}
.tip {
  background: rgba(211, 226, 216, 0.6);
}
.tip a {
  display: block;
  height: 100%;
  padding: 0 20px 60px;
}
.tip a > svg {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: top;
  width: 80px;
  height: 80px;
  margin: -20px 0 20px;
  padding: 20px;
  fill: #fff;
}
.tip__text {
  max-width: 240px;
  margin: 0 auto;
}

.iframe-container {
  width: 100%;
  position: relative;
  min-width: 320px;
  min-height: 250px;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.livechat-status {
  color: var(--steel-teal);
  border: 1px solid var(--steel-teal);
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 10px;
  background: #fff;
  margin-bottom: 20px;
}

.article__livechat_status__future {
  background: var(--jade);
  color: #fff;
}

.article__livechat_status__past {
  background: #000;
  color: #d7d7d7;
  border-color: #aaa;
}

.article__livechat_status__postponed {
  background: #d8d8d8;
  border: 3px solid #d8d8d8;
  color: #282828;
}

/* Live blog embed styling - overriding .bordered base class */
.liveblog-header {
  margin-left: -18px;
  margin-bottom: 1rem;
}

.liveblog-header:before {
  right: 0;
}

.liveblog-header:after {
  right: 0;
}

.liveblog-container {
  background: var(--mint-cream);
  margin-bottom: 2rem;
  box-shadow: inset 0px 16px 24px rgba(196, 215, 209, .15);
  padding-top: 1.5rem;
  max-height: 125vh;
  overflow: scroll;
}

.lb24-livechat-home textarea {
  background: white;
}

@media (hover: hover) {
  .swiper-ctrl:hover {
    background: var(--steel-teal);
    fill: #fff;
  }
  .article__file:hover {
    color: #fff;
  }
  .article__file:hover .article__file-name {
    color: var(--steel-teal);
  }
  .article__file:hover:after {
    background: var(--steel-teal);
  }
  .article__related svg:hover {
    background: var(--steel-teal);
    fill: #fff;
  }
  .tip:hover .more-link--back {
    color: inherit;
  }
  .tip:hover .more-link--back:before {
    height: 100%;
  }
}

@media screen and (max-width: 1210px) and (min-width: 1025px) {
  .article__body .adv {
    margin-left: 0;
  }
  .article__gallery {
    max-width: 666px;
    margin-right: -30px;
    padding: 0 66px 0 0;
  }
  .article__gallery:after {
    width: 66px;
  }
  .article__images-figure img {
    max-height: 350px;
  }
  .article__gallery-controllers {
    top: 0;
    width: 66px;
    height: 320px;
    padding: 10px;
  }
  .article__related svg {
    right: -20px;
  }
}

@media screen and (max-width: 1024px) {
  .article {
    padding: 0;
  }
  .article__cover {
    margin: 0 -20px 30px;
  }
  .article__cover img {
    width: 100%;
  }
  blockquote {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }
  .article__gallery {
    margin: 40px auto;
  }
  .article__related {
    display: block;
  }
  .article__related svg {
    display: none;
  }
}

@media screen and (max-width: 1024px) and (min-width: 601px) {
  .article__related {
    margin: 40px auto 20px;
  }
  .article__related--minified .latest-teasers {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .article__related article {
    padding: 0 16px;
  }
}

@media screen and (max-width: 767px) {
  .article__cover figcaption {
    margin: 10px 20px 0;
  }
  .article__body .adv {
    margin-left: -20px;
  }
  .article__media {
    margin: 0 -20px 30px;
  }
  .article__gallery {
    max-width: none;
    margin: 30px -20px;
    padding: 0;
    background: var(--mint-cream);
  }
  .article__images-figure figcaption {
    margin: 10px;
  }
  .article__gallery-thumbs,
  .swiper-ctrl {
    display: none;
  }
  .article__gallery:after {
    display: none;
  }
  .article__gallery-controllers {
    top: auto;
    bottom: 0;
    padding: 0;
    background: none;
  }
  .article__files {
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 600px) {
  .article__body .adv {
    float: none;
    margin: 0 0 30px;
  }
  .article__related {
    position: fixed;
    bottom: 6px;
    left: 6px;
    z-index: 3;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
            align-items: center;
    width: calc(100% - 12px);
    margin: 0;
    padding: 5px;
    text-align: center;
    border-radius: 60px;
    background: var(--opal);
  }
  .article__related:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    border-radius: 60px;
    background: var(--opal);
  }
  .article__related--minified {
    z-index: 2;
    border-radius: 60px 0 0 60px;
    width: calc(50% - 6px);
  }
  .article__related svg {
    position: static;
    display: block;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 10px;
    background: none;
  }
  .article__related h4 {
    margin: 0;
    padding: 12px 0;
    font-size: 1.6rem;
    line-height: 1.6rem;
    font-style: normal;
    cursor: pointer;
    display: block;
    width: 100%;
  }
  .article__related h4 span {
    display: none;
  }
  .article__related .latest-teasers {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    padding: 30px 16px 76px;
    background: var(--mint-cream);
    border-top: 15px solid var(--page--background);
  }
  .insider-tip {
    display: block;
    margin: 60px -20px;
  }
}

@media screen and (max-width: 450px) {
  .article__cover {
    margin: 0 -10px 30px;
  }
  .article__cover figcaption {
    margin: 10px 10px 0;
  }
  .article__media {
    margin: 0 -10px 30px;
  }
  .article__gallery {
    margin: 30px -10px;
  }
  .insider-tip {
    display: block;
    margin: 60px -10px;
  }
}
