/* ==========================================================
 * images.scss
 * Images styles
 *
 * Author: Yann Gouffon, yann@antistatique.net
 * Date:   2014-04-28 17:17:40
 *
 * Copyright 2014 Federal Chancellery of Switzerland
 * Licensed under MIT
 =========================================================== */

img {
  max-width: 100%;
}

figure {
  margin-top: 0.2em;

  &.pull-left {
    padding-right: 10px;
    display: table;

    figcaption {
      display: table-caption;
      caption-side: bottom;
      padding-right: 10px;
    }
  }

  &.pull-right {
    padding-left: 10px;
    display: table;

    figcaption {
      display: table-caption;
      caption-side: bottom;
      padding-left: 10px;
    }
  }
}

figcaption {
  font-size: 0.92857143rem;
  line-height: 1.3em;
  margin-top: 0.7em;
  margin-bottom: 0.8em;
}

.thumbnail-wrapper {
  width: 100%;
  padding-top: 100%;
  position: relative;
  margin: 10px 0 45px 0;
}

.thumbnail {
  margin: 0;
  border: none;
  border-radius: 0;
  padding: 0;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  figure {
    margin: 0;
    background: $smoke;
    width: 100%;
    height: 100%;
    text-align: center;
  }

  img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    .oldie & {
      top: 0;
      width: 100%;
    }
  }

  figcaption {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
}
