@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://fonts.googleapis.com/css?family=Montserrat');

/* RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 16px;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.clearfix:after { 
  content: "."; 
  visibility: hidden; 
  display: block; 
  height: 0; 
  clear: both;
}








/* MEDIA */

/* XL */
body
{
  font-family: "Roboto",Verdana,"Avenir Next","Trebuchet MS","Helvetica Neue",Helvetica,Arial,sans-serif;
  line-height:170%;

  /* Viewport Settings */
  --width:1050px;
  --margin:0px;
  
  /* Viewport size for calcs */
  --isXL:1;
  --isLG:0;
  --isMD:0;
  --isSM:0;
  --isXS:0;

  /* MEDIA HIDE FOR BLOCKS */
  --hideMD:inline;
  --hideSM:inline;
  --hideXS:inline;
  --showMD:none;
  --showSM:none;
  --showXS:none;
  --hideBlockMD:block;
  --hideBlockSM:block;
  --hideBlockXS:block;
  --showBlockMD:none;
  --showBlockSM:none;
  --showBlockXS:none;
}

/* LG */
@media (max-width: 1300px)
{
  body
  {
    --width:1050px;
    --isLG:1;
    --isXL:0;
  }
}

/* MD */
@media (max-width: 1100px)
{
  body
  {
    --width:800px;
    --hideMD:none;
    --showMD:inline;
    --hideBlockMD:none;
    --showBlockMD:block;
    --isMD:1;
    --isLG:0;
    --isXL:0;
  }
}

/* SM */
@media (max-width: 900px)
{
  body
  {
    --width:720px;
    --hideMD:none;
    --hideSM:none;
    --showMD:inline;
    --showSM:inline;
    --hideBlockMD:none;
    --hideBlockSM:none;
    --showBlockMD:block;
    --showBlockSM:block;
    --isSM:1;
    --isMD:0;
    --isLG:0;
    --isXL:0;
  }
}

/* XS */
@media (max-width: 700px)
{
  body
  {
    --width:100%;
    --margin:10px;
    --hideMD:none;
    --hideSM:none;
    --hideXS:none;
    --showMD:inline;
    --showSM:inline;
    --showXS:inline;
    --hideBlockMD:none;
    --hideBlockSM:none;
    --hideBlockXS:none;
    --showBlockMD:block;
    --showBlockSM:block;
    --showBlockXS:block;
    --isXS:1;
    --isSM:0;
    --isMD:0;
    --isLG:0;
    --isXL:0;
  }
}

h1
{
  font-family: ffmark,Helvetica Neue,Helvetica,Arial,sans-serif;
  margin-bottom:15px;
  font-size: 24px;
  font-weight: bold;
}

h2
{
  margin-top:40px;
  font-size:18px;
  font-weight: bold;
}








header
{
    z-index: 100;
    height:50px;
    width:100%;
    background-color: #363946;
    display:grid;
    grid-template-columns: calc( ( ( 100% - var(--width) ) / 2 ) + var(--margin) ) auto auto calc( ( ( 100% - var(--width) ) / 2 ) + var(--margin) );
    grid-template-rows: 50px;
    grid-template-areas: ". left right .";
}

header .logo
{
    grid-area: left;
}

header .logo img
{
  height:65px; 
}

header nav
{
    grid-area: right;
    justify-self:end;
}

header nav ul li
{
  float:left;
  margin-left:20px;
}

header nav a
{
  font-size:26px;
  line-height: 50px;
  color:#fff;
}

header nav a:hover
{
  color:#aaa;
}

.search
{
  z-index: 100;
  position: fixed;
  right: calc( (100% - var(--width)) / 2 );
  background-color: #fff;
  padding: 10px;
  box-shadow: 2px 2px rgba(0,0,0,0.1);
}

.search input
{
  font-size: 16px;
  padding: 5px;
  border: 1px solid #fff;
}


.underheader
{
    padding: 25px 0 10px 0px;
    text-align: center;
    background-color:#f6f6f6;
}


main
{
  display:grid;
  grid-template-columns: calc( ( ( 100% - var(--width) ) / 2 ) + var(--margin) ) auto calc( ( ( 100% - var(--width) ) / 2 ) + var(--margin) );
  grid-template-areas: ". main .";
}

main section
{
  grid-area: main;
  padding-top:20px;
  padding-bottom:20px;
  margin-top: 20px;
}

.twinLayout
{
  display:grid;
  grid-template-columns: auto calc( (var(--isLG) + var(--isMD) + var(--isXL)) * 20px ) calc( (var(--isLG) + var(--isXL)) * 300px );
  grid-template-areas: "content . sidebar";
}

.mainContent
{
  grid-area: content;
  max-width: 730px;
  font-size: calc( ( var(--isXL) + var(--isLG) + var(--isMD) ) * 18px + ( var(--isSM) + var(--isXS) ) * 16px );
}

.mainContent figure
{
  margin-bottom: 60px;
  margin-top: 30px;
}

.mainContent cite
{
    color: #999;
    font-size: 12px !important;
    font-style: italic;
    display: block;
    line-height: 1.3!important;
}

.twinLayout aside
{
  grid-area: sidebar;
  display: var(--hideBlockMD);
}

footer
{
  display:grid;
  background-color: #f5f5f5;
  grid-template-columns: calc( ( ( 100% - var(--width) ) / 2 ) + var(--margin) ) auto calc( ( ( 100% - var(--width) ) / 2 ) + var(--margin) );
  grid-template-areas: ". main .";
}

footer section
{
  grid-area: main;
  padding-bottom:  20px;
  padding-top: 20px;
  font-size: calc( ( var(--isXL) + var(--isLG) + var(--isMD) ) * 14px + ( var(--isSM) + var(--isXS) ) * 12px );
  line-height:170%;
}

footer section h2
{
	font-size:18px;
	font-weight:bold;
}

footer section ul
{
	margin-top:20px;
	margin-bottom:20px;
}

footer section ul:after
{
	content:'';
	display:table;
	clear:both;
}

footer section ul li
{
	float:left;
	margin-right:10px;
}

footer section p
{
	margin-bottom:20px;
}

footer a
{
  text-decoration: none;
  color: #077DC8;
}


/* Mobile Navigation */
.side-nav
{
	z-index: 200;	
	width: 100%;
    height: 100%;
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
	overflow: hidden;
}
.side-nav:before {
	content: '';
    height: 100%;
    background: #000;
    opacity: 0;
    display: block;
    position: absolute;
	  will-change: opacity;
    transition: opacity 233ms cubic-bezier(0,0,.21,1);
    width: 100%;
}

.side-nav.visible
{
	pointer-events: auto;
}
.side-nav.visible:before
{
    opacity: .7;
}

.side-nav-content
{
  background: #FAFAFA;
  width: 304px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.28);
  will-change: transform;
  -webkit-transform: translateX(-102%) !important;
  transform: translateX(-102%) !important;
  transition: transform 333ms cubic-bezier(0,0,.21,1) !important;
}

.side-nav.visible .side-nav-content
{
  will-change: transform;
  -webkit-transform: translateX(0px) !important;
  transform: translateX(0px) !important;
  transition: transform 333ms cubic-bezier(0,0,.21,1) !important;
}

.side-nav-body
{
	padding:20px;
}

body, body:after, html
{
    width: 100%;
    height: 100%;
}

body:after
{
	content: '';
	z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    background: #FAFAFA;
    opacity: 0;
    transition: opacity 333ms cubic-bezier(0,0,.21,1) .4s;
}

.side-nav ul ul {
  margin-bottom: 30px;
}

li.title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.side-nav a {
  color: #000;
  text-decoration: none;
  font-size: 17px;
  line-height: 30px;
}

.side-nav a:hover {
  color: #555;
}








/* GALLERY PAGE */
.gallery
{
  margin-left:calc( (var(--isLG) + var(--isMD) + (var(--isXL)*2)) * 50px );
  margin-right:calc( (var(--isLG) + var(--isMD) + (var(--isXL)*2)) * 50px );
}

.gallery li
{
  clear:both;
  margin-bottom: 30px;
}

.gallery .image
{
  background-repeat: no-repeat;
  width:100%;
  padding-bottom:50%;
  background-size: cover;
  position: relative;
  cursor: pointer;
}

/*
.storyCard
{
  height: 200px;
  border: 1px solid rgba(0,0,0,.1);
  background-color: #fff;
  border-radius: 3px;
}

.storyCardImage
{
  height: 200px;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #e2e2e2;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  width: 300px;
  position: absolute;
  height: 200px;
}

.storyCardContent
{
  margin-left: 30%;
  padding: 15px;
}

.storyCardText
{
  margin-left: 30%;
  padding: 15px;
}

.storyCardLeader
{
  margin-bottom: 5px;
  display: block;
}

.storyCardAuthor
{
  display: block;
}
*/

.gallery li h2 
{
  position: absolute;
  bottom: 0px;
  left:0px;
  right:0px;
  text-align: center;
  padding: 10px;
  padding-bottom:30px;
  font-size: calc( (var(--isXL)) * 50px + ( var(--isLG) + var(--isMD) + var(--isSM) + var(--isXS) ) * 5vw );
  color: #fff;
  text-shadow: 1px 2px 8px rgba(0,0,0,.6);
  font-weight: 900;
  font-family: Montserrat,sans-serif;
  line-height: 1;
  background: -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.7)));
  background: -webkit-linear-gradient(transparent 0,rgba(0,0,0,.7) 100%);
  background: linear-gradient(transparent 0,rgba(0,0,0,.7) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#b3000000', GradientType=0 );
}

.button a 
{
  display: block;
  height: 20px;
  width: calc(20% - 20px);
  float: left;
  text-align: center;
  padding: 10px;
  margin-bottom:20px;
  line-height: 20px;
  text-decoration: none;
  color: #fff;
}

.mainContent .button a 
{
  display: block;
  height: 15px;
  width: calc( ( var(--isXL) + var(--isLG) + var(--isMD) ) * ( calc(30% - 3px) ) + ( var(--isSM) ) * ( calc(30% - 4px) ) + ( var(--isXS) )  * ( calc(30% - 14px) ) );
  float: left;
  padding: 10px;
  margin-bottom: 30px;
  margin-top: 15px;
  margin-right: calc( ( var(--isXL) + var(--isLG) + var(--isMD) ) * 10px + ( var(--isSM) + var(--isXS) ) * 5px ); 
  line-height: 15px;
  text-decoration: none;
  color: #fff;
  text-align: left;
  border-radius: 3px;
  font-size: 12px;
}

.color-fbblue a
{
  background-color:#3b5998;
}

.color-fbblue a:hover
{
  background-color:#3375ff;
}


.color-tblue a
{
  background-color:#55acee;
}

.color-tblue a:hover
{
  background-color:#55acee;
}

.color-wgreen a
{
  background-color:#34AF23;
}

.color-wgreen a:hover
{
  background-color:#1ad800;
}


.mainContent .color-wgreen a
{
  margin-right: 0px !important;
}


.color-gred a
{
  background-color:#d34836;
}

.color-gred a:hover
{
  background-color:#ff2525;
}

.color-grey a
{
  background-color:#444;
}

.color-grey a:hover
{
  background-color:#444;
}

.gallery .button a .hide
{
  display:var(--hideXS);
}

.loader
{
  text-align: center;
  font-size: 5vw;
  margin: 100px;
}


aside .recommended
{
  margin-top: 20px;
}

aside .recommended li .image
{
  background-size: cover;
  width:100%;
  padding-bottom:45%;
  border-radius: 3px;
}

aside .recommended li a
{
  text-decoration: none;
  color:#000;
  font-weight: bold;
  text-align: left;
}

aside .recommended li a h3
{
  line-height: 1.3;
  margin-bottom: 30px;
  font-size: 16px;
  margin-top: 7px;
}

aside .recommended li a:hover
{
  color:#444;
}


.mainContent .recommended
{
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(12,12fr);
  margin-top: 10px;
}

.mainContent .recommended li
{
  grid-column-end: span calc( ( (var(--isXL) + var(--isLG) ) * 6 ) + ( ( var(--isMD) + var(--isSM) ) * 6 ) + var(--isXS) * 12 );
}

.mainContent .recommended li .image
{
  background-size: cover;
  width:100%;
  padding-bottom:50%;
}

.mainContent .recommended li a
{
  text-decoration: none;
  color:#000;
  font-weight: bold;
  text-align: center;
}

.mainContent .recommended li a h3
{
  line-height: 1.3;
  margin-bottom: 16px;
  margin-top: 8px;
  text-align: left;
}

.mainContent .recommended li a:hover
{
  color:#444;
}





/* ARTICLE LAYOUT */
main .mainContent h1
{
  font-size: calc( ( var(--isXL) + var(--isLG) + var(--isMD) ) * 34px + ( var(--isSM) + var(--isXS) ) * 24px );
  line-height:1.2;
}

main .mainContent h2
{
  margin-top:0px;
  font-size: calc( ( var(--isXL) + var(--isLG) + var(--isMD) ) * 18px + ( var(--isSM) + var(--isXS) ) * 16px );
  font-weight: 700;
  margin-bottom: 20px;
  line-height: calc( ( var(--isXL) + var(--isLG) + var(--isMD) ) * 33px + ( var(--isSM) + var(--isXS) ) * 30px );
}

main .mainContent .leader
{
  font-weight: bold;
  margin-top:25px;
  margin-bottom: 25px;
  line-height: calc( ( var(--isXL) + var(--isLG) + var(--isMD) ) * 33px + ( var(--isSM) + var(--isXS) ) * 30px );
}


.mainContent article
{
  margin-top: 10px;
  clear:left;
}

.mainContent article img
{
  width:100%;
}

.mainContent article p
{
  margin-bottom: 25px;
  text-align: justify;
  line-height: calc( ( var(--isXL) + var(--isLG) + var(--isMD) ) * 33px + ( var(--isSM) + var(--isXS) ) * 30px );
}

.mainContent .date
{
  color: #999!important;
  font-size: 12px;
  margin-bottom: 8px;
}

.mainContent .author
{
  font-size: 14px;
}

.mainContent .author .name
{
  color: #1385c7;
  line-height: 15px;
  padding-top: 10px;
}

.mainContent .author .position
{
  color: #999999;
  line-height: 24px;
  font-size: 12px;
}

.mainContent .author img
{
    display: block;  
    float: left;
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%!important;
    margin-right: 10px!important;
}

.pageButtons
{
  height: 35px;
}

.pageButtons a {
  display: block;
  text-align: center;
  text-decoration: none;
}

.pageButtons a:nth-child(1)
{
  float:right;
}

.pageButtons a:nth-child(2)
{
  float:right;
}

.pageButtonsSingle a:nth-child(1)
{
  float:right !important;
}

.buzzButton
{
  background-color: #fff;
  width: 40%;
  font-size: 14px;
  height: 35px;
  line-height: 34px;
  font-weight: 700; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.buzzButtonPrev
{
    color: #666!important;
    border: 1px solid #666;
    border-radius: 3px;
    float: left !important;
}

.buzzButtonNext
{
  background-color: #c5c5c5!important;
  border: 1px solid #c5c5c5!important;
  color: #FFF;
  text-align: center;
  padding: 0 10px;
  border-radius: 3px;
  display: block;
}

.buzzButtonNext:hover
{
  background-color: #696969!important;
  border: 1px solid #696969!important;
  color: #fff!important;
}


.buzzButtonNext:before
{
  display: block;
  position: relative;
  float: left;
  top: -18px;
  left: -13px;
  content: '';
  width: 0;
  height: 0;
  border-bottom: 34px solid transparent;
  border-top: 35px solid transparent;
  border-left: 25px solid #fff;
  font-size: 0;
  line-height: 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.nextArticleButton
{
  background-color: #333333!important;
  border: 1px solid #333333!important;
  color: #FFF;
  text-align: center;
  display: block;
  width: 100% !important;
}

.nextArticleButton:hover
{
  background-color: #696969!important;
  border: 1px solid #696969!important;
  color: #fff!important;
}

.lastPage
{
  width: 40% !important;
  font-size: 14px;
  height: 35px;
  line-height: 34px;
  border-radius: 3px;
}

.shareSingleTop
{
  /* border-top: 1px solid #dcdcdc; */
  border-bottom: 1px solid #dcdcdc;
  height: 65px;
  margin-top: 10px;
}

.shareSingleBottom
{ 
  padding-top: 25px;
  padding-bottom: 25px;
  height: 65px;
}

.nextText
{
  padding: 0px 0 0px;
  font-size: calc( ( var(--isXL) + var(--isLG) + var(--isMD) ) * 16px  + ( var(--isSM) ) * 15px  + ( var(--isXS) )  * 14px  );
  color: #333333;
}

.nextTextTop
{
  padding: 0px 0 0px;
  font-size: calc( ( var(--isXL) + var(--isLG) + var(--isMD) ) * 16px  + ( var(--isSM) ) * 15px  + ( var(--isXS) )  * 14px  );
  color: #333333;
}

.comments
{
  margin-bottom: 20px;
}

.inArticleA
{
  padding-bottom: 30px;
  max-width: 730px;
  margin-right:-10px;
  text-align: center;
}

.underContentA
{
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding-top: 10px;
  padding-bottom: calc( ( var(--isXL) + var(--isLG) + var(--isMD) ) * 5px + ( var(--isSM) + var(--isXS) ) * 15px );
  margin-top: 15px;
  margin-bottom: 20px;
  text-align: center;
}

/* TopContentA Float Reset */
@media (max-width: 700px)
{
  .topContentA
  {
    float: none !important;
    clear: both !important;
    text-align: center;
  }
}

.topContentA
{
  padding-bottom: 10px;
  text-align: center;
  float: left;
  margin-right: calc( ( var(--isXL) + var(--isLG) + var(--isMD) + var(--isSM) ) * 20px  + ( var(--isXS) ) * 0px  );
}

.noteA
{
  font-size: calc( ( var(--isXL) + var(--isLG) + var(--isMD) ) * 10px  + ( var(--isSM) + var(--isXS) )   * 8px  );
  color: #ababab;
  display: block;
  text-align: right;
  line-height: 13px;
}

.imgL
{
  min-height:100px;
  width:100%;
}

.imgL.offscreen
{
  padding-bottom:100%;
  width:100%;
  background-color:#aaa;
}

@keyframes placeHolderLoader{
  0%{
      background-position: -730px 0
  }
  100%{
      background-position: 730px 0
  }
}

.imgL.onscreen
{
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderLoader;
  animation-timing-function: linear;
  background: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 30%, #dddddd 50%, #eeeeee 70%);
  background-size: 100% 100%;
  padding-bottom:100%;
  position: relative;
}

.imgL.onscreen img
{
  visibility: hidden;
}

.imgL.done
{
  visibility: visible;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
  height: 100%;
}
  
.privacy p
{
  margin-bottom: 20px;
}

.privacy ul
{
  list-style: disc;
  padding-left: 30px;
}

.imprint p
{
  font-size: 16px;
}

.errorMSG
{
  background-color: #ffcaca;
  text-align: center;
  padding: 20px;
  margin: 10px;
  z-index: 99;
}

.errorMSG h2
{
  margin-top: 20px !important;
}








/* NEW FEED - MAIN */
.feed a
{
  display:grid;
  color:#000;
  text-decoration: none;
  font-family: 'Montserrat';
}

.feed ul
{
  display:grid;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-bottom:40px;
}

.feed a .image
{
  grid-area: img;
  background-size: cover;
  background-position: center center;
  position:relative;
  width:100%;
  padding-bottom: calc( 9 / 16 * 100% ); 
}

.feed a h2
{
  grid-area:title;
  margin-top:0px;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size:16px;
}

.feed a p
{
  grid-area:desc;
  line-height: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
}








/* HEADLINES */
.feed .front_head
{
  grid-template-columns: auto;
  grid-template-rows: 80px;
}

.feed .front_head a
{
  grid-template-areas: "img . title ." "img . desc .";
  grid-template-columns: 142px 10px auto 5px;
  grid-template-rows: 30px 50px;
  background-color: #eee;
  border:1px solid #ccc;
}

.feed .front_head a h2
{
  padding-top:2px;
}



/* FOUR */
.feed .front_four
{
  grid-template-columns: repeat(4,4fr);
  grid-template-rows: auto;
}

.feed .front_four a
{
  grid-template-areas: "img" "." "title";
  grid-template-columns: 100%;
  grid-template-rows: auto 5px auto;
}

.feed .front_four li
{
  grid-column: span calc( ( (var(--isXL) + var(--isLG) ) * 1 ) + ( ( var(--isMD) + var(--isSM) ) * 2 ) + var(--isXS) * 4 )
}




/* TWO */
.feed .front_two
{
  grid-template-columns: repeat(2,2fr);
  grid-template-rows: auto;
}

.feed .front_two a
{
  grid-template-areas: "img" "." "title";
  grid-template-columns: 100%;
  grid-template-rows: auto 5px auto;
}

.feed .front_two li
{
  grid-column: span calc( ( (var(--isXL) + var(--isLG) ) * 1 ) + ( ( var(--isMD) + var(--isSM) ) * 1 ) + var(--isXS) * 3 )
}



/* HORI */
.feed .front_hori
{
  grid-template-columns: repeat(2,2fr);
  grid-template-rows: auto;
}

.feed .front_hori a
{
  grid-template-areas: "img . title";
  grid-template-columns: 2fr 5px 2fr;
  grid-template-rows: auto;
}

.feed .front_hori h2
{
  align-self: center;
}

.feed .front_hori li
{
  grid-column: span calc( ( (var(--isXL) + var(--isLG) ) * 1 ) + ( ( var(--isMD) + var(--isSM) ) * 1 ) + var(--isXS) * 2 )
}



/* THREE */
.feed .front_three
{
  grid-template-columns: repeat(3,3fr);
  grid-template-rows: auto;
}

.feed .front_three a
{
  grid-template-areas: "img" "." "title";
  grid-template-columns: 100%;
  grid-template-rows: auto 5px auto;
}

.feed .front_three li
{
  grid-column: span calc( ( (var(--isXL) + var(--isLG) ) * 1 ) + ( ( var(--isMD) + var(--isSM) ) * 1 ) + var(--isXS) * 3 )
}


/* Featuring */
.feed .front_feat
{
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 2fr 2fr;
  grid-template-areas: "first second" "first third";
  grid-row-gap: 0px !important;
  grid-column-gap: 0px !important;
}

@media (max-width: 700px)
{
  .feed .front_feat
  {
    grid-template-areas: "first first" "first first" "second second" "second second" "third third" "third third";
  }
}

.feed .front_feat li:nth-child(1)
{
  grid-area: first;
}
.feed .front_feat li:nth-child(2)
{
  grid-area: second;
}
.feed .front_feat li:nth-child(3)
{
  grid-area: third;
}

.feed .front_feat a
{
  grid-template-areas: "img";
  grid-template-columns: auto;
  grid-template-rows: auto;
}

.feed .front_feat .image h2
{
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  text-align: center;
  padding: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  color: #fff;
  text-shadow: 1px 2px 8px rgba(0,0,0,.6);
  font-weight: 900;
  font-family: Montserrat,sans-serif;
  line-height: 1;
  background: -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.7)));
  background: -webkit-linear-gradient(transparent 0,rgba(0,0,0,.7) 100%);
  background: linear-gradient(transparent 0,rgba(0,0,0,.7) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#b3000000', GradientType=0 );
}