@charset "UTF-8";
/* -------------------------------------------------------------- 

STYLES COMBINED

-------------------------------------------------------------- */
/* -------------------------------------------------------------- 

RESET

-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  font-size: 100%;
  font: inherit;
  border: 0;
  vertical-align: baseline;
  margin: 0;
  padding: 0; }

article, aside, details, figcaption, figure, footer, header[role="banner"], hgroup, menu, nav, section {
  display: block; }

html {
  overflow-y: scroll; }

a:hover, a:active {
  outline: 0; }

:focus {
  outline: 0; }

img {
  display: block; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  font-weight: 400;
  text-align: left; }

form {
  outline: 0;
  border: 0; }

button, input, select, textarea {
  font-size: 100%;
  border: none;
  vertical-align: baseline;
  padding: 0;
  margin: 0; }

button, input {
  line-height: normal; }

button, input[type="button"], input[type="submit"] {
  cursor: pointer; }

textarea {
  overflow: auto;
  vertical-align: top; }

/* -------------------------------------------------------------- 

SCSS EXTENSIONS

GUIDE TO UNITS: 
rem = font-sizes, use typeset() to set font-size and line-height
% = for responsive elements, use per() to calculate
px = media queries and border widths
em = for almost everything else; non-responsive widths, 
max-widths, padding, margins, use em() to calculate

-------------------------------------------------------------- */
/* SET BASE FONT SIZE
This is the pixel value but do not include ‘px’
-------------------------------------------------------------- */
/* PERCENTAGES
Example use: per(500, 1000)
would output: 50%
-------------------------------------------------------------- */
/* FONT SIZE AND LINE HEIGHT
Example use (if $base is set to 18): @include typeset(18,24);
would output: font-size: 18px; font-size: 1rem; line-height: 1.33333;
-------------------------------------------------------------- */
/* EMS
Example use: em(12, 24)
would output: 0.5em
-------------------------------------------------------------- */
/* -------------------------------------------------------------- 

There’s always exceptions

-------------------------------------------------------------- */
/* Line-height
Example use: lh(24, 12)
would output: 2
-------------------------------------------------------------- */
/* REMS
For where you might want to use rem as a unit for something 
other than font-size. So there’s also this.

Example use (if $base is set to 18): @include rem(margin,18 0);
would output: margin: 18px 0; margin: 1rem 0;
-------------------------------------------------------------- */
/* -------------------------------------------------------------- 

MEDIA QUERIES

A more basic version of https://github.com/guardian/sass-mq 
This uses pixels not ems for breakpoints.

-------------------------------------------------------------- */
/* -------------------------------------------------------------- 

COLOURS

-------------------------------------------------------------- */
/* Palettes
See this Erskine article for info: 
http: //erskinedesign.com/blog/friendlier-colour-names-sass-maps/
-------------------------------------------------------------- */
/* -------------------------------------------------------------- 

GRIDS

-------------------------------------------------------------- */
/* Defaults for small screens and up
-------------------------------------------------------------- */
.block {
  display: block;
  position: relative; }

.block__grid {
  display: block;
  position: relative;
  width: 100%;
  max-width: 25em;
  overflow: hidden;
  padding: 1.6875em 0.9375em;
  margin: 0 auto; }

.block__grid:after {
  content: "";
  display: table;
  clear: both; }

.col {
  float: left;
  width: 100%;
  margin-bottom: 0.9375em; }

@media all and (max-width: 690px) {
  #main-content > .block:first-child .block__grid {
    padding-top: 0.9375em; }

  .block--sub-navigation + .block .block__grid {
    padding-top: 0.9375em; } }
/* Small screens
-------------------------------------------------------------- */
/* For medium screens
-------------------------------------------------------------- */
@media all and (min-width: 691px) and (max-width: 1023px) {
  .block__grid {
    max-width: 43.1875em;
    padding: 1.6875em 0; }

  .col {
    margin-left: 3.9073806078%; }

  .col.m-right {
    float: right;
    clear: right;
    margin-left: 0;
    margin-right: 4.07239819%; }

  .m-break {
    display: block;
    clear: both; }

  .m-clear {
    clear: both; }

  .m-right {
    float: right; }

  .m-1 {
    width: 8.1041968162%; }

  .m-2 {
    width: 20.1157742402%; }

  .m-3 {
    width: 32.1273516643%; }

  .m-4 {
    width: 44.139%; }

  .m-5 {
    width: 56.1505065123%; }

  .m-6 {
    width: 68.1620839363%; }

  .m-7 {
    width: 80.1736613603%; }

  .m-8 {
    width: 92.1852387844%; }

  .m-push-1 {
    margin-left: 15.9189580318%; }

  .m-push-2 {
    margin-left: 27.9305354559%; }

  .col--keyline {
    padding: 1.6875em 0.875em 2.0625em; } }
  @media all and (min-width: 691px) and (max-width: 1023px) and (min-width: 691px) {
    .col--keyline {
      margin-bottom: 0; } }

@media all and (min-width: 691px) and (max-width: 1023px) {
  .m-h-keyline {
    display: block;
    clear: both;
    background: #ccc;
    height: 1px;
    margin: 0 6.875em; }

  .m-h-keyline--end {
    margin: 0 1.6875em 1.6875em; }

  .m-v-keyline {
    display: block;
    float: left;
    position: relative;
    left: 0.8125em;
    background: #ccc;
    width: 1px;
    height: 24px;
    margin-right: -1px; }

  .m-h-pull-keyline {
    display: block;
    clear: both;
    height: 0;
    margin-bottom: -1.6875em; } }
/* Grid L, for large screens
-------------------------------------------------------------- */
@media all and (min-width: 1024px) {
  .block__grid {
    max-width: 63.9375em;
    padding: 1.6875em 0; }

  .col {
    margin-left: 2.6392961877%; }

  .col.l-right {
    float: right;
    clear: right;
    margin-left: 0;
    margin-right: 2.6392961877%; }

  .l-break {
    display: block;
    clear: both; }

  .l-clear {
    clear: both; }

  .l-right {
    float: right; }

  .l-1 {
    width: 5.4740957967%; }

  .l-2 {
    width: 13.587487781%; }

  .l-3 {
    width: 21.7008797654%; }

  .l-4 {
    width: 29.8142717498%; }

  .l-5 {
    width: 37.9276637341%; }

  .l-6 {
    width: 46.0410557185%; }

  .l-7 {
    width: 54.1544477028%; }

  .l-8 {
    width: 62.2678396872%; }

  .l-9 {
    width: 70.3812316716%; }

  .l-10 {
    width: 78.4946236559%; }

  .l-11 {
    width: 86.6080156403%; }

  .l-12 {
    width: 94.7214076246%; }

  .l-push-1 {
    margin-left: 6.875em; }

  .l-push-1-and-half {
    margin-left: 9.53125em; }

  .l-push-2 {
    margin-left: 12.0625em; }

  .l-push-4 {
    margin-left: 22.4375em; }

  .col--keyline {
    padding: 1.6875em 0.875em 2.0625em; } }
  @media all and (min-width: 1024px) and (min-width: 691px) {
    .col--keyline {
      margin-bottom: 0; } }

@media all and (min-width: 1024px) {
  .l-h-keyline {
    display: block;
    clear: both;
    background: #ccc;
    height: 1px;
    margin: 0 1.6875em; }

  .l-h-keyline--end {
    margin-bottom: 1.6875em; }

  .l-v-keyline {
    display: block;
    float: left;
    position: relative;
    left: 0.8125em;
    background: #ccc;
    width: 1px;
    height: 0;
    margin-right: -1px; } }
/* Grid XL, for larger screens
-------------------------------------------------------------- */
@media all and (min-width: 1355px) {
  .block__grid--xl {
    max-width: 84.6875em; }

  .grid-xl {
    clear: both;
    width: 84.6875em;
    overflow: hidden;
    position: relative;
    left: -10.375em; }

  .block__grid--xl .col, .grid-xl .col {
    margin-left: 1.6875em; }

  .block__grid--xl .col.l-right, .grid-xl .col.l-right {
    margin-right: 1.6875em; }

  .block__grid--xl .xl-1, .grid-xl .xl-1 {
    width: 4.1328413284%; }

  .block__grid--xl .xl-2, .grid-xl .xl-2 {
    width: 13.587487781%; }

  .block__grid--xl .xl-3, .grid-xl .xl-3 {
    width: 16.3837638376%; }

  .block__grid--xl .xl-4, .grid-xl .xl-4 {
    width: 22.5092250923%; }

  .block__grid--xl .xl-5, .grid-xl .xl-5 {
    width: 28.6346863469%; }

  .block__grid--xl .xl-6, .grid-xl .xl-6 {
    width: 34.7601476015%; }

  .block__grid--xl .xl-7, .grid-xl .xl-7 {
    width: 40.8856088561%; }

  .block__grid--xl .xl-8, .grid-xl .xl-8 {
    width: 47.0110701107%; }

  .block__grid--xl .xl-9, .grid-xl .xl-9 {
    width: 53.1365313653%; }

  .block__grid--xl .xl-10, .grid-xl .xl-10 {
    width: 59.2619926199%; }

  .block__grid--xl .xl-11, .grid-xl .xl-11 {
    width: 65.3874538745%; }

  .block__grid--xl .xl-12, .grid-xl .xl-12 {
    width: 71.5129151292%; }

  .block__grid--xl .xl-push-0, .grid-xl .xl-push-0 {
    margin-left: 1.6875em; }

  .block__grid--xl .xl-push-1, .grid-xl .xl-push-1 {
    margin-left: 6.875em; }

  .block__grid--xl .xl-push-2, .grid-xl .xl-push-2 {
    margin-left: 12.0625em; } }
/* -------------------------------------------------------------- 

BASE STYLES

- GENERAL
- LINKS
- IMAGES, VIDEO AND AUDIO

-------------------------------------------------------------- */
/* GENERAL
-------------------------------------------------------------- */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html, body {
  font-size: 16px;
  line-height: 1;
  color: #444;
  background: #f7f7f7;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

@media all and (min-width: 1024px) {
  #main-content {
    border-top: 15px solid #232323; } }

.block.white {
  background-color: #fff;
  border: 1px solid #ccc;
  border-right: none;
  border-left: none; }

.hidden {
  position: absolute;
  left: -10000px; }

/* LINKS
-------------------------------------------------------------- */
a {
  color: inherit;
  text-decoration: underline; }
  a:focus {
    background: rgba(0, 0, 0, 0.1); }
    a:focus img {
      opacity: .8; }

/* IMAGES, VIDEO AND AUDIO
-------------------------------------------------------------- */
#main-content img {
  width: 100%; }

.video-wrap {
  background: #000;
  width: 100%; }

.video {
  position: relative;
  height: 0;
  padding-bottom: 56.25%; }

.video iframe,
.video object,
.video embed,
.video .container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0; }

audio {
  display: block;
  clear: both;
  width: 100%; }

/* -------------------------------------------------------------- 

FONTS

For all font-families and weights

-------------------------------------------------------------- */
body {
  text-rendering: optimizeLegibility; }

strong, b {
  font-weight: inherit; }

em, i {
  font-style: inherit; }

body {
  font-family: 'freight-text-pro',georgia,serif;
  font-weight: 400; }

.section-header .h-headline,
.h-kicker,
.block--article .h-byline,
.block--article .h-credits,
.block--article__text em,
.block--article__legacy em,
.block--article__legacy i {
  font-family: 'freight-text-pro',georgia,serif;
  font-weight: 400;
  font-style: italic; }

.block--article__text strong,
.block--article__legacy strong,
.block--article__legacy b,
.block--article__legacy h1,
.block--article__legacy h2,
.block--article__legacy h3,
.block--article__legacy h4,
.block--article__legacy h5,
.block--article__legacy h6 {
  font-family: 'freight-text-pro',georgia,serif;
  font-weight: 600; }

.block--article__text strong em,
.block--article__text em strong,
.block--article__legacy strong em,
.block--article__legacy em strong,
.block--article__legacy strong i,
.block--article__legacy i strong,
.block--article__legacy b em,
.block--article__legacy em b,
.block--article__legacy b i,
.block--article__legacy i b,
.block--article__legacy h1 i,
.block--article__legacy h2 i,
.block--article__legacy h3 i,
.block--article__legacy h4 i,
.block--article__legacy h5 i,
.block--article__legacy h6 i,
.block--article__legacy h1 em,
.block--article__legacy h2 em,
.block--article__legacy h3 em,
.block--article__legacy h4 em,
.block--article__legacy h5 em,
.block--article__legacy h6 em {
  font-family: 'freight-text-pro',georgia,serif;
  font-weight: 600;
  font-style: italic; }

input, textarea,
label,
.btn,
.block--site-masthead,
.block--sub-navigation,
.mfp-counter,
.h-section,
.h-headline,
.h-article-section,
.h-article-sub,
.block--site-footer .small,
.h-date,
.h-tags,
.block--article__share,
.block--article__pull-quote,
.block--article__pull-quote-horizontal,
.block--article .h-block-review .h-byline,
.block--article .h-block-review .h-rating {
  font-family: 'aktiv-grotesk-std',helvetica,arial,sans-serif;
  font-weight: 300; }

.block--article .h-block-review .h-byline {
  font-style: normal; }

.block--site-masthead .level-1,
.h-headline strong,
.h-section,
.h-article-section strong,
.h-article-sub-sub,
.h-tags strong,
.block--article__pull-quote .cite,
.block--article__pull-quote-horizontal .cite,
.block--sub-navigation .h-headline,
.block--article .h-block-review .h-byline strong,
.block--article .h-block-review .h-rating strong {
  font-family: 'aktiv-grotesk-std',helvetica,arial,sans-serif;
  font-weight: 800; }

/* -------------------------------------------------------------- 

ICONS
Compiled with http://icomoon.io/app/

-------------------------------------------------------------- */
/* ADDING ICONS: 
You should NOT need to change this block (See line 36)
-------------------------------------------------------------- */
@font-face {
  font-family: 'diymag';
  src: url("http://diymag.com/ui/icons/fonts/diymag.eot?-21ifub");
  src: url("http://diymag.com/ui/icons/fonts/diymag.eot?#iefix-21ifub") format("embedded-opentype"), url("http://diymag.com/ui/icons/fonts/diymag.woff?-21ifub") format("woff"), url("http://diymag.com/ui/icons/fonts/diymag.ttf?-21ifub") format("truetype"), url("http://diymag.com/ui/icons/fonts/diymag.svg?-21ifub#diymag") format("svg");
  font-weight: normal;
  font-style: normal; }
[class^="icon-"], [class*=" icon-"] {
  font-family: 'diymag';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* ADDING ICONS: 
Replace Content below this line
-------------------------------------------------------------- */
.icon-close:before {
  content: "\e620"; }

.icon-circle-stumbleupon:before {
  content: "\e61e"; }

.icon-circle-digg:before {
  content: "\e61f"; }

.icon-tag:before {
  content: "\e600"; }

.icon-stars-1:before {
  content: "\e613"; }

.icon-stars-2:before {
  content: "\e61a"; }

.icon-stars-3:before {
  content: "\e61b"; }

.icon-stars-4:before {
  content: "\e61c"; }

.icon-stars-5:before {
  content: "\e61d"; }

.icon-circle-android:before {
  content: "\e60c"; }

.icon-circle-apple:before {
  content: "\e60b"; }

.icon-circle-diy:before {
  content: "\e60a"; }

.icon-circle-facebook:before {
  content: "\e609"; }

.icon-circle-flickr:before {
  content: "\e608"; }

.icon-circle-google:before {
  content: "\e607"; }

.icon-circle-instagram:before {
  content: "\e606"; }

.icon-circle-tumblr:before {
  content: "\e605"; }

.icon-circle-twitter:before {
  content: "\e604"; }

.icon-circle-youtube:before {
  content: "\e603"; }

.icon-diy:before {
  content: "\e602"; }

.icon-search:before {
  content: "\e601"; }

.icon-circle-soundcloud:before {
  content: "\e60d"; }

.icon-circle-search:before {
  content: "\e60e"; }

.icon-circle-rss:before {
  content: "\e60f"; }

.icon-circle-pinterest:before {
  content: "\e610"; }

.icon-circle-lastfm:before {
  content: "\e611"; }

.icon-circle-left:before {
  content: "\e614"; }

.icon-circle-right:before {
  content: "\e615"; }

.icon-circle-close:before {
  content: "\e616"; }

.icon-circle-plus:before {
  content: "\e617"; }

.icon-circle-minus:before {
  content: "\e618"; }

.icon-slideshow:before {
  content: "\e619"; }

.icon-menu:before {
  content: "\e612"; }

/* -------------------------------------------------------------- 

FORMS

DEFAULTS
FORM--MAILCHIMP

-------------------------------------------------------------- */
/* DEFAULTS
-------------------------------------------------------------- */
form {
  outline: 0;
  border: 0; }

form ul,
form ol {
  list-style: none; }

input, textarea {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #888;
  background: #fff;
  border: 1px solid #aaa;
  width: 100%;
  border-radius: 2px; }
  input:hover, input:active, input:focus, textarea:hover, textarea:active, textarea:focus {
    color: #444;
    border-color: #666; }

input {
  padding: 0.3125em 0.5625em;
  -webkit-appearance: none; }

input.checkbox {
  -webkit-appearance: checkbox;
  display: inline-block;
  width: auto; }

textarea {
  padding: 0.375em 0.5625em;
  -webkit-appearance: none; }

.btn--submit,
.btn--submit input {
  color: #fff;
  background: #666;
  border-color: #666;
  width: auto;
  -webkit-appearance: none; }
  .btn--submit:hover, .btn--submit:active, .btn--submit:focus,
  .btn--submit input:hover,
  .btn--submit input:active,
  .btn--submit input:focus {
    color: #fff;
    cursor: pointer;
    background: #444;
    border-color: #444;
    -webkit-transition: all 0; }

.btn--search {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.1428571429;
  color: #232323;
  background: transparent;
  width: auto;
  -webkit-appearance: none; }
  .btn--search:hover, .btn--search:active, .btn--search:focus {
    cursor: pointer; }
  .btn--search:focus {
    opacity: .6; }

.btn--search b {
  position: absolute;
  left: -9999px; }

/* REGISTER
-------------------------------------------------------------- */
.form-register .h-headline {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0.75em 0 0.375em; }

.form-register li {
  margin: 0.75em 0; }

.form-register label {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  display: block;
  margin: 0.1875em 0; }

.form-register .checkbox + label {
  display: inline-block;
  margin-left: 0.3333333333em; }

/* -------------------------------------------------------------- 

MODULES

- SECTION NAVIGATION
- SECTION HEADERS
- RULES
- STARS
- LIGHTBOX
- SIDE SCROLL
- SEARCH
- HOME PAGE BLOCKS

-------------------------------------------------------------- */
/* SECTION (SUB) NAVIGATION
-------------------------------------------------------------- */
.block--sub-navigation {
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center; }
  @media all and (min-width: 1024px) {
    .block--sub-navigation {
      text-align: left; } }

.block--sub-navigation .block__grid {
  padding-bottom: 0; }

.block--sub-navigation .col {
  margin-bottom: 0; }

.block--sub-navigation .h-headline {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6875;
  display: inline-block;
  margin-right: .3em; }

.block--sub-navigation ul {
  display: inline-block; }
  .block--sub-navigation ul li {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6875;
    list-style: none;
    display: inline-block;
    margin-right: .3em; }
    .block--sub-navigation ul li a {
      text-decoration: none; }
      .block--sub-navigation ul li a:hover, .block--sub-navigation ul li a:active, .block--sub-navigation ul li a:focus, .block--sub-navigation ul li a.current {
        border-bottom: 1px solid #232323; }

/* SECTION HEADERS
-------------------------------------------------------------- */
.section-header .h-headline {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.2;
  text-align: center;
  margin: 0.4em 0; }
  @media all and (min-width: 691px) {
    .section-header .h-headline {
      font-size: 42px;
      font-size: 2.625rem;
      line-height: 1.1428571429;
      margin: 0.2857142857em 0; } }

/* RULES
-------------------------------------------------------------- */
.rule {
  display: block;
  clear: both;
  border-bottom: 1px solid #ccc; }
  @media all and (min-width: 691px) {
    .rule {
      margin: 0 1.6875em; } }
  .rule.rule--thick {
    border-bottom: 6px solid #232323; }
    @media all and (min-width: 1024px) {
      .rule.rule--thick {
        border-bottom-width: 15px; } }
  .rule.rule--padding-top {
    padding-top: 0.9375em; }
  .rule.rule--margin {
    padding-top: 0.9375em;
    margin-bottom: 0.9375em; }
  .rule.rule--block-end {
    padding-top: 1.6875em; }

/* STARS
-------------------------------------------------------------- */
.h-stars.stars-5 {
  color: #fa0000; }

/* LIGHTBOX
-------------------------------------------------------------- */
.lightbox {
  display: block;
  position: relative; }

.lightbox img {
  margin: 0; }

.lightbox .view-all {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1;
  color: #fff;
  position: absolute;
  bottom: 0.4em;
  left: 0.4em; }

/* SIDE SCROLL
-------------------------------------------------------------- */
.overthrow-enabled .sidescroll {
  position: relative;
  max-width: 100%;
  overflow-x: scroll;
  padding: 0.75em 0 1.6875em;
  -webkit-overflow-scrolling: touch; }

@media all and (max-width: 690px) {
  .overthrow-enabled .sidescroll {
    float: none;
    width: 58.3783783784%;
    margin-right: auto;
    margin-left: auto; }

  .overthrow-enabled .sidescroll-wrap--s .sidescroll {
    width: 79.1891891892%; } }
.sidescroll-wrap,
.sidescroll__inner {
  position: relative; }

.sidescroll__block {
  float: left;
  width: 100%;
  margin-right: 0.9375em; }
  @media all and (min-width: 691px) {
    .sidescroll__block {
      width: 13.875em;
      margin-right: 1.6875em; } }

.sidescroll-wrap--s .sidescroll__block {
  width: 47.4402730375%; }
  @media all and (min-width: 691px) {
    .sidescroll-wrap--s .sidescroll__block {
      width: 8.6875em; } }

.sidescroll__scroll {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  color: #444;
  display: block;
  position: absolute;
  top: 1em;
  padding: 0.375em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }
  @media all and (min-width: 691px) {
    .sidescroll__scroll {
      font-size: 36px;
      font-size: 2.25rem;
      line-height: 1;
      color: #ccc;
      top: 3.5em;
      padding: 0; } }

.sidescroll-wrap--s .sidescroll__scroll {
  top: 1em; }
  @media all and (min-width: 691px) {
    .sidescroll-wrap--s .sidescroll__scroll {
      top: 2.3333333333em; } }

.sidescroll__scroll:hover {
  color: #232323;
  cursor: pointer; }

.sidescroll__scroll--left {
  left: -15px; }
  @media all and (min-width: 691px) {
    .sidescroll__scroll--left {
      left: 41px; } }

.sidescroll__scroll--right {
  right: -15px; }
  @media all and (min-width: 691px) {
    .sidescroll__scroll--right {
      right: 41px; } }

/* SEARCH RESULTS
-------------------------------------------------------------- */
.search-results .h-headline {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0.5em 0; }
  @media all and (min-width: 691px) {
    .search-results .h-headline {
      font-size: 36px;
      font-size: 2.25rem;
      line-height: 1.1666666667;
      margin: 0.3333333333em 0; } }

/* HOME PAGE BLOCKS
-------------------------------------------------------------- */
@media all and (max-width: 690px) {
  .block--home-fixed-content .block__grid {
    padding-top: 0; } }
/* -------------------------------------------------------------- 

MASTHEAD

-------------------------------------------------------------- */
.block--site-masthead {
  background: #fff;
  border-bottom: 3px solid #232323;
  padding: 1.5em 0.9375em 0; }
  @media all and (min-width: 691px) {
    .block--site-masthead {
      padding-right: 0;
      padding-left: 0; } }

@media all and (min-width: 1024px) {
  .js .block--site-masthead.fix {
    width: 100%;
    position: fixed;
    top: -54px;
    right: 0;
    left: 0;
    z-index: 1000; } }
.js .js-block--site-masthead-spacer {
  display: none; }
  @media all and (min-width: 1024px) {
    .js .js-block--site-masthead-spacer {
      display: block; } }

.block--site-masthead .block__grid {
  overflow: visible;
  padding: 0; }

.block--site-masthead .col {
  margin-bottom: 0; }

.block--site-masthead .main {
  position: relative;
  margin-bottom: 1.5em; }
  @media all and (min-width: 1024px) {
    .block--site-masthead .main {
      margin-bottom: 0; } }

/* Logo
-------------------------------------------------------------- */
.block--site-masthead .logo {
  font-size: 33px;
  font-size: 2.0625rem;
  line-height: 1;
  color: #232323;
  text-align: center;
  display: block;
  margin: 0 1.2727272727em; }
  @media all and (min-width: 691px) {
    .block--site-masthead .logo {
      font-size: 42px;
      font-size: 2.625rem;
      line-height: 1;
      margin: 0 1em; } }
  @media all and (min-width: 1024px) {
    .block--site-masthead .logo {
      font-size: 60px;
      font-size: 3.75rem;
      line-height: 1;
      text-align: left;
      margin: 0.2745098039em 0 0;
      -webkit-transition: all 0;
      -moz-transition: all 0;
      transition: all 0; } }

@media all and (min-width: 1024px) {
  .js .block--site-masthead.fix .logo {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1;
    margin-top: 1.4166666667em; } }
.block--site-masthead .logo a {
  text-decoration: none; }
  .block--site-masthead .logo a:focus {
    background: none;
    opacity: .8; }

.block--site-masthead .logo b {
  position: absolute;
  left: -9999px; }

/* Navigation
-------------------------------------------------------------- */
.site-nav {
  text-align: center;
  position: relative; }
  @media all and (min-width: 1024px) {
    .site-nav {
      text-align: left;
      padding-top: 0;
      margin-top: 0;
      margin-bottom: 0; } }

.block--site-masthead .site-nav-toggle-btn {
  display: none; }

.js .site-nav-toggle-btn {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  color: #232323;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 2px;
  display: block;
  position: absolute;
  top: -0.3333333333em;
  right: 0;
  padding: 0.5em;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }
  @media all and (min-width: 691px) {
    .js .site-nav-toggle-btn {
      top: -0.0416666667em;
      padding: 0.375em; } }
  @media all and (min-width: 1024px) {
    .js .site-nav-toggle-btn {
      display: none; } }

.js .site-nav {
  max-height: 0;
  overflow: hidden;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: max-height .3s ease-out;
  -moz-transition: max-height .3s ease-out;
  transition: max-height .3s ease-out; }

.js .site-nav.visible {
  max-height: 22.5em; }

@media all and (min-width: 1024px) {
  .js .site-nav,
  .js .site-nav.visible {
    max-height: none;
    -webkit-transition: max-height 0;
    -moz-transition: max-height 0;
    transition: max-height 0; } }
.site-nav .rule {
  display: block;
  border-top: 9px solid #232323;
  margin: 0 0 1.125em; }
  @media all and (min-width: 691px) {
    .site-nav .rule {
      border-top-width: 12px; } }
  @media all and (min-width: 1024px) {
    .site-nav .rule {
      display: none; } }

.site-nav .level-1,
.site-nav .level-3 {
  text-transform: uppercase;
  letter-spacing: .1em; }

.site-nav li {
  list-style: none; }

.site-nav .level-1 li,
.site-nav .level-3 li {
  white-space: nowrap;
  display: inline;
  padding: 0 0.1875em; }

.site-nav a {
  text-decoration: none;
  background: none; }

.site-nav .level-1 {
  padding-bottom: 1.125em; }
  @media all and (min-width: 1024px) {
    .site-nav .level-1 {
      float: left;
      width: 100%;
      padding: 0 0 2.0625em;
      margin-top: 3.1875em;
      margin-right: 0;
      margin-left: 0; } }

.site-nav .level-1 li {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-right: .3em; }
  @media all and (min-width: 1024px) {
    .site-nav .level-1 li {
      font-size: 21px;
      font-size: 1.3125rem;
      line-height: 1.2857142857; } }

.site-nav .level-1 .reviews:after {
  content: "\A";
  white-space: pre; }
  @media all and (min-width: 691px) {
    .site-nav .level-1 .reviews:after {
      content: ""; } }

.site-nav .level-1 a {
  color: #232323;
  display: inline; }
  .site-nav .level-1 a:hover, .site-nav .level-1 a:active, .site-nav .level-1 a:focus {
    border-bottom: 3px solid #232323; }
    @media all and (min-width: 1024px) {
      .site-nav .level-1 a:hover, .site-nav .level-1 a:active, .site-nav .level-1 a:focus {
        border-bottom-width: 6px; } }

.section-news .site-nav .level-1 .news a,
.section-features .site-nav .level-1 .features a,
.section-reviews .site-nav .level-1 .reviews a,
.section-neu .site-nav .level-1 .neu a,
.section-tv .site-nav .level-1 .tv a,
.section-extra .site-nav .level-1 .extra a {
  border-bottom: 3px solid #232323; }
  @media all and (min-width: 1024px) {
    .section-news .site-nav .level-1 .news a,
    .section-features .site-nav .level-1 .features a,
    .section-reviews .site-nav .level-1 .reviews a,
    .section-neu .site-nav .level-1 .neu a,
    .section-tv .site-nav .level-1 .tv a,
    .section-extra .site-nav .level-1 .extra a {
      border-bottom-width: 6px; } }

@media all and (min-width: 1024px) {
  .site-nav .level-2 {
    position: absolute;
    top: 3.0625em;
    right: 0;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0; } }
.block--site-masthead .form-search {
  display: block;
  position: relative;
  width: 13.875em;
  margin: 0 auto 1.5em; }
  @media all and (min-width: 1024px) {
    .block--site-masthead .form-search {
      width: 10.875em;
      margin: 0 0 1.5em; } }

.block--site-masthead .form-search .h-headline {
  position: absolute;
  left: -9999px; }

.block--site-masthead .form-search .input-keywords {
  background: transparent;
  border-color: #232323;
  display: inline;
  width: 100%;
  border-top: none;
  border-right: none;
  border-left: none;
  border-radius: 0;
  padding-right: 2.25em;
  padding-left: 0; }

.block--site-masthead .form-search .btn--search {
  position: absolute;
  top: .2em;
  right: 0; }

.site-nav .level-3 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  padding-bottom: 0.9375em; }
  @media all and (min-width: 1024px) {
    .site-nav .level-3 {
      border: none;
      position: absolute;
      top: 1.125em;
      padding: 0;
      margin-right: 0;
      margin-left: 0; } }

@media all and (min-width: 1024px) {
  .js .block--site-masthead.fix .level-3 {
    position: absolute;
    left: -9999px; }

  .site-nav .level-3 li {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 1.5882352941;
    margin-right: .3em; } }
.site-nav .level-3 a {
  color: #232323;
  display: inline; }
  .site-nav .level-3 a:hover, .site-nav .level-3 a:active, .site-nav .level-3 a:focus, .site-nav .level-3 a.current {
    background: none;
    border-bottom: 1px solid #232323; }

.section-diy-magazine .site-nav .level-3 .diy-magazine a,
.section-diy-weekly .site-nav .level-3 .diy-weekly a,
.section-diy-presents .site-nav .level-3 .diy-presents a {
  border-bottom: 1px solid #232323; }

.site-nav .level-4 {
  overflow: hidden;
  width: 11.25em;
  padding: 0 0 1.5em;
  margin: 0 auto; }
  @media all and (min-width: 1024px) {
    .site-nav .level-4 {
      position: absolute;
      top: 0.1875em;
      right: 0; } }

@media all and (min-width: 1024px) {
  .js .block--site-masthead.fix .level-4 {
    position: absolute;
    left: -9999px; } }
.site-nav .level-4 li {
  float: left;
  border: none; }

.site-nav .level-4 li a {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.2;
  color: #232323;
  padding: 0 0.1em; }
  @media all and (min-width: 1024px) {
    .site-nav .level-4 li a {
      padding: 0 0 0 0.2em; } }
  .site-nav .level-4 li a:focus {
    opacity: .6; }

.site-nav .level-4 b {
  position: absolute;
  left: -9999px; }

/* -------------------------------------------------------------- 

PREVIEWS

- PAGINATION
- STANDARD PREVIEWS
- LEAD PREVIEWS
- FEATURED PREVIEWS
- SIDESCROLL PREVIEWS

-------------------------------------------------------------- */
/* PAGINATION
-------------------------------------------------------------- */
.pagination {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  text-align: center;
  text-transform: uppercase;
  display: block;
  clear: both;
  margin-top: 1.6875em; }
  @media all and (min-width: 691px) {
    .pagination {
      border-top: 1px solid #ccc;
      padding-top: 1.6875em;
      margin-top: 0.75em; } }

.pagination .btn {
  text-decoration: none;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 0.375em 0.5625em;
  margin: 0 .15em; }
  .pagination .btn .arrow {
    position: relative;
    top: -0.0625em; }

/* STANDARD PREVIEWS
-------------------------------------------------------------- */
.preview {
  overflow: hidden;
  position: relative; }
  @media all and (max-width: 690px) {
    .preview {
      border: 1px solid #ccc;
      border-right: none;
      border-left: none;
      padding-top: 1.6875em;
      padding-bottom: 1.6875em;
      margin-bottom: -1px; } }
  @media all and (min-width: 691px) {
    .preview {
      margin-bottom: 1.6875em; } }

@media all and (max-width: 690px) {
  .sidescroll .preview {
    border: none;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0; } }

.preview a {
  text-decoration: none; }

.preview .img img {
  margin-top: 1.3125em; }
@media all and (max-width: 690px) {
  .preview .img {
    display: block;
    float: right;
    max-width: 37.5675675676%;
    margin-bottom: 0.75em;
    margin-left: 0.9375em; }
    .preview .img img {
      margin-top: 0; } }

@media all and (max-width: 690px) {
  .sidescroll .preview .img {
    display: block;
    float: none;
    max-width: none;
    margin-bottom: 0;
    margin-left: 0; }
    .sidescroll .preview .img img {
      margin-top: 1.3125em; } }

@media all and (min-width: 691px) {
  .preview header:first-child {
    padding-top: 0.5625em; } }
@media all and (max-width: 690px) {
  .preview header {
    display: inline; } }
.preview .h-section {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.1538461538;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: absolute;
  top: 0; }
  @media all and (max-width: 690px) {
    .preview .h-section {
      font-size: 12px;
      font-size: 0.75rem;
      line-height: 1.5;
      position: relative;
      top: -0.25em;
      margin: 0 0 -0.25em; } }

@media all and (max-width: 690px) {
  .sidescroll .preview .h-section {
    position: absolute;
    top: 0;
    margin: 0; } }

.preview .h-kicker {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  margin: 0.5625em 0 -0.1875em; }
  @media all and (max-width: 690px) {
    .preview .h-kicker {
      margin: 0.375em 0 -0.1875em; } }

.preview .h-headline {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0.8333333333em 0 0.3333333333em; }
  .preview .h-headline .pre, .preview .h-headline .post {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3333333333;
    display: block; }
  .preview .h-headline .h-headline__block {
    display: block; }

.preview .h-kicker + .h-headline {
  margin: 0.375em 0; }

.preview .img + header .h-headline {
  margin-top: 0.5625em; }
  @media all and (max-width: 690px) {
    .preview .img + header .h-headline {
      max-width: 56.7567567568%; } }

.preview .h-stars {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5; }

.preview .h-standfirst {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125; }
  @media all and (max-width: 690px) {
    .preview .h-standfirst {
      font-size: 15px;
      font-size: 0.9375rem;
      line-height: 1.4; } }

.preview .h-date {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #888;
  margin: 1.0714285714em 0 0; }

.preview .h-tags {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #888; }
  .preview .h-tags .icon-tag {
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.9090909091;
    color: #aaa;
    margin-right: 0.2727272727em; }

.preview .h-standfirst + .h-tags {
  margin-top: 1.0714285714em; }

/* LEAD PREVIEWS
-------------------------------------------------------------- */
.lead-preview {
  word-wrap: break-word;
  text-align: center;
  margin-bottom: 0; }
  @media all and (min-width: 691px) {
    .lead-preview {
      margin-bottom: 1.6875em; } }

.lead-preview a {
  text-decoration: none; }

.lead-preview .img {
  display: block;
  min-height: 5.625em; }

.lead-preview header {
  border: 1px solid #ccc;
  border-top: none;
  border-bottom: none;
  position: relative;
  padding: 0.75em 0.9375em; }
  @media all and (min-width: 691px) {
    .lead-preview header {
      border: none;
      padding: 0 1.3125em;
      margin-top: -2.0625em; } }
  @media all and (min-width: 1024px) {
    .lead-preview header {
      margin-top: -3.5625em; } }

.lead-preview .h-kicker {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.2857142857;
  margin-bottom: 0.1428571429em; }
  .lead-preview .h-kicker a:focus {
    color: #888; }
  @media all and (min-width: 691px) {
    .lead-preview .h-kicker {
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 1.25;
      position: relative;
      top: -1.5em;
      margin-bottom: -1.375em; }
      .lead-preview .h-kicker a {
        border-top: 6px solid #f7f7f7;
        background: #f7f7f7;
        box-shadow: -21px 0 0 #f7f7f7, 21px 0 0 #f7f7f7; } }
  @media all and (min-width: 1024px) {
    .lead-preview .h-kicker {
      font-size: 30px;
      font-size: 1.875rem;
      line-height: 1;
      position: relative;
      top: -1.3em;
      margin-bottom: -1em; }
      .lead-preview .h-kicker a {
        border-top: 6px solid #f7f7f7;
        background: #f7f7f7;
        box-shadow: -21px 0 0 #f7f7f7, 21px 0 0 #f7f7f7; } }

.lead-preview .h-headline {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.375;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 0.25em; }
  @media all and (min-width: 691px) {
    .lead-preview .h-headline {
      font-size: 36px;
      font-size: 2.25rem;
      line-height: 1.3333333333;
      padding: 0 0.5833333333em;
      margin: 0 0 0.1666666667em; }
      .lead-preview .h-headline a {
        border-top: 9px solid #f7f7f7;
        background: #f7f7f7;
        box-shadow: -18px 0 0 #f7f7f7, 18px 0 0 #f7f7f7; }
        .lead-preview .h-headline a:focus {
          color: #888; } }
  @media all and (min-width: 1024px) {
    .lead-preview .h-headline {
      font-size: 54px;
      font-size: 3.375rem;
      line-height: 1.3333333333;
      padding: 0 0.5em;
      margin: 0 0 0.1111111111em; }
      .lead-preview .h-headline a {
        border-top: 15px solid #f7f7f7;
        background: #f7f7f7;
        box-shadow: -27px 0 0 #f7f7f7, 27px 0 0 #f7f7f7; }
        .lead-preview .h-headline a:focus {
          color: #888; } }

.lead-preview .h-standfirst {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125;
  max-width: 29.4375em;
  margin: 0 auto 0.375em; }

/* FEATURED PREVIEWS
-------------------------------------------------------------- */
.featured-preview {
  text-align: center;
  word-wrap: break-word;
  position: relative; }
  @media all and (max-width: 690px) {
    .featured-preview {
      border: 1px solid #ccc;
      border-right: none;
      border-left: none;
      padding-bottom: 1.6875em;
      margin-bottom: -1px; }
      .featured-preview:first-child {
        border-top: none; } }
  @media all and (min-width: 691px) {
    .featured-preview {
      text-align: left; } }

.featured-preview a {
  text-decoration: none; }

.featured-preview img {
  margin-top: 2.8125em; }
  @media all and (min-width: 691px) {
    .featured-preview img {
      margin-top: 1.3125em; } }

.featured-preview:first-child img {
  margin-top: 1.3125em; }

.featured-preview.col--keyline img {
  margin-top: 2.8125em; }
  @media all and (min-width: 691px) {
    .featured-preview.col--keyline img {
      margin-top: 1.125em; } }

.featured-preview .h-section {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.0714285714;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: absolute;
  top: 1.6875em;
  width: 100%; }
  @media all and (min-width: 691px) {
    .featured-preview .h-section {
      top: 0;
      width: auto; } }

.featured-preview:first-child .h-section {
  top: 0; }

.featured-preview.col--keyline .h-section {
  top: 1.6875em; }

.featured-preview .h-kicker {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  margin: 0.5625em 0 -0.1875em; }
  @media all and (min-width: 691px) {
    .featured-preview .h-kicker {
      font-size: 21px;
      font-size: 1.3125rem;
      line-height: 1.2857142857;
      margin: 0.5625em 0 -0.1875em; } }

.featured-preview .h-headline {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.4285714286;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0.5714285714em 0 0.2857142857em; }
  @media all and (min-width: 691px) {
    .featured-preview .h-headline {
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 1.25;
      margin: 0.5em 0 0.2857142857em; } }

.featured-preview .h-kicker + .h-headline {
  margin: 0.2857142857em 0; }

.featured-preview .h-stars {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5; }

.featured-preview .h-standfirst {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125; }

.featured-preview .h-date {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #888;
  margin: 0.9375em 0 0; }

.featured-preview .h-tags {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #888; }
  .featured-preview .h-tags .icon-tag {
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.9090909091;
    color: #aaa;
    margin-right: 0.2727272727em; }
  .featured-preview .h-tags a {
    text-transform: capitalize; }

.featured-preview .h-standfirst + .h-tags {
  margin-top: 0.9375em; }

@media all and (min-width: 691px) {
  .featured-preview__portrait .img {
    display: block;
    float: left;
    max-width: 47.1337579618%; }
    .featured-preview__portrait .img img {
      margin-top: 0; }

  .featured-preview__portrait header {
    float: right;
    max-width: 47.1337579618%; }

  .featured-preview__portrait .h-section {
    position: static;
    margin: 0 0 0.4285714286em; }

  .featured-preview__portrait .h-kicker {
    margin: 0.375em 0 -0.1875em; } }
/* SIDESCROLL PREVIEWS
-------------------------------------------------------------- */
.sidescroll .preview .h-kicker {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.2352941176; }

.sidescroll .preview .h-headline {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3125;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0.375em 0; }

@media all and (max-width: 690px) {
  .sidescroll .preview .img + header .h-headline {
    max-width: none; } }

.sidescroll-wrap--s .sidescroll .preview .h-kicker {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.4; }

.sidescroll-wrap--s .sidescroll .preview .h-headline {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0.4285714286em 0 0.2142857143em; }

.sidescroll-wrap--s .sidescroll .preview .img + header .h-headline {
  margin-top: 0.5625em; }
  @media all and (max-width: 690px) {
    .sidescroll-wrap--s .sidescroll .preview .img + header .h-headline {
      max-width: none; } }

/* -------------------------------------------------------------- 

SINGLE ARTICLES

- COLUMNS
- GENERAL TYPOGRAPHY
- IMAGES, VIDEO, AUDIO, IFRAMES
- HEADER: STANDARD (.h-block)
- HEADER: FULL SCREEN (.h-block-full-screen)
- FOOTER
- ADVERTS
- KEYLINES
- LEGACY
- RAFFLECOPTER
- IPLAYER
- ISSUU

-------------------------------------------------------------- */
/* COLUMNS
-------------------------------------------------------------- */
.block--article .col {
  margin-bottom: 0; }

@media all and (max-width: 690px) {
  .block--article .block .col.preview {
    margin-bottom: -1px; } }
@media all and (min-width: 691px) {
  .block--article .block .col.preview {
    margin-bottom: 1.6875em; } }

@media all and (min-width: 691px) {
  .block--article .col.col--keyline {
    margin-bottom: 0; } }
/* GENERAL TYPOGRAPHY
-------------------------------------------------------------- */
.block--article__text .h-standfirst {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.375;
  max-width: 26.5416666667em;
  margin: 0; }
  @media all and (min-width: 691px) {
    .block--article__text .h-standfirst {
      font-size: 27px;
      font-size: 1.6875rem;
      line-height: 1.3333333333;
      max-width: 23.5925925926em; } }

.block--article__text p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  margin: 0.6666666667em 0; }

.block--article__text li {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  list-style-position: inside;
  margin: 0.6666666667em 0; }

.block--article .h-article-section {
  font-size: 27px;
  font-size: 1.6875rem;
  line-height: 1.4444444444;
  text-transform: uppercase;
  margin-top: 1em; }
  @media all and (min-width: 691px) {
    .block--article .h-article-section {
      font-size: 30px;
      font-size: 1.875rem;
      line-height: 1.3;
      margin-top: 0.9em; } }

.block--article .h-article-sub {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.375;
  margin: 0.75em 0 0; }

.block--article .h-article-sub-sub {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.7647058824;
  margin: 1.0588235294em 0 0; }

.block--article .finish {
  font-size: .7em; }

/* FEATURED LISTS
-------------------------------------------------------------- */
.block--article__featured-list ul,
.block--article__featured-list ol {
  border-top: 1px solid #ddd;
  margin: 0.7142857143em 0; }

.block--article__featured-list ul {
  list-style: none; }

.block--article__featured-list li {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.5714285714;
  list-style-position: inside;
  border-bottom: 1px solid #ddd;
  padding: 0.7142857143em 0; }

/* QUOTES
-------------------------------------------------------------- */
.block--article__pull-quote {
  position: relative;
  padding: 0.9375em 0 1.3125em 1.5em; }
  @media all and (min-width: 1024px) {
    .block--article__pull-quote {
      padding-left: 2.625em; } }

.block--article__pull-quote .quote {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.5714285714;
  margin: -0.4285714286em 0; }
  @media all and (min-width: 1024px) {
    .block--article__pull-quote .quote {
      font-size: 30px;
      font-size: 1.875rem;
      line-height: 1.4;
      margin: -0.3em 0; } }

.block--article__pull-quote .cite {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  margin: 1.0714285714em 0 -0.6428571429em; }
  @media all and (min-width: 1024px) {
    .block--article__pull-quote .cite {
      font-size: 16px;
      font-size: 1rem;
      line-height: 1.875;
      margin: 0.9375em 0 -0.5625em; } }

.block--article__pull-quote .rule {
  background: #232323;
  clear: none;
  position: absolute;
  top: 0.9375em;
  bottom: 1.125em;
  left: 0;
  width: 0.375em;
  height: auto;
  margin: 0; }
  @media all and (min-width: 1024px) {
    .block--article__pull-quote .rule {
      top: 0.9375em;
      width: 0.9375em; } }

.block--article__pull-quote-horizontal {
  position: relative;
  padding: 0.75em 0 0.9375em 0; }

.block--article__pull-quote-horizontal .quote {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.5714285714;
  border-top: 6px solid #232323;
  padding-top: 0.5625em;
  margin-bottom: -0.4285714286em; }
  @media all and (min-width: 1024px) {
    .block--article__pull-quote-horizontal .quote {
      font-size: 30px;
      font-size: 1.875rem;
      line-height: 1.4;
      border-top-width: 15px;
      margin-bottom: -0.3em; } }

.block--article__pull-quote-horizontal .cite {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  margin: 1.0714285714em 0 -0.6428571429em; }
  @media all and (min-width: 1024px) {
    .block--article__pull-quote-horizontal .cite {
      font-size: 16px;
      font-size: 1rem;
      line-height: 1.875;
      margin: 0.9375em 0 -0.5625em; } }

.block--article__pull-quote-horizontal .rule {
  display: none; }

/* IMAGES, VIDEO, AUDIO, IFRAMES
-------------------------------------------------------------- */
.block--article__branding-2 {
  padding: 0.375em 0 0.9375em; }

.block--article iframe,
.block--article embed,
.block--article object {
  margin: 0.75em 0 0.9375em; }

.block--article__image,
.block--article__video,
.block--article__audio {
  padding: 0.75em 0 0.9375em; }

.block--article__video iframe {
  margin: 0; }

/* HEADER: STANDARD (.h-block)
-------------------------------------------------------------- */
.block--article .h-block .block__grid {
  margin-bottom: 0; }
  .block--article .h-block .block__grid .col {
    margin-top: 0;
    margin-bottom: 0; }
  @media all and (max-width: 690px) {
    .block--article .h-block .block__grid {
      padding-bottom: 0; } }

.block--article .h-block + .block__grid {
  padding-top: 0; }

.block--article .h-block img {
  margin: 0 0 1.6875em; }

.block--article .h-block .h-kicker {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.375;
  margin: 0 0 -0.1875em; }

.block--article .h-block .h-headline {
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0.375em 0 1.125em; }
  @media all and (min-width: 691px) {
    .block--article .h-block .h-headline {
      margin: 0.75em 0 1.6875em; } }
  .block--article .h-block .h-headline .h-headline__pre, .block--article .h-block .h-headline .h-headline__post {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3333333333;
    display: block; }
    @media all and (min-width: 691px) {
      .block--article .h-block .h-headline .h-headline__pre, .block--article .h-block .h-headline .h-headline__post {
        font-size: 21px;
        font-size: 1.3125rem;
        line-height: 1.4285714286; } }
  .block--article .h-block .h-headline .h-headline__pre {
    margin-bottom: 0.1666666667em; }
  .block--article .h-block .h-headline .h-headline__post {
    margin-top: 0.1666666667em; }
  .block--article .h-block .h-headline .h-headline__main {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.3;
    display: block; }
    @media all and (min-width: 691px) {
      .block--article .h-block .h-headline .h-headline__main {
        font-size: 42px;
        font-size: 2.625rem;
        line-height: 1.2857142857; } }

.block--article .h-block .h-section {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.0714285714;
  text-transform: uppercase;
  position: absolute;
  top: 0; }

.block--article .h-block .h-standfirst {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.375;
  max-width: 26.5416666667em;
  margin: 1.125em 0 0; }
  @media all and (min-width: 691px) {
    .block--article .h-block .h-standfirst {
      font-size: 27px;
      font-size: 1.6875rem;
      line-height: 1.3333333333;
      max-width: 23.5925925926em;
      margin: 1em 0; } }

.block--article .h-block .h-byline {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  color: #888;
  margin: 0.6666666667em 0 1.5em; }
  @media all and (min-width: 691px) {
    .block--article .h-block .h-byline {
      text-align: right;
      position: relative;
      top: 0.1666666667em;
      margin: 1.5em 0; } }

/* HEADER: REVIEW (.h-block-review)
-------------------------------------------------------------- */
.block--article .h-block-review .block__grid {
  margin-bottom: 0; }
  .block--article .h-block-review .block__grid .col {
    margin-top: 0;
    margin-bottom: 0; }
  @media all and (max-width: 690px) {
    .block--article .h-block-review .block__grid {
      padding-bottom: 0; } }

.block--article .h-block-review + .block__grid {
  padding-top: 0; }

.block--article .h-block-review img {
  margin: 0.5625em 0 0; }
  @media all and (min-width: 691px) {
    .block--article .h-block-review img {
      margin: 1.3125em 0; } }

.block--article .h-block-review .h-kicker {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.375;
  margin: 0 0 -0.1875em; }

.block--article .h-block-review .h-headline {
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0.375em 0 1.125em; }
  @media all and (min-width: 691px) {
    .block--article .h-block-review .h-headline {
      margin: 0.75em 0 1.6875em; } }
  .block--article .h-block-review .h-headline .h-headline__pre, .block--article .h-block-review .h-headline .h-headline__post {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3333333333;
    display: block; }
    @media all and (min-width: 691px) {
      .block--article .h-block-review .h-headline .h-headline__pre, .block--article .h-block-review .h-headline .h-headline__post {
        font-size: 21px;
        font-size: 1.3125rem;
        line-height: 1.4285714286; } }
  .block--article .h-block-review .h-headline .h-headline__pre {
    margin-bottom: 0.1666666667em; }
  .block--article .h-block-review .h-headline .h-headline__post {
    margin-top: 0.1666666667em; }
  .block--article .h-block-review .h-headline .h-headline__main {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.3;
    display: block; }
    @media all and (min-width: 691px) {
      .block--article .h-block-review .h-headline .h-headline__main {
        font-size: 42px;
        font-size: 2.625rem;
        line-height: 1.2857142857; } }

.block--article .h-block-review .h-standfirst {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.375;
  max-width: 26.5416666667em;
  margin: 0.5em 0 0.875em; }
  @media all and (min-width: 691px) {
    .block--article .h-block-review .h-standfirst {
      font-size: 27px;
      font-size: 1.6875rem;
      line-height: 1.3333333333;
      max-width: 23.5925925926em;
      margin: 1em 0; } }

.block--article .h-block-review .h-byline,
.block--article .h-block-review .h-rating {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0.6666666667em 0; }

.block--article .h-block-review .h-rating {
  margin-bottom: 1.5em; }

/* HEADER: FULL SCREEN (.h-block-full-screen)
-------------------------------------------------------------- */
.block--article .h-block-full-screen .block__grid {
  margin-bottom: 0; }
  .block--article .h-block-full-screen .block__grid .col {
    margin-top: 0;
    margin-bottom: 0; }
  @media all and (max-width: 690px) {
    .block--article .h-block-full-screen .block__grid {
      padding-bottom: 0; } }

.block--article .h-block-full-screen + .block__grid {
  padding-top: 0; }

.block--article .h-block-full-screen .h-headline {
  letter-spacing: .1em;
  text-transform: uppercase;
  max-width: 60.5625em;
  padding: 5.625em 1.6875em;
  margin: 0 auto; }
  @media all and (min-width: 691px) {
    .block--article .h-block-full-screen .h-headline {
      padding: 7.5em 1.6875em; } }
  .block--article .h-block-full-screen .h-headline .h-headline__pre {
    display: block; }
    .block--article .h-block-full-screen .h-headline .h-headline__pre .inner {
      font-size: 14px;
      font-size: 0.875rem;
      line-height: 1.2857142857;
      color: #fff;
      background: #000;
      border: 6px solid #000;
      border-left: none;
      border-right: none;
      box-shadow: 12px 0 0 #000, -12px 0 0 #000;
      position: relative;
      top: -0.75em; }
      @media all and (min-width: 691px) {
        .block--article .h-block-full-screen .h-headline .h-headline__pre .inner {
          font-size: 21px;
          font-size: 1.3125rem;
          line-height: 1.1428571429;
          box-shadow: 18px 0 0 #000, -18px 0 0 #000;
          top: -0.75em; } }
    @media all and (min-width: 691px) {
      .block--article .h-block-full-screen .h-headline .h-headline__pre.text-center {
        text-align: center; }
      .block--article .h-block-full-screen .h-headline .h-headline__pre.text-right {
        text-align: right; } }
  .block--article .h-block-full-screen .h-headline .h-headline__main {
    color: #000;
    display: block; }
    .block--article .h-block-full-screen .h-headline .h-headline__main .inner {
      font-size: 30px;
      font-size: 1.875rem;
      line-height: 1.3;
      background: #f7f7f7;
      border: 6px solid #f7f7f7;
      border-left: none;
      border-right: none;
      box-shadow: 12px 0 0 #f7f7f7, -12px 0 0 #f7f7f7; }
      @media all and (min-width: 691px) {
        .block--article .h-block-full-screen .h-headline .h-headline__main .inner {
          font-size: 42px;
          font-size: 2.625rem;
          line-height: 1.2857142857;
          border: 9px solid #f7f7f7;
          box-shadow: 18px 0 0 #f7f7f7, -18px 0 0 #f7f7f7; } }
    @media all and (min-width: 691px) {
      .block--article .h-block-full-screen .h-headline .h-headline__main.text-center {
        text-align: center; }
      .block--article .h-block-full-screen .h-headline .h-headline__main.text-right {
        text-align: right; } }
  .block--article .h-block-full-screen .h-headline .h-headline__post {
    display: block; }
    .block--article .h-block-full-screen .h-headline .h-headline__post .inner {
      font-size: 14px;
      font-size: 0.875rem;
      line-height: 1.2857142857;
      color: #fff;
      background: #000;
      border: 6px solid #000;
      border-left: none;
      border-right: none;
      box-shadow: 12px 0 0 #000, -12px 0 0 #000;
      position: relative;
      top: 0.75em; }
      @media all and (min-width: 691px) {
        .block--article .h-block-full-screen .h-headline .h-headline__post .inner {
          font-size: 21px;
          font-size: 1.3125rem;
          line-height: 1.1428571429;
          box-shadow: 18px 0 0 #000, -18px 0 0 #000;
          top: 0.75em; } }
    @media all and (min-width: 691px) {
      .block--article .h-block-full-screen .h-headline .h-headline__post.text-center {
        text-align: center; }
      .block--article .h-block-full-screen .h-headline .h-headline__post.text-right {
        text-align: right; } }

.block--article .h-block-full-screen .h-headline-img {
  max-width: 29.4375em;
  padding: 5.625em 1.6875em;
  margin: 0 auto; }
  @media all and (min-width: 691px) {
    .block--article .h-block-full-screen .h-headline-img {
      padding: 7.5em 1.6875em; } }

.block--article .h-block-full-screen .h-standfirst {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.375;
  max-width: 30.3333333333em;
  margin: 1.125em 0 0; }
  @media all and (min-width: 691px) {
    .block--article .h-block-full-screen .h-standfirst {
      font-size: 27px;
      font-size: 1.6875rem;
      line-height: 1.3333333333;
      max-width: 23.5925925926em;
      margin: 1em 0; } }

.block--article .h-block-full-screen .h-byline,
.block--article .h-block-full-screen .h-credits {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  color: #888;
  margin: 0.6666666667em 0 1.5em; }
  @media all and (min-width: 691px) {
    .block--article .h-block-full-screen .h-byline,
    .block--article .h-block-full-screen .h-credits {
      text-align: right;
      position: relative;
      top: 0.1666666667em;
      margin: 1.5em 0; } }

.block--article .h-block-full-screen .h-credits + .h-byline {
  margin-top: -1.5em; }

.block--article .h-block-full-screen .h-credits {
  color: #444; }

/* FOOTER
-------------------------------------------------------------- */
.block--article__footer {
  margin-top: 0.9375em; }

.block--article__footer .h-tags {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  margin: 1.6875em 0 1.125em; }
  .block--article__footer .h-tags .icon-tag {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2.1428571429;
    position: relative;
    top: 0.0714285714em;
    margin-right: 0.2142857143em; }
  .block--article__footer .h-tags a {
    text-decoration: none;
    text-transform: capitalize; }
    .block--article__footer .h-tags a:hover, .block--article__footer .h-tags a:active, .block--article__footer .h-tags a:focus {
      background: none;
      text-decoration: underline; }

.block--article__footer .rule {
  border-style: dotted; }

.block--article__share {
  overflow: hidden;
  margin: 1.3125em 0; }

.block--article__share li {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.9285714286;
  list-style: none;
  float: left;
  margin: 0.4285714286em 0.8571428571em 0.6428571429em 0; }
  .block--article__share li i {
    font-size: 27px;
    font-size: 1.6875rem;
    line-height: 1;
    position: relative;
    top: 0.2222222222em;
    margin-right: 0.1111111111em; }
  .block--article__share li.facebook i {
    color: #3c5a96; }
  .block--article__share li.twitter i {
    color: #55acee; }
  .block--article__share li.tumblr i {
    color: #2c4762; }
  .block--article__share li.google-plus i {
    color: #dd4b39; }
  .block--article__share li.digg i {
    color: #232323; }
  .block--article__share li.stumbleupon i {
    color: #eb4924; }
  .block--article__share li .button {
    display: none; }

.block--article__share li a {
  text-decoration: none; }
  .block--article__share li a:hover b, .block--article__share li a:active b, .block--article__share li a:focus b {
    text-decoration: underline; }

.block--article__related {
  padding: 1.6875em 0; }

/* ADVERTS
-------------------------------------------------------------- */
.block--article .col--ad {
  text-align: center; }

.block--article .col--ad .ad {
  margin: 1.125em auto 1.875em; }

/* KEYLINES
-------------------------------------------------------------- */
.block--article .m-keylines,
.block--article .l-keylines {
  margin-bottom: 2.0625em; }

/* LEGACY
-------------------------------------------------------------- */
.block--article__legacy {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  padding-bottom: 0.9375em; }
  .block--article__legacy h1, .block--article__legacy h2, .block--article__legacy h3, .block--article__legacy h4, .block--article__legacy h5, .block--article__legacy h6, .block--article__legacy p {
    margin: 0.6666666667em 0; }
  .block--article__legacy ul {
    list-style-position: inside;
    margin: 0.6666666667em 0; }
  .block--article__legacy iframe[src*=youtube],
  .block--article__legacy iframe[src*=vimeo],
  .block--article__legacy iframe[src*=soundcloud] {
    width: 100% !important; }

.block--article__legacy iframe,
.block--article__legacy embed,
.block--article__legacy object,
.block--article__legacy img,
.block--article__legacy iframe[style],
.block--article__legacy embed[style],
.block--article__legacy object[style],
.block--article__legacy img[style] {
  width: auto !important;
  max-width: 100% !important;
  margin: 0.6666666667em 0 !important; }

/* RAFFLECOPTER
-------------------------------------------------------------- */
.block--article__rafflecopter {
  padding: 0.75em 0 0.9375em; }
  .block--article__rafflecopter iframe[style] {
    width: 100% !important;
    margin: 0 !important; }

/* IPLAYER
-------------------------------------------------------------- */
.block--article__iplayer {
  overflow-x: scroll;
  padding: 0.75em 0 0.9375em; }
  .block--article__iplayer iframe[style] {
    margin: 0 !important; }

/* EMBED
-------------------------------------------------------------- */
.block--article__embed {
  overflow-x: scroll;
  padding: 0.75em 0 0.9375em; }
  .block--article__embed iframe[style] {
    margin: 0 !important; }

/* INSTAGRAM
-------------------------------------------------------------- */
.block--article__instagram {
  overflow-x: scroll;
  padding: 0.75em 0 0.9375em;
  margin-top: 0.75em;
  margin-bottom: 0.75em; }
  .block--article__instagram iframe[style] {
    margin: 0 !important; }

/* ISSUU BUTTON
-------------------------------------------------------------- */
.block--article__text .issuu a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 0.375em 0.5625em;
  margin: 0 0 0.75em; }
  .block--article__text .issuu a .arrow {
    position: relative;
    top: -0.125em; }

/* -------------------------------------------------------------- 

ADVERTS

-------------------------------------------------------------- */
@keyframes slidein {
  from {
    transform: translateY(100%); }
  to {
    transform: translateY(0%); } }
/* Firefox < 16 */
@-moz-keyframes slidein {
  from {
    -moz-transform: translateY(100%); }
  to {
    -moz-transform: translateY(0%); } }
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes slidein {
  from {
    -webkit-transform: translateY(100%); }
  to {
    -webkit-transform: translateY(0%); } }
/* Internet Explorer */
@-ms-keyframes slidein {
  from {
    -ms-transform: translateY(100%); }
  to {
    -ms-transform: translateY(0%); } }
/* Opera < 12.1 */
@-o-keyframes slidein {
  from {
    -o-transform: translateY(100%); }
  to {
    -o-transform: translateY(0%); } }
@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fallback-ad {
  -webkit-animation: fadein 1s 2s both;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 1s 2s both;
  /* Firefox < 16 */
  -ms-animation: fadein 1s 2s both;
  /* Internet Explorer */
  -o-animation: fadein 1s 2s both;
  /* Opera < 12.1 */
  animation: fadein 1s 2s both; }

.block--ad-blocker-message {
  display: block;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  -webkit-animation: slidein 1s 4s backwards;
  -moz-animation: slidein 1s 4s backwards;
  -ms-animation: slidein 1s 4s backwards;
  -o-animation: slidein 1s 4s backwards;
  animation: slidein 1s 4s backwards;
  background: #eb198c;
  padding: 1rem 2rem;
  text-align: center;
  width: 100%;
  color: white; }

.block--ad-blocker-message__text {
  font-family: 'aktiv-grotesk-std',helvetica,arial,sans-serif;
  font-weight: 300;
  color: white;
  letter-spacing: 0.015em;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3333333333; }
  .block--ad-blocker-message__text strong {
    font-weight: 800; }

@media all and (max-width: 690px) {
  .col--ad {
    position: relative;
    width: 120%;
    margin-left: -10%; } }

.col--ad-preview .ad,
.preview + .col--ad .ad {
  margin-top: 2.625em; }
  @media all and (min-width: 691px) {
    .col--ad-preview .ad,
    .preview + .col--ad .ad {
      margin-top: 1.25em; } }

.ad {
  text-align: center;
  margin: 0 auto; }
  @media all and (min-width: 970px) {
    .ad {
      background: transparent; } }

.ad.mobile {
  width: 320px;
  height: 50px; }

.ad.leaderboard {
  width: 728px;
  height: 90px; }

.ad.superleaderboard {
  width: 970px;
  height: 250px; }

.ad.mpu {
  width: 300px; }

.block--ad-mobile,
.block--ad-leaderboard,
.block--ad-superleaderboard {
  text-align: center;
  background: #232323; }
  .block--ad-mobile .ad,
  .block--ad-leaderboard .ad,
  .block--ad-superleaderboard .ad {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center; }
    .block--ad-mobile .ad iframe, .block--ad-mobile .ad img, .block--ad-mobile .ad object,
    .block--ad-leaderboard .ad iframe,
    .block--ad-leaderboard .ad img,
    .block--ad-leaderboard .ad object,
    .block--ad-superleaderboard .ad iframe,
    .block--ad-superleaderboard .ad img,
    .block--ad-superleaderboard .ad object {
      margin: 0 auto !important; }

.block--ad-mobile {
  padding: 0.75em 0; }

.block--ad-leaderboard {
  padding: 1.125em 0; }

.block--ad-superleaderboard {
  padding: 1.6875em 0;
  position: relative;
  z-index: 0; }

/* Superleaderboard background
-------------------------------------------------------------- */
.block--ad-superleaderboard__background,
.block--ad-superleaderboard__background[style] {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1 !important; }

/* Hide/show ads
-------------------------------------------------------------- */
.block--ad-leaderboard,
.block--ad-superleaderboard,
.block--ad-superleaderboard__background {
  display: none; }

@media all and (min-width: 728px) {
  .block--ad-mobile,
  .block--ad-superleaderboard,
  .block--ad-superleaderboard__background {
    display: none; }

  .block--ad-leaderboard {
    display: block; } }
@media all and (min-width: 970px) {
  .block--ad-leaderboard {
    display: none; }

  .block--ad-superleaderboard,
  .block--ad-superleaderboard__background {
    display: block; } }
/* -------------------------------------------------------------- 

FOOTER

-------------------------------------------------------------- */
.block--site-footer {
  text-align: center;
  padding: 0 0 1.6875em;
  margin-top: 1.6875em; }
  @media all and (min-width: 691px) {
    .block--site-footer {
      margin-top: 3.375em; } }
  @media all and (min-width: 1024px) {
    .block--site-footer {
      width: auto;
      text-align: left; } }

.block--site-footer .block__grid {
  padding-top: 0;
  padding-bottom: 0; }

.block--site-footer .rule--site-footer {
  background: #232323;
  height: 3px;
  margin-bottom: 1.6875em; }

.block--site-footer .rule {
  border: none; }

.block--site-footer .elsewhere {
  overflow: hidden;
  width: 10.3125em;
  margin: 0 auto 0.75em; }
  @media all and (min-width: 1024px) {
    .block--site-footer .elsewhere {
      width: auto;
      margin: 0 0 0.75em; } }

.block--site-footer .elsewhere li {
  list-style: none;
  float: left; }

.block--site-footer .elsewhere li a {
  font-size: 27px;
  font-size: 1.6875rem;
  line-height: 1.2222222222;
  color: #232323;
  text-decoration: none;
  margin: 0 0.1111111111em; }
  .block--site-footer .elsewhere li a:focus {
    background: none;
    opacity: .6; }
  @media all and (min-width: 1024px) {
    .block--site-footer .elsewhere li a {
      margin: 0 0.2222222222em 0 0; } }

.block--site-footer .elsewhere b {
  position: absolute;
  left: -9999px; }

.block--site-footer .small {
  margin: 0 0 0.75em; }

.block--site-footer .small li {
  list-style: none;
  display: inline;
  margin-right: .3em; }

.block--site-footer .small li a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
  text-decoration: none;
  margin: 0 0.1111111111em; }
  .block--site-footer .small li a:hover, .block--site-footer .small li a:active, .block--site-footer .small li a:focus {
    text-decoration: underline;
    background: none; }
  @media all and (min-width: 1024px) {
    .block--site-footer .small li a {
      margin: 0 0.2222222222em 0 0; } }

.block--site-footer .back-top a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 0.375em 0.5625em;
  margin: 0 0 0.75em; }
  .block--site-footer .back-top a .arrow {
    position: relative;
    top: -0.125em; }

/* -------------------------------------------------------------- 

SPONSORED HUBS

-------------------------------------------------------------- */
/* DR MARTINS
-------------------------------------------------------------- */
/* SUBSCRIPTION PROMOTION BLOCK 
-------------------------------------------------------------- */
.block__promo {
  max-width: 25em;
  margin: 0 auto; }
  @media all and (min-width: 691px) and (max-width: 1023px) {
    .block__promo {
      max-width: 43.1875em; } }
  @media all and (min-width: 1024px) {
    .block__promo {
      max-width: 63.9375em; } }

.promo-copy {
  padding: 0.9375em; }
  @media all and (min-width: 691px) {
    .promo-copy {
      padding: 1.6875em; } }
  @media all and (min-width: 1024px) {
    .promo-copy {
      padding: 1.6875em 0; } }

.h-pre__promo {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.0714285714;
  font-family: 'aktiv-grotesk-std',helvetica,arial,sans-serif;
  font-weight: 800;
  text-transform: uppercase; }

.h-title__promo {
  font-family: 'aktiv-grotesk-std',helvetica,arial,sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 33px;
  font-size: 2.0625rem;
  line-height: 1.1818181818;
  margin: 0.4102564103em 0; }
  @media all and (min-width: 691px) {
    .h-title__promo {
      font-size: 42px;
      font-size: 2.625rem;
      line-height: 1.1904761905;
      margin: 0.42em 0; } }

.h-title__promo strong {
  font-weight: 800; }

.body__promo {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-family: 'aktiv-grotesk-std',helvetica,arial,sans-serif;
  font-weight: 300; }

.action__promo {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-family: 'aktiv-grotesk-std',helvetica,arial,sans-serif;
  font-weight: 800;
  margin-top: 0.8181818182em; }

.action__promo span {
  border-bottom: 3px solid;
  padding-bottom: 1px; }

.promo-text--dark {
  color: #232323; }
  .promo-text--dark .action__promo span {
    border-color: #232323; }

.promo-text--light {
  color: #fff; }
  .promo-text--light .action__promo span {
    border-color: #fff; }

/* HACK FINISHING ARTICLE ICON TO USE EM RATHER THAN I
-------------------------------------------------------------- */
em.icon-diy {
  font-family: 'diymag';
  display: inline-block;
  font-style: normal; }

em.icon-diy:before {
  content: "\e602"; }

/* -------------------------------------------------------------- 

Magnific Popup CSS
http://dimsemenov.com/plugins/magnific-popup/

A VERY hacked about version of the provided styles
Removed: iFrame and previous '-mobile' styles

-------------------------------------------------------------- */
.mfp-bg {
  background: #fff;
  opacity: 1;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20002; }

.mfp-wrap {
  position: fixed;
  outline: none !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20003;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 1.5em; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  text-align: left;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 20005;
  margin: 0 auto; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-image-holder .mfp-close {
  cursor: pointer; }

.mfp-zoom {
  cursor: pointer; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading .mfp-figure {
  display: none; }

/* 3. Appearance
-------------------------------------------------------------- */
.mfp-preloader {
  color: #888;
  text-align: center;
  position: absolute;
  top: 50%;
  width: auto;
  left: 9px;
  right: 9px;
  z-index: 20004;
  margin-top: -0.8em; }
  .mfp-preloader a {
    color: #888; }
    .mfp-preloader a:hover {
      color: #232323; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  background: transparent;
  border: 0;
  display: block;
  overflow: visible;
  cursor: pointer;
  outline: none;
  z-index: 20006;
  padding: 0;
  -webkit-appearance: none; }
  button.mfp-close::-moz-focus-inner, button.mfp-arrow::-moz-focus-inner {
    padding: 0;
    border: 0; }

.mfp-close {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  color: #232323;
  display: block;
  text-align: center;
  text-decoration: none;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.5; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close i {
    position: relative;
    z-index: -1; }

.mfp-close-btn-in .mfp-close {
  color: #232323; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #232323;
  text-align: right;
  padding-top: 0.5em;
  width: 100%; }

.mfp-counter {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1;
  color: #888;
  text-align: center;
  position: absolute;
  top: -1.5em;
  width: 100%;
  z-index: 20010; }

.mfp-arrow {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  position: absolute;
  opacity: 0.5;
  margin: 0;
  top: 50%;
  margin-top: -60px;
  padding: 0;
  width: 90px;
  height: 120px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }
  .mfp-arrow i {
    position: relative;
    z-index: -1; }

.touch button.mfp-arrow {
  display: none; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid #232323;
    margin-left: 31px; }
  .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
    border-right: 27px solid #fff;
    margin-left: 25px; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid #232323;
    margin-left: 31px; }
  .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
    border-left: 27px solid #fff; }

/* Image content type
-------------------------------------------------------------- */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 3em 0 3em;
  margin: 0 auto; }

.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 3em;
    bottom: 3em;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: none;
    background: #fff; }
  .mfp-figure small {
    color: #888;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  cursor: auto;
  position: absolute;
  width: 100%;
  left: 0; }

.mfp-title {
  display: none; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

