.md-section.lead {
  padding: 0 0 50px;
}

#sec_1 .md-image a {
  display: block;
}
#sec_1 .mouse-stoker-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  font-weight: 700;
  font-size: 1.7rem;
  text-align: center;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  line-height: 1.29412;
  color: #fff;
  transform: translate(-50%, -50%);
}

.md-card-item__subtext {
  font-size: 1.4rem;
  margin-top: 0.5em;
  transition: color 0.3s;
}

.md-btn:hover .md-card-item__subtext {
  color: #fff;
  z-index: 1;
}

.md-btn__anchor {
  color: #338c6a;
  margin-top: 0.5em;
  transition: color 0.3s;
}

.md-btn:hover .md-btn__anchor {
  color: #fff;
}

.md-btn__anchor .md-btn__anchor-inner {
  padding-right: 1.1em;
  position: relative;
}

.md-btn__anchor .md-btn__anchor-inner::after {
  background: url(/j/sustainability/key-themes/value-creation/img/arrow_2_grn_anchor.svg) no-repeat 0 0;
  background-size: contain;
  content: "";
  height: 1em;
  margin: auto 0;
  position: absolute;
  top: 0.3em;
  right: 0;
  width: 0.765em;
  transition: all 0.3s;
}

.md-btn:hover .md-btn__anchor .md-btn__anchor-inner::after {
  background: url(/j/sustainability/key-themes/value-creation/img/arrow_2_wht_anchor.svg) no-repeat 0 0;
  background-size: contain;
}

.md-list--disc > .md-list__item.--kpi:before {
  background-color: #e60012;
}

.md-list--disc > .md-list__item.--monitoring:before {
  background-color: #008ee6;
}

.md-flexbox {
  display: flex;
  gap: 30px;
}

.md-flexbox .md-list__item:not(:first-child) {
  margin-top: 0;
}

.md-table-caption .md-flexbox {
  justify-content: right;
}

.md-title--3.--no-margin {
  margin-bottom: 0;
}

.md-notes--asterisk .md-notes__item:before {
  content: "*";
}

.md-commentbox {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 2.5em;
}

.md-commentbox + .md-commentbox {
  border-top: dotted 1px #ccc;
  margin-top: 4em;
  padding-top: 4em;
}

.md-comment {
  display: flex;
  gap: 1em;
  margin-bottom: 1.5em;
}

.md-comment__image {
  min-width: 150px;
}

.md-comment__name {
  font-weight: bold;
  font-size: 1.8rem;
}

.md-comment__position {
  font-size: 1.3rem;
}

@media screen and (min-width: 768px) {
  #sec_1 .md-image a {
    position: relative;
  }
  #sec_1 .md-image a:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: opacity 0.3s;
    content: "";
  }
  #sec_1 .md-image a:hover:before {
    opacity: 1;
  }
  #sec_1 .mouse-stoker {
    position: absolute;
    top: -75px;
    left: -75px;
    overflow: hidden;
    width: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(72, 168, 137, 0.95) 23%, rgba(46, 126, 122, 0.95) 100%);
    border-radius: 50%;
    transform-origin: center center;
    transition:
      width 0.125s,
      height 0.125s,
      transform 0.25s ease-out;
    justify-content: center;
    align-items: center;
    will-change: transform;
    pointer-events: none;
  }
  #sec_1 .mouse-stoker.is-active {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .md-section:nth-of-type(odd) + .md-pager-wrap {
    margin-top: -15px;
  }
  #sec_1 .mouse-stoker {
    display: none;
  }

  .md-commentbox {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
  }
}

/** Modal **/

.image-modal {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 40px;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.image-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.image-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-modal.is-open .image-modal__overlay {
  opacity: 1;
}

.image-modal__content {
  position: relative;
  z-index: 1;
  max-width: 3060px;
  max-height: calc(100vh - 80px);
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.image-modal.is-open .image-modal__content {
  opacity: 1;
  transform: scale(1);
}

.image-modal__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  width: auto;
  height: auto;
}

.image-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

body.is-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .image-modal {
    padding: 50px 15px 20px;
  }

  .image-modal__content {
    max-height: calc(100vh - 70px);
  }

  .image-modal__image {
    max-height: calc(100vh - 70px);
  }

  .image-modal__close {
    top: -40px;
  }
}
