.paragraph-full-width-image {
  max-width: 1392px;
  padding: 10px 20px;
  margin: 10px auto;
  background: #fff;
  &:hover {
    .full-width-image-overlay,
    .full-width-caption-plus-icon {
      opacity: 1;
    }
  }
  .full-width-image {
    img {
      width: 100%;
    }
  }
  .full-width-image-wrapper {
    position: relative;
  }
  .full-width-image-text {
    font-family: 'JeanLuc';
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 1200px;
    max-width: 100%;
    @media(min-width: 768px) {
      font-size: 60px;
      line-height: 50px;
    }
    @media(min-width: 768px) {
      font-size: 80px;
      line-height: 66px;
    }
    @media(min-width: 1200px) {
      font-size: 132px;
      line-height: 110px;
    }
  }
  .full-width-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .full-width-caption-plus-icon {
    position: absolute;
    left: 30px;
    bottom: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
  }
  .full-width-caption {
    justify-content: flex-end;
    padding: 40px 0;
    display: none;
    &.active {
      display: flex;
    }
    .field--name-field-caption {
      max-width: 800px;
      font-size: 17px;
      line-height: 36px;
    }
  }
}