figure {
  box-sizing: border-box;
}

figure {
  position: relative;
}

figcaption {
  text-align: center;
  line-height: 24px;
  font-size: 16px;
}

figure[data-type=table] {
  clear: both;
}

figure[data-type=video] {
  position: relative;
  margin-bottom: 24px;
  text-align: center;
  clear: both;

  p {
    margin: 0;
  }
}

figure[data-type=video].wy-figure-full {

  p {
    position: relative;
    padding-bottom: 51%;
    width: 100%;
    height: 0;
  }

  iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;

    @include breakpoint(-bp(mobile)) {
      width: 100% !important;
      height: auto !important;
    }
  }
}

figure[data-type=image] {
  position: relative;
  margin-bottom: 24px;

  img {
    width: 100%;
  }

  &.wy-figure-large {
    width: 100%;
    clear: both;
  }

  &.wy-figure-medium {
    width: 50%;
  }

  &.wy-figure-small {
    width: 33%;
  }

  @include breakpoint(-bp(mobile)) {
    width: 100% !important;
    float: none !important;
    margin-left: 0;
    margin-right: 0;
  }
}

figure[data-type=quote] {
  font-family: "Georgia", serif;
  margin-bottom: 24px;
  margin-left: 24px;
  font-style: italic;
  position: relative;
  border-left: solid 5px #404040;
  padding-left: 24px;

  figcaption {
    font-weight: bold;
    text-align: left;
  }

  &.wy-figure-medium {
    font-size: 20px;
  }

  &.wy-figure-large {
    font-size: 24px;
  }

  .wy-figure-right {
    width: 33%;
  }

  .wy-figure-left {
    width: 33%;
    border-left: none;
    border-right: solid 5px #404040;
    padding-left: 0;
    padding-right: 24px;
    margin-left: 0;
    margin-right: 24px;
  }

  cite {
    display: block;
    text-align: left;
    font-weight: bold;
  }

  cite:before {
    content: "\2014\00a0";
  }
}

.wy-figure-right {
  float: right;
  margin-left: 24px;

  .wy-figure-controls {
    right: 0;
  }
}

.wy-figure-left {
  float: left;
  margin-right: 24px;
}
