/* stylelint-disable max-line-length */
/* stylelint-enable max-line-length */
/*
--- Animations!!! ---
-- Slider
-- Squeeze
-- Arrow Left
-- Arrow Right

How to use:

Have this in it's own file e.g. _hamburger.scss
@include h('cross', 25px, 20px, #fff, 2px, 2px, 0.3s);

Parameters:
@include h(AnimationType, Width, Height, Colour, Border Radius, Thickness, Transition Speed);

*/
.post-authors h6 {
  margin-bottom: 11px;
  font-size: 0.875rem;
  font-weight: 400;
}
.post-authors__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.post-authors .post-author-item {
  position: relative;
}
.post-authors .post-author-item__image-container {
  position: relative;
  z-index: 0;
  height: 205px;
  overflow: hidden;
}
.post-authors .post-author-item__image-container img {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1.4);
  -o-object-fit: cover;
     object-fit: cover;
}
.post-authors .post-author-item__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 10px 16px;
  background: linear-gradient(to top, #1b9dd4 calc(50% - 5px), rgba(27, 157, 212, 0.5));
}
.post-authors .post-author-item__info a {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}
.post-authors.block-theme-override--blue .post-author-item__info, .post-authors.block-theme-override--blue.block-theme-override--blue .post-author-item__info {
  background: linear-gradient(to top, #1b9dd4 calc(50% - 5px), rgba(27, 157, 212, 0.5));
}
.theme-colour--blue .post-authors .post-author-item__info {
  background: linear-gradient(to top, #1b9dd4 calc(50% - 5px), rgba(27, 157, 212, 0.5));
}
.post-authors.block-theme-override--green .post-author-item__info, .post-authors.block-theme-override--green.block-theme-override--green .post-author-item__info {
  background: linear-gradient(to top, #49a53a calc(50% - 5px), rgba(73, 165, 58, 0.5));
}
.theme-colour--green .post-authors .post-author-item__info {
  background: linear-gradient(to top, #49a53a calc(50% - 5px), rgba(73, 165, 58, 0.5));
}
.post-authors.block-theme-override--pink .post-author-item__info, .post-authors.block-theme-override--pink.block-theme-override--pink .post-author-item__info {
  background: linear-gradient(to top, #ea99b8 calc(50% - 5px), rgba(234, 153, 184, 0.5));
}
.post-authors.block-theme-override--pink .post-author-item__info a, .post-authors.block-theme-override--pink.block-theme-override--pink .post-author-item__info a {
  color: #000;
}
.theme-colour--pink .post-authors .post-author-item__info {
  background: linear-gradient(to top, #ea99b8 calc(50% - 5px), rgba(234, 153, 184, 0.5));
}
.theme-colour--pink .post-authors .post-author-item__info a {
  color: #000;
}
.post-authors.block-theme-override--yellow .post-author-item__info, .post-authors.block-theme-override--yellow.block-theme-override--yellow .post-author-item__info {
  background: linear-gradient(to top, #fab709 calc(50% - 5px), rgba(250, 183, 9, 0.5));
}
.post-authors.block-theme-override--yellow .post-author-item__info a, .post-authors.block-theme-override--yellow.block-theme-override--yellow .post-author-item__info a {
  color: #000;
}
.theme-colour--yellow .post-authors .post-author-item__info {
  background: linear-gradient(to top, #fab709 calc(50% - 5px), rgba(250, 183, 9, 0.5));
}
.theme-colour--yellow .post-authors .post-author-item__info a {
  color: #000;
}

.post-staff__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 28px;
}
@media only screen and (max-width: 599px) {
  .post-staff__list {
    grid-template-columns: 1fr;
  }
}
.post-staff .post-staff-item {
  position: relative;
}
.post-staff .post-staff-item__image-container {
  height: 205px;
  overflow: hidden;
  margin-bottom: 9px;
}
.post-staff .post-staff-item__image-container img {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1.4);
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 599px) {
  .post-staff .post-staff-item__image-container {
    height: 275px;
  }
}
.post-staff .post-staff-item__info a,
.post-staff .post-staff-item__info span {
  display: block;
  font-size: 0.875rem;
  color: #000;
}
.post-staff .post-staff-item__info a {
  font-weight: 400;
  text-decoration: none;
}
.post-staff .post-staff-item__info span {
  margin-top: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.feed-results--posts .feed-results__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  /* one or more available input mechanism(s) can hover over elements with ease */
}
@media screen and (any-hover: hover) {
  .feed-results--posts .feed-results__item:hover .item-image img {
    transform: scale(1.05);
  }
}
.feed-results--posts .item-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.feed-results--posts .item-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 66%;
}
.feed-results--posts .item-image-wrapper .item-image {
  position: relative;
  pointer-events: none;
  overflow: hidden;
  padding-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.feed-results--posts .item-image-wrapper .item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.feed-results--posts .item-image-wrapper .item-image img {
  transition: transform 600ms;
}
.feed-results--posts .item-title {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  color: #000;
  transition: color 0.3s;
}
.feed-results--posts .item__footer {
  position: relative;
  z-index: 11;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #cee8ef;
  padding-top: 11px;
}
.feed-results--posts .item__footer[data-type=webinar], .feed-results--posts .item__footer[data-type=podcasts], .feed-results--posts .item__footer[data-type=video] {
  border-color: #ffc8e0;
}
.feed-results--posts .item__footer[data-type=news-insights] {
  border-color: #cee8ef;
}
.feed-results--posts .item__footer[data-type=publication], .feed-results--posts .item__footer[data-type=email] {
  border-color: #fde9b5;
}
.feed-results--posts .item__footer[data-type=event] {
  border-color: #c8e4c3;
}
.feed-results--posts .item__footer .item-type,
.feed-results--posts .item__footer .item-date,
.feed-results--posts .item__footer .item-event-date,
.feed-results--posts .item__footer .item-event-location,
.feed-results--posts .item__footer .item-meta li {
  position: relative;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.3;
  color: #55575d;
}
.feed-results--posts .item__footer .item-type,
.feed-results--posts .item__footer .item-meta .item-type {
  font-weight: 600;
  color: #000;
}
.feed-results--posts .item__footer .item-event-date {
  color: #000;
}
.feed-results--posts .item-type {
  padding-right: 12px;
}
.feed-results--posts .item-type::after {
  content: "";
  position: absolute;
  top: 2px;
  display: inline-block;
  width: 1px;
  height: 12px;
  margin-left: 6px;
  background-color: #000;
}
.feed-results--posts .item-type:last-child::after {
  display: none;
}
.feed-results--posts .item-event-date span + span {
  position: relative;
  display: inline-block;
  padding-left: 8px;
}
.feed-results--posts .item-event-date span + span::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #000;
}
.feed-results--posts .item-event-date + .item-event-date {
  margin-left: 6px;
}
.feed-results--posts .item-event-date + .item-event-location {
  margin-top: 4px;
}
.feed-results--posts .item-event-location {
  width: 100%;
}
.feed-results--posts .item-meta {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0;
}
.feed-results--posts .item-meta a {
  color: #000;
}
.feed-results--posts .item-meta li:not(.item-type) {
  margin-right: 10px;
}
.feed-results--posts .item-meta + .item-date {
  margin-top: 6px;
}

.post-content-footer .social-share {
  margin-top: 60px;
}
.post-content-footer .social-share li {
  margin: 0;
  padding: 0;
}
.post-content-footer .social-share li::before {
  display: none;
}
.post-content-footer .post-content-footer__section {
  margin-top: 40px;
}
.post-content-footer .post-content-footer__section h6 {
  margin-bottom: 27px;
  font-family: "Readex Pro", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}
.post-content-footer .post-content-footer__section + .post-content-footer__section {
  border-top: 1px solid #1b9dd4;
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .post-content-footer .post-content-footer__section {
    padding-top: 30px;
  }
  .post-content-footer .post-content-footer__section h6 {
    margin-bottom: 11px;
  }
}
@media only screen and (max-width: 599px) {
  .post-content-footer .post-content-footer__section {
    padding-top: 30px;
  }
  .post-content-footer .post-content-footer__section h6 {
    margin-bottom: 11px;
  }
}
.post-content-footer.block-theme-override--blue .post-content-footer__section + .post-content-footer__section, .post-content-footer.block-theme-override--blue.block-theme-override--blue .post-content-footer__section + .post-content-footer__section {
  border-color: #1b9dd4;
}
.theme-colour--blue .post-content-footer .post-content-footer__section + .post-content-footer__section {
  border-color: #1b9dd4;
}
.post-content-footer.block-theme-override--green .post-content-footer__section + .post-content-footer__section, .post-content-footer.block-theme-override--green.block-theme-override--green .post-content-footer__section + .post-content-footer__section {
  border-color: #49a53a;
}
.theme-colour--green .post-content-footer .post-content-footer__section + .post-content-footer__section {
  border-color: #49a53a;
}
.post-content-footer.block-theme-override--pink .post-content-footer__section + .post-content-footer__section, .post-content-footer.block-theme-override--pink.block-theme-override--pink .post-content-footer__section + .post-content-footer__section {
  border-color: #ea99b8;
}
.theme-colour--pink .post-content-footer .post-content-footer__section + .post-content-footer__section {
  border-color: #ea99b8;
}
.post-content-footer.block-theme-override--yellow .post-content-footer__section + .post-content-footer__section, .post-content-footer.block-theme-override--yellow.block-theme-override--yellow .post-content-footer__section + .post-content-footer__section {
  border-color: #fab709;
}
.theme-colour--yellow .post-content-footer .post-content-footer__section + .post-content-footer__section {
  border-color: #fab709;
}

.single-news-insights .breadcrumb-section {
  background-color: transparent !important;
}

.content-w-sidebar--single-news-insights .related-events-section {
  padding-top: 40px;
}
.content-w-sidebar--single-news-insights .related-events-section .feed-results--posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 28px;
}
.content-w-sidebar--single-news-insights .related-events-section .feed-results--posts .feed-results__item .item-image img {
  transform: none;
}
@media only screen and (max-width: 599px) {
  .content-w-sidebar--single-news-insights .related-events-section .feed-results--posts {
    grid-template-columns: 1fr;
  }
}
.content-w-sidebar--single-news-insights .news-insights-author-list-mobile {
  display: none;
}
.content-w-sidebar--single-news-insights .news-insights-author-list-mobile .post-authors__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 28px;
  margin-top: 30px;
}
@media only screen and (min-width: 1920px) {
  .content-w-sidebar--single-news-insights .news-insights-author-list-mobile + .post-content-footer__section {
    border-top: none !important;
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1919px) {
  .content-w-sidebar--single-news-insights .news-insights-author-list-mobile + .post-content-footer__section {
    border-top: none !important;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .content-w-sidebar--single-news-insights .news-insights-author-list-mobile + .post-content-footer__section {
    border-top: none !important;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .content-w-sidebar--single-news-insights.content-sidebar-layout .content-sidebar-layout__sidebar-col {
    display: none;
  }
  .content-w-sidebar--single-news-insights .news-insights-author-list-mobile {
    display: block;
    padding-top: 0;
  }
  .content-w-sidebar--single-news-insights .news-insights-author-list-mobile .post-authors__list {
    margin-top: 0;
  }
}
@media only screen and (max-width: 599px) {
  .content-w-sidebar--single-news-insights.content-sidebar-layout .content-sidebar-layout__sidebar-col {
    display: none;
  }
  .content-w-sidebar--single-news-insights .news-insights-author-list-mobile {
    display: block;
    padding-top: 0;
  }
  .content-w-sidebar--single-news-insights .news-insights-author-list-mobile .post-authors__list {
    margin-top: 0;
  }
}
@media only screen and (max-width: 599px) {
  .content-w-sidebar--single-news-insights .news-insights-author-list-mobile .post-authors__list {
    grid-template-columns: 1fr;
  }
  .content-w-sidebar--single-news-insights .post-author-item__image-container {
    height: 275px;
  }
}

/*# sourceMappingURL=single-news-insights.css.map*/