@charset "UTF-8";
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: 100%;
  font: inherit;
  vertical-align: baseline; }

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 {
  content: "";
  content: none; }

q:before, q:after {
  content: "";
  content: none; }

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

body {
  background: #000 url("/wp-content/themes/montages_2020/frontend/images/interface/html_bkg_bright.png");
  color: #444; }

* {
  box-sizing: border-box; }

/** ------------------------------------------------------------------------- *
 * Hide / show stuff for mobile, tablet and desktop
 * -------------------------------------------------------------------------- */
/* Responsive breakpoints */
@media only screen and (max-width: 900px) {
  .hide-on-mobile {
    display: none !important; } }

@media only screen and (min-width: 900px) {
  .mobile-only {
    display: none !important; } }

@media only screen and (max-width: 1120px) {
  .desktop-only {
    display: none !important; } }

/** ------------------------------------------------------------------------- *
 * Basic text types and formatting
 * -------------------------------------------------------------------------- */
em, i {
  font-style: italic; }

b, strong {
  font-weight: bold; }

a {
  text-decoration: none;
  color: inherit; }

.titletype, h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-family: freight-neo-pro, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em; }
  @media only screen and (min-width: 640px) {
    .titletype, h1, h2, h3, h4, h5, h6 {
      line-height: 1.25; } }

.copytype, body {
  font-family: Georgia, Palatino, Palatino Linotype, Times, Times New Roman, serif;
  line-height: 1.45; }

.interfacetype, #sitenav, .adspace::before, .custom-adspace::before, aside.latest-comments::before, aside.twitter::before, aside.podcast::before, aside.popular::before, aside.gullkorn::before, aside.current-films::before, aside.analysen::before, aside.blogs::before, aside.related::before, aside#comments::before, article .category-tag {
  font-family: freight-neo-pro, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em; }

body {
  font-size: 16px; }

/** ------------------------------------------------------------------------- *
 * Default styles
 * -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: black; }

/** ------------------------------------------------------------------------- *
 * Future font-set
 * -------------------------------------------------------------------------- */
hr {
  background-color: #aaa;
  height: .5px;
  margin: 1em auto;
  text-align: center;
  border: 0; }

a.button, .comment a.comment-reply-link {
  display: block;
  margin: .8em 0;
  padding: 0.45em 0.8em 0.4em 0.8em;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  position: relative;
  background: #efefef; }
  a.button:hover, .comment a.comment-reply-link:hover {
    border-color: #666; }
  .sidebar a.button, .sidebar .comment a.comment-reply-link, .comment .sidebar a.comment-reply-link {
    font-size: 0.75em; }

.hide {
  display: none; }

/* VIDEO OVERLAY */
/* the overlayed element */
div#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
  /* initially overlay is hidden */
  display: none;
  z-index: 2000; }

div#overlay > figure {
  display: block;
  width: 720px;
  height: 438px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -360px;
  margin-top: -219px; }

div#overlay > figure iframe {
  width: 100%;
  height: 100%; }

/** ------------------------------------------------------------------------- *
 * Responsively scaling divs with aspect ratio
 * http://stackoverflow.com/questions/12121090/responsively-change-div-size-keeping-aspect-ratio
 * -------------------------------------------------------------------------- */
/** ------------------------------------------------------------------------- *
 * Aside header header title
 * -------------------------------------------------------------------------- */
body, .basegrid > .content, .grid.main > .content, footer.site-footer > .inner .content > .content, .stories > .content, .single-news .content > .content,
.single-post .content > .content, .frontpage > .content, .frontpage .main > .content, .category-analysen.archive .analysen-content > .content, .single-film .content > .content,
.filmperson.content > .content, .searchresults > .content, .searchresults .main .movies > .content {
  min-height: calc( 100vh - (60px + 250px)); }

.basegrid, .grid.main, footer.site-footer > .inner .content, .stories, .single-news .content,
.single-post .content, .frontpage, .frontpage .main, .category-analysen.archive .analysen-content, .single-film .content,
.filmperson.content, .searchresults, .searchresults .main .movies {
  display: grid;
  gap: 20px;
  align-items: start; }
  @media only screen and (min-width: 900px) {
    .basegrid, .grid.main, footer.site-footer > .inner .content, .stories, .single-news .content,
    .single-post .content, .frontpage, .frontpage .main, .category-analysen.archive .analysen-content, .single-film .content,
    .filmperson.content, .searchresults, .searchresults .main .movies {
      gap: 25px; } }

.grid.main {
  display: grid;
  gap: 0;
  width: 100%;
  min-height: 100vh;
  grid-template-columns: 1fr;
  grid-template-areas: "   main-header    "         "   main-content   "         "   main-footer    "; }
  @media only screen and (min-width: 1350px) {
    .grid.main .content {
      width: 1325px;
      justify-self: center;
      overflow: hidden; } }
  .grid.main > * {
    overflow: hidden; }
  .grid.main header.site-header {
    grid-area: main-header;
    min-height: 60px; }
  .grid.main footer.site-footer {
    grid-area: main-footer;
    /* min-height: $footer-height; */ }
  .grid.main .content {
    grid-area: main-content;
    background: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding-bottom: 20px; }
    @media only screen and (min-width: 900px) {
      .grid.main .content {
        padding-bottom: 25px; } }

header.site-header {
  border-top: 5px solid #f60000;
  background: black;
  color: #efefef;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  z-index: 1;
  position: relative; }
  header.site-header > .inner {
    max-width: 1325px;
    margin: 0 auto;
    height: 100%; }
    @media only screen and (min-width: 900px) {
      header.site-header > .inner {
        padding-left: calc(1 * 20px); } }
  @media only screen and (min-width: 900px) and (min-width: 900px) {
    header.site-header > .inner {
      padding-left: calc(1 * 25px); } }
  header.site-header h1 {
    margin: 20px;
    background: url("/wp-content/themes/montages_2020/frontend/images/logos/Montages_taglogo.png") no-repeat;
    background-size: auto 100%;
    background-position: left top;
    max-width: 100%;
    height: 40px;
    width: 160px;
    display: block;
    position: relative; }
    header.site-header h1 a {
      color: transparent;
      display: block;
      width: 100%;
      height: 100%; }
    @media only screen and (min-width: 900px) {
      header.site-header h1 {
        margin: 1.5em 0;
        float: left;
        height: 50px;
        width: 200px; } }
  header.site-header .menutoggle {
    position: absolute;
    right: 20px;
    top: 20px;
    background-image: url("/wp-content/themes/montages_2020/frontend/images/interface/menu_collapsed.png?v2");
    background-size: auto 100%;
    background-position: right top;
    width: 40px;
    height: 40px;
    font-size: 0;
    border: 0;
    outline: none; }
    @media only screen and (min-width: 900px) {
      header.site-header .menutoggle {
        display: none; } }
    header.site-header .menutoggle.expanded {
      background-image: url("/wp-content/themes/montages_2020/frontend/images/interface/menu_expanded.png?v2"); }

#sitenav {
  background: black;
  display: none;
  padding-bottom: .2em; }
  #sitenav ul {
    font-size: 0;
    height: 100%;
    display: flex;
    flex-wrap: nowrap; }
    #sitenav ul li {
      font-size: .9rem;
      height: 2.5em;
      line-height: 2.5em;
      overflow: hidden;
      white-space: nowrap;
      text-transform: uppercase; }
      #sitenav ul li a, #sitenav ul li form {
        color: #efefef;
        width: 100%;
        height: 100%;
        line-height: inherit;
        display: block;
        background: #222;
        padding: 0 1em; }
        #sitenav ul li a:hover, #sitenav ul li form:hover {
          background: #444; }
      #sitenav ul li.current a {
        background: #f60000; }
      #sitenav ul li form input {
        background: transparent;
        box-shadow: none;
        border: none;
        color: #777; }
      #sitenav ul li form input:active, #sitenav ul li form input:focus {
        color: #f0f0f0;
        border: 0;
        outline: none; }
  #sitenav.expanded {
    display: block; }
  #sitenav ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; }
    #sitenav ul li {
      width: 100%;
      margin: .2em 0;
      text-align: left; }
  #sitenav .search form {
    background: #333; }
  @media only screen and (min-width: 900px) {
    #sitenav {
      display: block;
      margin-top: 2em;
      padding-right: 25px;
      float: right;
      height: 100%;
      width: auto;
      vertical-align: middle; }
      #sitenav.expanded {
        display: block; } }
  @media only screen and (min-width: 900px) and (min-width: 1350px) {
    #sitenav {
      padding-right: 0; } }
  @media only screen and (min-width: 900px) {
      #sitenav ul {
        flex-direction: row;
        align-items: center;
        justify-content: center; }
        #sitenav ul li {
          border-radius: 4px;
          width: auto;
          text-align: center;
          margin: 0 0 0 10px;
          text-align: center; }
      #sitenav .topplister,
      #sitenav .international {
        display: none; } }
    @media only screen and (min-width: 900px) and (min-width: 1120px) {
      #sitenav .topplister,
      #sitenav .international {
        display: block; } }
  @media only screen and (min-width: 900px) and (min-width: 900px) {
    #sitenav .blogger {
      display: none; } }
  @media only screen and (min-width: 900px) {
      #sitenav .search form {
        background: #222; } }

footer.site-footer {
  background: black;
  color: #efefef;
  padding-top: 1em; }
  footer.site-footer > .inner {
    max-width: 1350px;
    margin: 0 auto;
    padding-top: calc(1 * 20px);
    padding-bottom: calc(0 * 20px);
    padding-right: calc(1 * 20px);
    padding-left: calc(1 * 20px);
    color: #999; }
    @media only screen and (min-width: 900px) {
      footer.site-footer > .inner {
        padding-top: calc(1 * 25px); } }
    @media only screen and (min-width: 900px) {
      footer.site-footer > .inner {
        padding-bottom: calc(0 * 25px); } }
    @media only screen and (min-width: 900px) {
      footer.site-footer > .inner {
        padding-right: calc(1 * 25px); } }
    @media only screen and (min-width: 900px) {
      footer.site-footer > .inner {
        padding-left: calc(1 * 25px); } }
    @media only screen and (min-width: 900px) {
      footer.site-footer > .inner {
        margin: 1em auto 0 auto; } }
    @media only screen and (min-width: 1350px) {
      footer.site-footer > .inner {
        padding-top: calc(1 * 20px);
        padding-bottom: calc(0 * 20px);
        padding-right: calc(1.5 * 20px);
        padding-left: calc(1.5 * 20px); } }
  @media only screen and (min-width: 1350px) and (min-width: 900px) {
    footer.site-footer > .inner {
      padding-top: calc(1 * 25px); } }
  @media only screen and (min-width: 1350px) and (min-width: 900px) {
    footer.site-footer > .inner {
      padding-bottom: calc(0 * 25px); } }
  @media only screen and (min-width: 1350px) and (min-width: 900px) {
    footer.site-footer > .inner {
      padding-right: calc(1.5 * 25px); } }
  @media only screen and (min-width: 1350px) and (min-width: 900px) {
    footer.site-footer > .inner {
      padding-left: calc(1.5 * 25px); } }
    footer.site-footer > .inner a {
      color: #ccc; }
      footer.site-footer > .inner a:hover {
        color: #f60000; }
    footer.site-footer > .inner .content {
      grid-template-columns: 1fr;
      background: black; }
      footer.site-footer > .inner .content .info, footer.site-footer > .inner .content .newsletter, footer.site-footer > .inner .content .sections {
        display: none; }
      @media only screen and (min-width: 900px) {
        footer.site-footer > .inner .content {
          display: grid;
          min-height: 2em;
          background: transparent;
          grid-template-columns: minmax(230px, 300px) minmax(150px, 250px) 1fr; }
          footer.site-footer > .inner .content .info, footer.site-footer > .inner .content .newsletter {
            display: block; } }
      @media only screen and (min-width: 1120px) {
        footer.site-footer > .inner .content {
          grid-template-columns: minmax(230px, 300px) minmax(160px, 300px) minmax(150px, 250px) 1fr; }
          footer.site-footer > .inner .content .sections {
            display: block; } }
      footer.site-footer > .inner .content address {
        margin: 0 0 1em 0.4em; }
      footer.site-footer > .inner .content h3 {
        color: #ddd;
        text-transform: uppercase;
        margin: 0 0 1em 0; }
      footer.site-footer > .inner .content ul {
        list-style: disc;
        margin-left: 1.5em; }
      footer.site-footer > .inner .content li {
        margin-bottom: .5em; }
      footer.site-footer > .inner .content li a {
        border-bottom: 1px dotted #666; }
      footer.site-footer > .inner .content .info figure {
        max-width: 200px; }
        footer.site-footer > .inner .content .info figure img {
          width: 100%; }
      footer.site-footer > .inner .content .strictly-necessary {
        text-align: center; }
        footer.site-footer > .inner .content .strictly-necessary .fb-page {
          height: 130px;
          margin-right: 0; }
          @media only screen and (min-width: 1350px) {
            footer.site-footer > .inner .content .strictly-necessary .fb-page {
              margin-right: 50px; } }
        @media only screen and (min-width: 900px) {
          footer.site-footer > .inner .content .strictly-necessary {
            text-align: right; } }
        footer.site-footer > .inner .content .strictly-necessary .mobile-only {
          font-size: 0.8em;
          margin-top: 1em; }
      footer.site-footer > .inner .content .newsletter p {
        max-width: 300px; }
      footer.site-footer > .inner .content .newsletter .form-area {
        margin: 1em 0; }
      footer.site-footer > .inner .content .newsletter form {
        color: #efefef;
        width: 260px;
        height: 100%;
        line-height: inherit;
        display: block;
        background: #222;
        padding: 0 0 0 1em;
        border-radius: 6px;
        overflow: hidden; }
        footer.site-footer > .inner .content .newsletter form:hover {
          background: #333; }
      footer.site-footer > .inner .content .newsletter input[type=text] {
        width: 160px;
        height: 40px;
        background: transparent;
        box-shadow: none;
        border: none;
        color: #777; }
      footer.site-footer > .inner .content .newsletter input:active, footer.site-footer > .inner .content .newsletter input:focus {
        color: #f0f0f0;
        border: 0;
        outline: none; }
      footer.site-footer > .inner .content .newsletter input[type=submit] {
        float: right;
        width: 80px;
        height: 40px;
        line-height: 40px;
        background: #444;
        color: #ddd;
        box-shadow: none;
        border: none; }
        footer.site-footer > .inner .content .newsletter input[type=submit]:hover {
          background: #f60000;
          cursor: pointer; }
    footer.site-footer > .inner .bottom-line .inner {
      color: #ccc;
      padding: .5em 0;
      font-size: 0.8em;
      text-align: center; }
      footer.site-footer > .inner .bottom-line .inner a {
        color: #999; }
      footer.site-footer > .inner .bottom-line .inner > div {
        margin: .5em 0; }
      @media only screen and (min-width: 900px) {
        footer.site-footer > .inner .bottom-line .inner {
          background: #151515;
          margin-bottom: 1em; }
          footer.site-footer > .inner .bottom-line .inner > div {
            display: inline-block;
            margin: 0 1em; }
          footer.site-footer > .inner .bottom-line .inner .social {
            position: relative;
            top: .25em; }
            footer.site-footer > .inner .bottom-line .inner .social a {
              padding: 0 0.2em; } }

.adspace, .custom-adspace {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px; }
  .adspace .inner, .custom-adspace .inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap; }
  .adspace .ad180, .custom-adspace .ad180 {
    max-width: 180px;
    margin-bottom: calc(1 * 20px); }
    @media only screen and (min-width: 900px) {
      .adspace .ad180, .custom-adspace .ad180 {
        margin-bottom: calc(1 * 25px); } }
  .adspace::before, .custom-adspace::before {
    content: "Annonser";
    background: white;
    color: #444;
    font-size: 0.8em;
    text-transform: uppercase;
    display: block;
    padding: 0 0.7em;
    position: absolute;
    top: -.7em; }
  .adspace::before, .custom-adspace::before {
    color: #aaa; }

.story-main .adspace .inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; }
  .story-main .adspace .inner .ad180 {
    margin-bottom: calc(1 * 20px); }
    @media only screen and (min-width: 900px) {
      .story-main .adspace .inner .ad180 {
        margin-bottom: calc(1 * 25px); } }

.custom-adspace .ad {
  margin: 0 auto; }

.sidebar aside.adspace {
  padding-bottom: 0;
  margin-bottom: 20px; }
  .sidebar aside.adspace .inner {
    flex-direction: column; }
  @media only screen and (min-width: 1120px) {
    .sidebar aside.adspace {
      margin-top: 0; } }

.ad180 {
  background: red;
  font-size: 0;
  width: auto;
  max-width: 180px;
  vertical-align: middle;
  overflow: hidden; }
  .ad180 > div {
    vertical-align: middle;
    margin: auto; }
  .ad180 img {
    width: 100%;
    max-width: 180px;
    height: auto;
    max-height: 100%; }

.story-main .adspace {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 5px; }
  .single .story-main .adspace {
    border-bottom: 0; }
  .story-main .adspace .ad180 {
    margin: 5px; }

.single #wpads_542 {
  display: none; }

aside.custom-adspace .oslokino {
  max-width: 600px;
  height: 80px;
  padding: 10px 0;
  background: #0e0e1b; }
  aside.custom-adspace .oslokino > a {
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%; }
  aside.custom-adspace .oslokino img {
    height: 60px;
    width: 320px; }

.sidebar {
  min-height: 0;
  height: 100%;
  display: flex;
  grid-gap: inherit;
  align-content: start;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  flex-wrap: wrap; }

aside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin-bottom: 25px;
  background-color: white; }
  aside > .inner {
    padding-top: 1em;
    border-top: 1px solid #e2e2e2;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    flex-grow: 1; }
  .sidebar aside {
    margin-bottom: 50px; }
  aside, aside li, aside > .inner {
    border-radius: 4px; }
  aside img {
    max-width: 100%; }
  aside figure img {
    width: 100%; }

aside.altcolor, aside.podcast {
  background-color: #efefef;
  padding-top: 1em;
  border-radius: 4px; }
  aside.altcolor > .inner, aside.podcast > .inner {
    border: 0 !important; }
  aside.altcolor::before, aside.podcast::before {
    background-color: inherit !important;
    border-radius: 4px;
    color: #000 !important;
    text-align: center;
    top: 0 !important;
    border: 0 !important;
    width: 100%;
    padding: .5em 0 !important;
    margin: 0 auto;
    font-weight: bold; }

aside.bordered > .inner, aside.altcolor > .inner, aside.podcast > .inner, aside.popular > .inner, aside.analysen > .inner, .story-asides aside.category > .inner {
  border: 1px solid #efefef; }

aside.bordered .storylist, aside.altcolor .storylist, aside.podcast .storylist, aside.popular .storylist, aside.analysen .storylist, .story-asides aside.category .storylist {
  padding: 0.3em 0.75em; }

aside.latest-comments::before {
  content: "Diskusjon";
  background: white;
  color: #444;
  font-size: 0.8em;
  text-transform: uppercase;
  display: block;
  padding: 0 0.7em;
  position: absolute;
  top: -.7em; }

aside.latest-comments li {
  font-size: .8em;
  padding: 1em;
  border: 1px solid #e2e2e2;
  margin-bottom: 20px; }
  aside.latest-comments li .inner {
    overflow: hidden; }

aside.latest-comments .comment_author {
  font-weight: bold;
  color: #666; }

aside.latest-comments .comment_post_title {
  font-weight: bold; }

aside.latest-comments .comment_excerpt {
  color: #666; }

aside.twitter::before {
  content: "Følg Montages";
  background: white;
  color: #444;
  font-size: 0.8em;
  text-transform: uppercase;
  display: block;
  padding: 0 0.7em;
  position: absolute;
  top: -.7em; }

aside.twitter .button, aside.twitter .comment .comment-reply-link, .comment aside.twitter .comment-reply-link {
  background-color: #efefef; }

aside.twitter > .inner {
  padding-top: .5em; }

aside.twitter li {
  font-size: .8em;
  padding: 0.5em 1em 1em 1em;
  border: 1px solid #e2e2e2;
  margin-bottom: 20px;
  background-color: #efefef; }
  aside.twitter li .inner {
    overflow: hidden; }

aside.twitter .timestamp {
  display: block;
  margin-bottom: .5em;
  color: #666;
  font-size: .9em; }
  aside.twitter .timestamp img {
    position: relative;
    top: .6em;
    border: 1px solid #e2e2e2;
    margin-right: .5em; }

aside.twitter blockquote a {
  font-weight: bold; }

aside.podcast::before {
  content: "Podkast fra Montages";
  background: white;
  color: #444;
  font-size: 0.8em;
  text-transform: uppercase;
  display: block;
  padding: 0 0.7em;
  position: absolute;
  top: -.7em; }

aside.podcast .inner > p {
  font-size: 0.75em;
  padding: 0.1em 20px 0.5em 20px;
  text-align: center; }
  aside.podcast .inner > p a {
    font-weight: bold;
    color: #f60000;
    font-size: 0.9em; }

aside.podcast::before {
  font-size: .78em; }

aside.popular {
  background: #efefef; }
  aside.popular::before {
    content: "Populære saker";
    background: white;
    color: #444;
    font-size: 0.8em;
    text-transform: uppercase;
    display: block;
    padding: 0 0.7em;
    position: absolute;
    top: -.7em; }

aside.gullkorn::before {
  content: "Gullkorn fra arkivet";
  background: white;
  color: #444;
  font-size: 0.8em;
  text-transform: uppercase;
  display: block;
  padding: 0 0.7em;
  position: absolute;
  top: -.7em; }

aside.gullkorn article {
  border-radius: 0px; }

aside.current-films {
  background: #efefef; }
  aside.current-films::before {
    content: "Aktuelle filmer";
    background: white;
    color: #444;
    font-size: 0.8em;
    text-transform: uppercase;
    display: block;
    padding: 0 0.7em;
    position: absolute;
    top: -.7em; }
  aside.current-films .inner {
    min-height: 600px; }

aside.analysen {
  background: #efefef; }
  aside.analysen::before {
    content: "Analysen: Norsk film";
    background: white;
    color: #444;
    font-size: 0.8em;
    text-transform: uppercase;
    display: block;
    padding: 0 0.7em;
    position: absolute;
    top: -.7em; }

aside.blogs {
  padding: 0 0.5em;
  background: #efefef; }
  aside.blogs .blog_name {
    font-size: 75%; }
  aside.blogs::before {
    content: "Fra bloggene";
    background: white;
    color: #444;
    font-size: 0.8em;
    text-transform: uppercase;
    display: block;
    padding: 0 0.7em;
    position: absolute;
    top: -.7em; }
  aside.blogs .lead {
    display: none; }
  aside.blogs article {
    margin-bottom: 1em; }
  aside.blogs figure {
    font-size: 0;
    padding-bottom: 4px; }

.stories {
  grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .frontpage .stories {
    grid-template-columns: 1fr; }
    .frontpage .stories.news {
      grid-template-columns: repeat(2, minmax(0, 1fr)); }
    @media only screen and (min-width: 640px) {
      .frontpage .stories {
        grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .frontpage .stories.news {
          grid-template-columns: repeat(4, minmax(0, 1fr)); } }
  .stories article.story {
    margin-bottom: .75em;
    width: 100%;
    overflow: hidden;
    word-break: break-word; }
    .stories article.story p {
      color: #444; }
    .stories article.story .comments-count {
      color: #f60000; }
    .stories article.story h1 {
      font-size: 1em;
      padding: 0.1em 0; }
      @media only screen and (min-width: 640px) {
        .stories article.story h1 {
          font-size: 1.5em; } }
      .frontpage .stories article.story h1 {
        font-size: 2em;
        padding: 0.2em 0; }
  .stories.news article.story {
    margin-bottom: .5em; }
    .stories.news article.story .excerpt {
      display: none; }
    .stories.news article.story h1 {
      font-size: 1.1em; }
    .stories.news article.story .category-tag {
      display: none; }
  .catlike .stories .story {
    margin-bottom: 2em; }
  .catlike .stories .story h1 {
    font-size: 150%; }
  .catlike .stories .excerpt {
    display: none;
    margin-top: .25em; }
  @media only screen and (min-width: 640px) {
    .catlike .stories {
      grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .catlike .stories .excerpt {
        display: block; }
      .catlike .stories .story h1 {
        font-size: 175%; } }
  @media only screen and (min-width: 1120px) {
    .catlike .stories {
      grid-template-columns: repeat(4, minmax(0, 1fr)); } }

article h1 .comments-count {
  display: none;
  font-weight: normal;
  color: red;
  font-size: 80%; }

.news article h1 .comments-count {
  display: inline; }

.storylist article {
  margin-bottom: calc(1.3 * 20px); }
  .storylist article header {
    margin-top: .2em;
    font-size: 1.1em; }
  @media only screen and (min-width: 900px) {
    .storylist article {
      margin-bottom: calc(1.3 * 25px); } }
  .storylist article:last-child {
    margin-bottom: 20px; }
  .storylist article .category-tag {
    line-height: 18px;
    height: 18px;
    bottom: 9; }
    .category .storylist article .category-tag {
      display: none; }
    .storylist article .category-tag a {
      font-size: 0.9em; }
  .gullkorn .storylist article {
    margin-bottom: calc(1 * 20px);
    border: 1px solid #e2e2e2;
    background: #efefef; }
    @media only screen and (min-width: 900px) {
      .gullkorn .storylist article {
        margin-bottom: calc(1 * 25px); } }
    .gullkorn .storylist article header {
      padding: 0 0.3em 0.3em 0.3em; }
    .gullkorn .storylist article figure.featured {
      width: 101%;
      height: 101%;
      overflow: hidden; }
    .gullkorn .storylist article .category-tag {
      border-radius: 0; }

figure.featured {
  border-radius: 2px;
  overflow: hidden;
  background-color: #e2e2e2; }
  figure.featured img {
    border-radius: 0px; }
  .gullkorn figure.featured img {
    border-radius: 0px 0px 0 0; }
  .storytop figure.featured img,
  .topstory figure.featured img, .category-omakase.archive .stories article.story figure.featured img {
    border-radius: 0; }
  .topstory figure.featured, .category-omakase.archive .stories article.story figure.featured {
    background-color: black; }
  @media only screen and (min-width: 1120px) {
    .topstory figure.featured, .category-omakase.archive .stories article.story figure.featured {
      border-radius: 0 0 0px 0px;
      overflow: hidden; } }

article.story figure.featured {
  position: relative; }
  article.story figure.featured img {
    height: 100%;
    max-height: 100%;
    width: 100%;
    max-width: 100%; }
  article.story figure.featured:after {
    display: block;
    content: '';
    padding-top: 43.06%; }
  article.story figure.featured > *:first-child {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0; }

article.story header {
  position: relative; }
  article.story header .extralabel {
    display: none; }
    .topstory article.story header .extralabel, .category-omakase.archive .stories article.story article.story header .extralabel, .single article.story header .extralabel {
      display: inline; }

.frontpage .topstory,
.frontpage .category-omakase.archive .stories article.story,
.category-omakase.archive .stories .frontpage article.story, .topstory,
.category-omakase.archive .stories article.story,
.single .storytop {
  overflow: hidden;
  margin-bottom: 0;
  background: black; }
  .frontpage .topstory h1,
  .frontpage .category-omakase.archive .stories article.story h1,
  .category-omakase.archive .stories .frontpage article.story h1, .topstory h1,
  .category-omakase.archive .stories article.story h1,
  .single .storytop h1 {
    font-size: 2em;
    padding: 0.2em 0;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto; }
  .frontpage .topstory figure.featured,
  .frontpage .category-omakase.archive .stories article.story figure.featured,
  .category-omakase.archive .stories .frontpage article.story figure.featured, .topstory figure.featured,
  .category-omakase.archive .stories article.story figure.featured,
  .single .storytop figure.featured {
    position: relative; }
    .frontpage .topstory figure.featured img,
    .frontpage .category-omakase.archive .stories article.story figure.featured img,
    .category-omakase.archive .stories .frontpage article.story figure.featured img, .topstory figure.featured img,
    .category-omakase.archive .stories article.story figure.featured img,
    .single .storytop figure.featured img {
      height: 100%;
      max-height: 100%;
      width: 100%;
      max-width: 100%; }
    .frontpage .topstory figure.featured:after,
    .frontpage .category-omakase.archive .stories article.story figure.featured:after,
    .category-omakase.archive .stories .frontpage article.story figure.featured:after, .topstory figure.featured:after,
    .category-omakase.archive .stories article.story figure.featured:after,
    .single .storytop figure.featured:after {
      display: block;
      content: '';
      padding-top: 43.06%; }
    .frontpage .topstory figure.featured > *:first-child,
    .frontpage .category-omakase.archive .stories article.story figure.featured > *:first-child,
    .category-omakase.archive .stories .frontpage article.story figure.featured > *:first-child, .topstory figure.featured > *:first-child,
    .category-omakase.archive .stories article.story figure.featured > *:first-child,
    .single .storytop figure.featured > *:first-child {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0; }
  .frontpage .topstory figure::before,
  .frontpage .category-omakase.archive .stories article.story figure::before,
  .category-omakase.archive .stories .frontpage article.story figure::before, .topstory figure::before,
  .category-omakase.archive .stories article.story figure::before,
  .single .storytop figure::before {
    content: " ";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    pointer-events: none;
    z-index: 1;
    background: transparent url("/wp-content/themes/montages_2020/frontend/images/interface/topstory_gradient_hard.png?4") bottom center repeat-x;
    background-size: auto 140%; }
  .frontpage .topstory h1,
  .frontpage .category-omakase.archive .stories article.story h1,
  .category-omakase.archive .stories .frontpage article.story h1, .frontpage .topstory .category-tag,
  .frontpage .category-omakase.archive .stories article.story .category-tag,
  .category-omakase.archive .stories .frontpage article.story .category-tag, .topstory h1,
  .category-omakase.archive .stories article.story h1,
  .topstory .category-tag,
  .category-omakase.archive .stories article.story .category-tag,
  .single .storytop h1, .single .storytop .category-tag {
    color: white; }
  .frontpage .topstory p,
  .frontpage .category-omakase.archive .stories article.story p,
  .category-omakase.archive .stories .frontpage article.story p, .topstory p,
  .category-omakase.archive .stories article.story p,
  .single .storytop p {
    color: #ccc; }
  .frontpage .topstory .shorttitle .titlewrap,
  .frontpage .category-omakase.archive .stories article.story .shorttitle .titlewrap,
  .category-omakase.archive .stories .frontpage article.story .shorttitle .titlewrap, .topstory .shorttitle .titlewrap,
  .category-omakase.archive .stories article.story .shorttitle .titlewrap,
  .single .storytop .shorttitle .titlewrap {
    font-size: 1.1em; }
  .frontpage .topstory .longtitle .titlewrap,
  .frontpage .category-omakase.archive .stories article.story .longtitle .titlewrap,
  .category-omakase.archive .stories .frontpage article.story .longtitle .titlewrap, .topstory .longtitle .titlewrap,
  .category-omakase.archive .stories article.story .longtitle .titlewrap,
  .single .storytop .longtitle .titlewrap {
    font-size: 0.85em; }
  .frontpage .topstory .extremelylongtitle .titlewrap,
  .frontpage .category-omakase.archive .stories article.story .extremelylongtitle .titlewrap,
  .category-omakase.archive .stories .frontpage article.story .extremelylongtitle .titlewrap, .topstory .extremelylongtitle .titlewrap,
  .category-omakase.archive .stories article.story .extremelylongtitle .titlewrap,
  .single .storytop .extremelylongtitle .titlewrap {
    font-size: 0.6em; }
  @media only screen and (min-width: 640px) {
    .frontpage .topstory .extremelylongtitle .titlewrap,
    .frontpage .category-omakase.archive .stories article.story .extremelylongtitle .titlewrap,
    .category-omakase.archive .stories .frontpage article.story .extremelylongtitle .titlewrap, .topstory .extremelylongtitle .titlewrap,
    .category-omakase.archive .stories article.story .extremelylongtitle .titlewrap,
    .single .storytop .extremelylongtitle .titlewrap {
      font-size: 0.75em; } }
  .frontpage .topstory header,
  .frontpage .category-omakase.archive .stories article.story header,
  .category-omakase.archive .stories .frontpage article.story header, .topstory header,
  .category-omakase.archive .stories article.story header,
  .single .storytop header {
    position: relative;
    background: transparent;
    width: 100%;
    margin-top: -3.01em;
    z-index: 2;
    text-align: center;
    padding: 25px; }
    .frontpage .topstory header p .comments-count,
    .frontpage .category-omakase.archive .stories article.story header p .comments-count,
    .category-omakase.archive .stories .frontpage article.story header p .comments-count, .topstory header p .comments-count,
    .category-omakase.archive .stories article.story header p .comments-count,
    .single .storytop header p .comments-count {
      color: #f60000; }
    .frontpage .topstory header p,
    .frontpage .category-omakase.archive .stories article.story header p,
    .category-omakase.archive .stories .frontpage article.story header p, .topstory header p,
    .category-omakase.archive .stories article.story header p,
    .single .storytop header p {
      margin: 0 auto; }
  @media only screen and (min-width: 376px) {
    .frontpage .topstory header,
    .frontpage .category-omakase.archive .stories article.story header,
    .category-omakase.archive .stories .frontpage article.story header, .topstory header,
    .category-omakase.archive .stories article.story header,
    .single .storytop header {
      margin-top: -4em; }
      .frontpage .topstory header h1,
      .frontpage .category-omakase.archive .stories article.story header h1,
      .category-omakase.archive .stories .frontpage article.story header h1, .topstory header h1,
      .category-omakase.archive .stories article.story header h1,
      .single .storytop header h1 {
        font-size: 2.5em; } }
  @media only screen and (min-width: 640px) {
    .frontpage .topstory header,
    .frontpage .category-omakase.archive .stories article.story header,
    .category-omakase.archive .stories .frontpage article.story header, .topstory header,
    .category-omakase.archive .stories article.story header,
    .single .storytop header {
      margin-top: -5em; }
      .frontpage .topstory header h1,
      .frontpage .category-omakase.archive .stories article.story header h1,
      .category-omakase.archive .stories .frontpage article.story header h1, .topstory header h1,
      .category-omakase.archive .stories article.story header h1,
      .single .storytop header h1 {
        font-size: 2.5em; } }
  @media only screen and (min-width: 900px) {
    .frontpage .topstory header,
    .frontpage .category-omakase.archive .stories article.story header,
    .category-omakase.archive .stories .frontpage article.story header, .topstory header,
    .category-omakase.archive .stories article.story header,
    .single .storytop header {
      margin-top: -6em; }
      .frontpage .topstory header h1,
      .frontpage .category-omakase.archive .stories article.story header h1,
      .category-omakase.archive .stories .frontpage article.story header h1, .topstory header h1,
      .category-omakase.archive .stories article.story header h1,
      .single .storytop header h1 {
        font-size: 3em; } }
  @media only screen and (min-width: 900px) {
    .frontpage .topstory,
    .frontpage .category-omakase.archive .stories article.story,
    .category-omakase.archive .stories .frontpage article.story, .topstory,
    .category-omakase.archive .stories article.story,
    .single .storytop {
      background: transparent;
      position: relative; }
      .frontpage .topstory img,
      .frontpage .category-omakase.archive .stories article.story img,
      .category-omakase.archive .stories .frontpage article.story img, .topstory img,
      .category-omakase.archive .stories article.story img,
      .single .storytop img {
        height: 100%;
        max-height: 100%;
        width: 100%;
        max-width: 100%; }
      .frontpage .topstory:after,
      .frontpage .category-omakase.archive .stories article.story:after,
      .category-omakase.archive .stories .frontpage article.story:after, .topstory:after,
      .category-omakase.archive .stories article.story:after,
      .single .storytop:after {
        display: block;
        content: '';
        padding-top: 43.06%; }
      .frontpage .topstory > *:first-child,
      .frontpage .category-omakase.archive .stories article.story > *:first-child,
      .category-omakase.archive .stories .frontpage article.story > *:first-child, .topstory > *:first-child,
      .category-omakase.archive .stories article.story > *:first-child,
      .single .storytop > *:first-child {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0; }
      .frontpage .topstory header,
      .frontpage .category-omakase.archive .stories article.story header,
      .category-omakase.archive .stories .frontpage article.story header, .topstory header,
      .category-omakase.archive .stories article.story header,
      .single .storytop header {
        position: absolute;
        bottom: 0;
        z-index: 2; }
        .frontpage .topstory header h1,
        .frontpage .category-omakase.archive .stories article.story header h1,
        .category-omakase.archive .stories .frontpage article.story header h1, .topstory header h1,
        .category-omakase.archive .stories article.story header h1,
        .single .storytop header h1 {
          font-size: 3.2em; }
        .frontpage .topstory header h1,
        .frontpage .category-omakase.archive .stories article.story header h1,
        .category-omakase.archive .stories .frontpage article.story header h1, .frontpage .topstory header .category-tag,
        .frontpage .category-omakase.archive .stories article.story header .category-tag,
        .category-omakase.archive .stories .frontpage article.story header .category-tag, .topstory header h1,
        .category-omakase.archive .stories article.story header h1,
        .topstory header .category-tag,
        .category-omakase.archive .stories article.story header .category-tag,
        .single .storytop header h1, .single .storytop header .category-tag {
          color: white !important; }
        .frontpage .topstory header .category-tag,
        .frontpage .category-omakase.archive .stories article.story header .category-tag,
        .category-omakase.archive .stories .frontpage article.story header .category-tag, .topstory header .category-tag,
        .category-omakase.archive .stories article.story header .category-tag,
        .single .storytop header .category-tag {
          font-size: .8em; }
        .frontpage .topstory header p,
        .frontpage .category-omakase.archive .stories article.story header p,
        .category-omakase.archive .stories .frontpage article.story header p, .topstory header p,
        .category-omakase.archive .stories article.story header p,
        .single .storytop header p {
          color: #ccc !important; }
      .frontpage .topstory figure::before,
      .frontpage .category-omakase.archive .stories article.story figure::before,
      .category-omakase.archive .stories .frontpage article.story figure::before, .topstory figure::before,
      .category-omakase.archive .stories article.story figure::before,
      .single .storytop figure::before {
        background-image: url("/wp-content/themes/montages_2020/frontend/images/interface/topstory_gradient_2.png?8") !important;
        background-size: 1px; } }
  @media only screen and (min-width: 1350px) {
    .frontpage .topstory header h1,
    .frontpage .category-omakase.archive .stories article.story header h1,
    .category-omakase.archive .stories .frontpage article.story header h1, .topstory header h1,
    .category-omakase.archive .stories article.story header h1,
    .single .storytop header h1 {
      font-size: 3.5em; } }

.single .storytop header {
  padding: 20px 25px; }
  .single .storytop header .category-tag {
    display: none;
    text-align: center;
    width: 100%;
    position: relative;
    top: -1em;
    margin-bottom: -1.5em; }
    .single .storytop header .category-tag a {
      background: rgba(0, 0, 0, 0.4); }
    .single .storytop header .category-tag a:hover {
      background: rgba(50, 50, 50, 0.6); }
  .single .storytop header .titlewrap {
    max-width: 60em;
    margin: 0 auto; }

.frontpage .topstory .category-tag, .frontpage .category-omakase.archive .stories article.story .category-tag, .category-omakase.archive .stories .frontpage article.story .category-tag {
  display: none; }

.single .content .storysubtop {
  background-color: #f5f5f5;
  font-size: 0.9em; }
  .single .content .storysubtop .wp-caption-text {
    color: #777;
    background-color: #efefef; }
    @media only screen and (min-width: 900px) {
      .single .content .storysubtop .wp-caption-text {
        display: none; } }

.single .content .wp-caption-text {
  text-align: center;
  color: #4d4d4d;
  background-color: #efefef;
  padding: 0.4em 1em; }
  .single .content .wp-caption-text .inner {
    margin: 0 auto;
    max-width: 1120px;
    font-size: 0.7em; }

.single .content .hide {
  display: none; }

.story-content {
  padding: 20px;
  max-width: 40em;
  margin: 0 auto; }
  .story-content * {
    height: auto;
    max-width: 100%; }
  @media only screen and (min-width: 900px) {
    .story-content {
      padding: 0; } }
  .story-content p {
    display: block;
    padding-bottom: 1em; }
  .story-content .wp-caption {
    font-size: 0;
    margin-bottom: calc(1 * 20px); }
    @media only screen and (min-width: 900px) {
      .story-content .wp-caption {
        margin-bottom: calc(1 * 25px); } }
    .story-content .wp-caption .wp-caption-text {
      font-size: .8rem;
      line-height: 1.6; }
  .story-content h1, .story-content h2, .story-content h3, .story-content h4, .story-content h5, .story-content h6 {
    font-size: 1.7em;
    margin: 0.5em 0 0.25em 0; }
  .story-content h1 {
    font-size: 2.5em; }
  .story-content small {
    font-size: 75%; }
  .story-content a {
    font-weight: bold;
    color: #f60000; }
  .story-content p > img, .story-content p > a > img {
    margin-top: 1em; }
  .story-content sup {
    font-size: 75%;
    position: relative;
    top: -0.5em; }
  .story-content .alignleft, .story-content .alignright {
    align: center;
    margin-left: auto;
    margin-right: auto;
    clear: both; }
  .story-content .alignleft, .story-content .alignright {
    width: auto; }
  .story-content .alignleft {
    float: left;
    margin-top: calc(0.2 * 20px);
    margin-bottom: calc(1 * 20px);
    margin-right: calc(1 * 20px);
    margin-left: calc(0 * 20px); }
    @media only screen and (min-width: 900px) {
      .story-content .alignleft {
        margin-top: calc(0.2 * 25px); } }
    @media only screen and (min-width: 900px) {
      .story-content .alignleft {
        margin-bottom: calc(1 * 25px); } }
    @media only screen and (min-width: 900px) {
      .story-content .alignleft {
        margin-right: calc(1 * 25px); } }
    @media only screen and (min-width: 900px) {
      .story-content .alignleft {
        margin-left: calc(0 * 25px); } }
  .story-content .alignright {
    float: right;
    margin-top: calc(0.2 * 20px);
    margin-bottom: calc(1 * 20px);
    margin-right: calc(0 * 20px);
    margin-left: calc(1 * 20px); }
    @media only screen and (min-width: 900px) {
      .story-content .alignright {
        margin-top: calc(0.2 * 25px); } }
    @media only screen and (min-width: 900px) {
      .story-content .alignright {
        margin-bottom: calc(1 * 25px); } }
    @media only screen and (min-width: 900px) {
      .story-content .alignright {
        margin-right: calc(0 * 25px); } }
    @media only screen and (min-width: 900px) {
      .story-content .alignright {
        margin-left: calc(1 * 25px); } }
  .story-content
ul.filmlist li {
    margin-bottom: 1em; }
    .story-content
ul.filmlist li a {
      color: black !important; }
      .story-content
ul.filmlist li a:hover {
        color: #f60000 !important; }
    .story-content
ul.filmlist li > a:first-child {
      font-size: 1.2em;
      display: block;
      color: #f60000 !important; }
  .story-content .mmdb-widget.listitem {
    margin: 2em 0 1em 0; }
    .story-content .mmdb-widget.listitem header {
      background: #222;
      overflow: hidden; }
      .story-content .mmdb-widget.listitem header h2 {
        color: white;
        margin: 0; }
        .story-content .mmdb-widget.listitem header h2 span {
          background: red;
          padding: 0 0.25em;
          margin-right: .25em; }
        .story-content .mmdb-widget.listitem header h2 a {
          color: inherit;
          font-weight: normal;
          display: inline-block;
          width: 100%; }
    .story-content .mmdb-widget.listitem figure {
      position: relative; }
      .story-content .mmdb-widget.listitem figure img {
        height: 100%;
        max-height: 100%;
        width: 100%;
        max-width: 100%; }
      .story-content .mmdb-widget.listitem figure:after {
        display: block;
        content: '';
        padding-top: 43.06%; }
      .story-content .mmdb-widget.listitem figure > *:first-child {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0; }
    .story-content .mmdb-widget.listitem .info {
      display: flex;
      flex-direction: row;
      background: #e2e2e2;
      font-size: .8em;
      width: 100%; }
      .story-content .mmdb-widget.listitem .info > div {
        width: 50%;
        padding: .5em; }
        .story-content .mmdb-widget.listitem .info > div.left {
          text-align: left; }
        .story-content .mmdb-widget.listitem .info > div.right {
          text-align: right; }
        .story-content .mmdb-widget.listitem .info > div a {
          color: black; }
    .story-content .mmdb-widget.listitem .info.buttons {
      background: #efefef;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-content: center;
      justify-content: center; }
      .story-content .mmdb-widget.listitem .info.buttons .button, .story-content .mmdb-widget.listitem .info.buttons .comment .comment-reply-link, .comment .story-content .mmdb-widget.listitem .info.buttons .comment-reply-link {
        background: white;
        color: #222;
        margin-left: .25em;
        margin-right: .25em; }
    @media only screen and (min-width: 640px) {
      .story-content .mmdb-widget.listitem.mini {
        font-size: 90%;
        min-height: 100px;
        position: relative; }
        .story-content .mmdb-widget.listitem.mini header, .story-content .mmdb-widget.listitem.mini .info {
          width: 69%; }
        .story-content .mmdb-widget.listitem.mini figure {
          width: 31%;
          top: 0;
          left: 69%;
          position: absolute;
          border-left: 4px solid white;
          z-index: 9999; }
        .story-content .mmdb-widget.listitem.mini .info.buttons {
          display: none; }
        .story-content .mmdb-widget.listitem.mini .info {
          display: block;
          padding: .2em; }
          .story-content .mmdb-widget.listitem.mini .info > div {
            float: none;
            width: 100%;
            text-align: left;
            line-height: 1; } }
  .story-content ul, .story-content ol {
    padding-left: 3em;
    margin-bottom: 1em; }
    .story-content ul li, .story-content ol li {
      margin-bottom: .5em; }
  .story-content ul {
    list-style-type: disc; }
  .story-content ol {
    list-style-type: decimal; }
  .story-content blockquote {
    font-size: 0.9em;
    padding: 20px; }
    @media only screen and (min-width: 900px) {
      .story-content blockquote {
        padding: 20px 60px; } }
    .story-content blockquote p {
      color: #555555;
      font-style: italic; }

.substory_navigation {
  background: #efefef;
  padding: 20px;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 1em; }
  .substory_navigation p {
    margin: .25em 0; }
  .substory_navigation a {
    color: #f60000;
    font-weight: bold; }
  .substory_navigation a.next_substory_button {
    color: inherit;
    font-weight: inherit; }
    .substory_navigation a.next_substory_button span {
      color: #f60000;
      font-weight: bold; }
  .substory_navigation select {
    padding: .25em; }
  .substory_navigation li {
    margin-left: 1.5em;
    list-style: disc; }

.filmfrelst-subscribe {
  text-align: left;
  margin: 0 auto 1.5em 0; }
  .filmfrelst-subscribe a {
    color: #f60000;
    font-weight: bold; }

#comments h3 {
  font-weight: normal; }

#comments .printLink {
  display: inline-block;
  float: right; }

.comment {
  padding: 1em;
  margin: 1em 0;
  border: 1px solid #efefef; }
  .comment:nth-child(odd) {
    background: #efefef; }
    .comment:nth-child(odd) .comment:nth-child(odd) {
      background: white; }
    .comment:nth-child(odd) .comment:nth-child(even) {
      background: #efefef; }
  .comment:nth-child(even) {
    background: white; }
    .comment:nth-child(even) .comment:nth-child(odd) {
      background: #efefef; }
    .comment:nth-child(even) .comment:nth-child(even) {
      background: white; }
  .comment .comment {
    margin: 1em 0.5em 0.5em 1.5em; }
  .comment .comment-author img {
    display: inline-block;
    float: left;
    margin: -0.25em 0.75em 0.5em 0; }
  .comment .comment-author {
    padding-top: .25em; }
  .comment .comment-meta {
    font-size: .7em; }
  .comment p {
    clear: left;
    margin-top: 1em; }
  .comment p a,
  .comment .comment-author a {
    font-weight: bold;
    color: #f60000; }
  .comment .comment-reply-link {
    width: auto;
    display: inline-block !important;
    font-size: .7em;
    margin-bottom: -.5em !important; }

#respond {
  margin-top: 1em; }
  #respond fieldset {
    width: 100%; }
    #respond fieldset a {
      font-weight: bold; }
  #respond .field {
    margin: 1em 0; }
  #respond input {
    float: left;
    clear: left;
    margin-right: .5em;
    width: 200px; }
  #respond input, #respond label {
    display: block;
    height: 30px;
    line-height: 30px; }
  #respond label {
    font-size: .8em; }
  #respond textarea {
    display: block;
    clear: both;
    width: 100%;
    min-height: 150px;
    margin: .5em 0; }
  #respond .legend {
    font-size: .7em;
    border-bottom: 1px dotted #e2e2e2;
    float: right;
    display: inline-block;
    clear: both; }
  #respond input[name="submit"] {
    display: inline-block;
    margin-bottom: 1em; }
  #respond #HTML_legend {
    clear: both;
    margin-top: .5em;
    border: 1px solid #efefef;
    font-size: 0.8em;
    padding: 1em; }
  #respond .cancel-comment-reply {
    font-size: .7em;
    font-weight: bold; }

.comment #respond h3 {
  display: none; }

aside.mmdb .inner {
  background: #efefef; }

.story-asides {
  margin-top: 50px; }

aside.author {
  font-size: 0.8em; }
  aside.author .inner {
    min-height: 100px;
    background: #efefef;
    padding: 20px; }
  aside.author figure {
    display: none; }
    @media only screen and (min-width: 1120px) {
      aside.author figure {
        margin-bottom: .5em;
        max-width: 70px;
        display: inline-block;
        float: right;
        margin-left: .25em;
        margin-bottom: -25px;
        position: relative;
        top: -25px;
        right: -25px; } }

aside.share {
  font-size: 0.8em;
  border: 1px solid #efefef; }
  aside.share .inner {
    border: 0;
    padding: 20px 25px; }
  aside.share .murl {
    border: 0;
    background-color: white;
    display: block;
    margin: 0 auto;
    margin-top: -.5em;
    text-align: center;
    color: #4d4d4d; }
  aside.share .share {
    height: 2em; }
    aside.share .share a {
      line-height: 2em; }
    aside.share .share img {
      padding-right: .5em;
      padding-left: 1em;
      position: relative;
      top: .25em; }

aside.caption .inner {
  background: #efefef;
  font-size: 0.7em;
  padding: 1em 1.5em;
  font-style: italic;
  text-align: left;
  margin-top: -50px;
  color: #4d4d4d; }

.story-asides aside.category .button.catlink, .story-asides aside.category .comment .catlink.comment-reply-link, .comment .story-asides aside.category .catlink.comment-reply-link {
  margin: -2.5em 25px 0 25px;
  background: #f60000;
  color: white;
  text-transform: capitalize; }
  @media only screen and (min-width: 1120px) {
    .story-asides aside.category .button.catlink, .story-asides aside.category .comment .catlink.comment-reply-link, .comment .story-asides aside.category .catlink.comment-reply-link {
      text-transform: none; } }

.story-asides aside.category .button, .story-asides aside.category .comment .comment-reply-link, .comment .story-asides aside.category .comment-reply-link {
  background: white;
  border: 0 !important; }

.story-asides aside.category .inner {
  background: #efefef;
  overflow: visible; }
  .story-asides aside.category .inner > p {
    font-size: .8em;
    padding: 20px 20px 0.3em 20px; }
    .story-asides aside.category .inner > p a {
      font-weight: bold;
      color: #f60000; }

.story-asides aside.category .storylist {
  padding-top: 1em; }

aside.related {
  margin-top: 1.5em; }
  aside.related::before {
    content: "Relaterte saker";
    background: white;
    color: #444;
    font-size: 0.8em;
    text-transform: uppercase;
    display: block;
    padding: 0 0.7em;
    position: absolute;
    top: -.7em; }

aside#comments {
  margin-top: 1.5em; }
  aside#comments::before {
    content: "Diskusjon";
    background: white;
    color: #444;
    font-size: 0.8em;
    text-transform: uppercase;
    display: block;
    padding: 0 0.7em;
    position: absolute;
    top: -.7em; }

.single-news .content,
.single-post .content {
  row-gap: 0;
  grid-template-columns: minmax(0, 100vw);
  grid-template-areas: "   storytop    "         "   storysubtop "         "   storymain   "; }
  .single-news .content .storytop,
  .single-post .content .storytop {
    grid-area: storytop; }
  .single-news .content .storysubtop,
  .single-post .content .storysubtop {
    grid-area: storysubtop; }
  .single-news .content .story-main,
  .single-post .content .story-main {
    grid-area: storymain;
    padding: 0 0.5em;
    margin-top: calc(0.4 * 20px);
    width: 100%;
    max-width: 40em;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden; }
    @media only screen and (min-width: 900px) {
      .single-news .content .story-main,
      .single-post .content .story-main {
        margin-top: calc(0.4 * 25px); } }
  .single-news .content .sidebar-1,
  .single-post .content .sidebar-1 {
    grid-area: side-1; }
  .single-news .content .story-asides-1,
  .single-post .content .story-asides-1 {
    grid-area: asides-1; }
  .single-news .content .story-asides-2,
  .single-post .content .story-asides-2 {
    grid-area: asides-2; }
  .single-news .content .sidebar,
  .single-post .content .sidebar {
    display: none; }
  @media only screen and (min-width: 900px) {
    .single-news .content,
    .single-post .content {
      grid-template-columns: 200px 1fr 200px;
      grid-template-areas: "   storytop        storytop        storytop    "             "   storysubtop     storysubtop     storysubtop "                         "   asides-1        storymain       asides-2    "; }
      .single-news .content .story-asides-1,
      .single-post .content .story-asides-1 {
        display: flex;
        padding-left: 25px; }
      .single-news .content .story-asides-2,
      .single-post .content .story-asides-2 {
        display: flex;
        padding-right: 25px; }
      .single-news .content .story-main,
      .single-post .content .story-main {
        margin-top: 2.5em; } }
  @media only screen and (min-width: 1120px) {
    .single-news .content,
    .single-post .content {
      grid-template-columns: minmax(200px, 250px) 1fr minmax(200px, 250px);
      grid-template-areas: "   storytop        storytop        storytop    "             "   storysubtop     storysubtop     storysubtop "                         "   asides-1        storymain       asides-2    "; } }
  .single-news .content article,
  .single-post .content article {
    max-width: 40em;
    margin-left: auto;
    margin-right: auto; }
  .single-news .content .storytop .byline,
  .single-post .content .storytop .byline {
    color: #888;
    font-size: 0.8em; }
    .single-news .content .storytop .byline hr,
    .single-post .content .storytop .byline hr {
      display: none; }
    .single-news .content .storytop .byline .author-name,
    .single-post .content .storytop .byline .author-name {
      padding: 0 0.2em; }
      .single-news .content .storytop .byline .author-name a,
      .single-post .content .storytop .byline .author-name a {
        color: #aaa; }
        .single-news .content .storytop .byline .author-name a:hover,
        .single-post .content .storytop .byline .author-name a:hover {
          color: #f60000; }

article header > p.byline {
  display: none; }

article .header-wrap {
  position: relative; }

article .category-tag {
  font-size: 0.7em;
  line-height: 20px;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: 0; }
  article .category-tag a {
    border-radius: 0 0 0 0px;
    background: #f60000;
    color: white;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 0.7em; }
    article .category-tag a:hover {
      background: rgba(0, 0, 0, 0.7); }

.article-with-byline, .category-analysen.archive .stories article.story,
.category-coupdecoeur.archive .stories article.story {
  background: #efefef;
  border: 1px solid #e2e2e2;
  border-radius: 4px; }
  .article-with-byline header, .category-analysen.archive .stories article.story header,
  .category-coupdecoeur.archive .stories article.story header {
    padding: 0.25em 0.5em 0.5em 0.5em; }
    .article-with-byline header p.byline, .category-analysen.archive .stories article.story header p.byline,
    .category-coupdecoeur.archive .stories article.story header p.byline {
      display: block;
      margin-top: .25em;
      font-size: 0.7em;
      color: #999; }
      .article-with-byline header p.byline a, .category-analysen.archive .stories article.story header p.byline a,
      .category-coupdecoeur.archive .stories article.story header p.byline a {
        color: #222;
        font-weight: normal; }
        .article-with-byline header p.byline a:hover, .category-analysen.archive .stories article.story header p.byline a:hover,
        .category-coupdecoeur.archive .stories article.story header p.byline a:hover {
          color: #f60000; }
    .article-with-byline header h1, .category-analysen.archive .stories article.story header h1,
    .category-coupdecoeur.archive .stories article.story header h1 {
      font-size: 1.5em; }

aside.mmdb {
  overflow: hidden; }
  aside.mmdb .inner {
    padding-top: 0; }

.mmdb article .details {
  padding: 0 1em 0.5em 1em;
  font-size: .8em; }
  .mmdb article .details > div {
    margin-bottom: 1em; }
  .mmdb article .details ul a {
    color: #f60000; }

.mmdb article h2 {
  font-size: 1.4em;
  margin-bottom: 1em; }
  .mmdb article h2 span {
    display: block;
    font-size: .7em;
    font-weight: normal; }

.mmdb article h4 {
  font-size: .85em;
  text-transform: uppercase;
  color: #777; }

.mmdb article .button, .mmdb article .comment .comment-reply-link, .comment .mmdb article .comment-reply-link {
  font-weight: bold;
  background: white;
  font-size: .8em; }

figure.videothumb {
  position: relative;
  cursor: pointer; }

figure.videothumb:after {
  content: " ";
  display: block;
  background: url("/wp-content/themes/montages_2020/frontend/images/interface/play.png") center center no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: 40%;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  -webkit-opacity: 0.3;
  opacity: 0.3;
  pointer-events: none; }
  .mmdb figure.videothumb:after {
    position: absolute; }

figure.videothumb:hover:after {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7; }

.listitem figure.videothumb:after {
  background-size: 25% !important; }

.page article {
  margin: 25px auto;
  max-width: 45em; }
  .page article h1 {
    font-size: 2em;
    margin-bottom: 1em; }

.frontpage {
  grid-template-columns: 1fr;
  grid-template-areas: "   topstory    "         "   main     "; }
  .frontpage .topstory, .frontpage .category-omakase.archive .stories article.story, .category-omakase.archive .stories .frontpage article.story {
    grid-area: topstory; }
  .frontpage .main {
    grid-area: main;
    background: white;
    margin: 0 20px;
    min-height: 300px; }
  .frontpage .sidebar {
    margin-right: calc(1 * 20px); }
    @media only screen and (min-width: 900px) {
      .frontpage .sidebar {
        margin-right: calc(1 * 25px); } }
  .frontpage .sidebar-1 {
    grid-area: sidebar-1; }
  .frontpage .sidebar-2 {
    grid-area: sidebar-2; }
  .frontpage .sidebar-2, .frontpage .sidebar-1 {
    display: none; }
  @media only screen and (min-width: 900px) {
    .frontpage {
      grid-template-columns: 1fr 205px;
      grid-template-areas: "   topstory    topstory "         "   main        sidebar-1  "; }
      .frontpage .main {
        margin-right: 0;
        margin-left: 25px; }
      .frontpage .sidebar-1 {
        display: flex;
        margin-top: -20px; } }
  @media only screen and (min-width: 1120px) {
    .frontpage {
      grid-template-columns: 205px 1fr 205px;
      grid-template-areas: "   topstory    topstory    sidebar-1  "         "   sidebar-2   main        sidebar-1  "; }
      .frontpage .main {
        margin-left: 0; }
      .frontpage .sidebar-2 {
        display: flex;
        margin-left: 25px;
        margin-top: 0;
        margin-right: 0; }
      .frontpage .sidebar-1 {
        margin-top: 25px; } }
  @media only screen and (min-width: 900px) {
    .frontpage .main .adspace,
    .frontpage .main .custom-adspace {
      display: none; } }
  .frontpage .main .adspace .ad180 {
    margin-top: calc(0.5 * 20px);
    margin-bottom: calc(0.5 * 20px);
    margin-right: calc(0.5 * 20px);
    margin-left: calc(0.5 * 20px); }
    @media only screen and (min-width: 900px) {
      .frontpage .main .adspace .ad180 {
        margin-top: calc(0.5 * 25px); } }
    @media only screen and (min-width: 900px) {
      .frontpage .main .adspace .ad180 {
        margin-bottom: calc(0.5 * 25px); } }
    @media only screen and (min-width: 900px) {
      .frontpage .main .adspace .ad180 {
        margin-right: calc(0.5 * 25px); } }
    @media only screen and (min-width: 900px) {
      .frontpage .main .adspace .ad180 {
        margin-left: calc(0.5 * 25px); } }

.catlike .main > .content {
  padding-top: calc(1 * 20px);
  padding-bottom: calc(1 * 20px);
  padding-right: calc(1 * 20px);
  padding-left: calc(1 * 20px); }
  @media only screen and (min-width: 900px) {
    .catlike .main > .content {
      padding-top: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .catlike .main > .content {
      padding-bottom: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .catlike .main > .content {
      padding-right: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .catlike .main > .content {
      padding-left: calc(1 * 25px); } }

.catlike .main > .content .category-tag {
  display: none; }

.home.paged.catlike .main > .content .category-tag {
  display: block; }

.category-header, .catlike .main > .content > header {
  padding: 25px;
  text-align: center;
  max-width: 40em;
  margin: 0 auto; }
  .category-header h1, .catlike .main > .content > header h1 {
    font-size: 2em;
    margin-bottom: .5em; }
  .category-header a, .catlike .main > .content > header a {
    color: #f60000;
    font-weight: bold; }
  .category-header .note, .catlike .main > .content > header .note {
    margin-top: 2em;
    font-size: 0.8em;
    font-style: italic; }

.pagination {
  margin: 2em auto;
  text-align: center;
  font-size: .8em;
  font-weight: bold; }
  .pagination .navbar > * {
    display: inline-block;
    margin: .2em;
    background: #efefef;
    padding: 0.25em 0.75em;
    border-radius: 4px; }
    .pagination .navbar > *.filler {
      background: transparent; }
    .pagination .navbar > *:first-child,
    .pagination .navbar > *.current {
      background: #f60000;
      color: white; }
    .pagination .navbar > *.active:hover {
      background: #ddd; }

.category-omakase.archive {
  background: #0f0f0f; }
  .category-omakase.archive .main > .content {
    background: #0f0f0f;
    box-shadow: none; }
    .category-omakase.archive .main > .content > header h1 {
      color: white;
      font-style: italic;
      font-weight: normal; }
    .category-omakase.archive .main > .content > header p {
      color: #aaa; }
  .category-omakase.archive .stories {
    display: block;
    margin: 0 auto;
    max-width: 48em;
    padding: 0 1em; }
    .category-omakase.archive .stories article.story {
      margin: 3em 0;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #222; }
      .category-omakase.archive .stories article.story:hover {
        border-color: #2f2f2f; }
      .category-omakase.archive .stories article.story header p {
        color: #aaa; }
      .category-omakase.archive .stories article.story header h1 {
        font-size: 2em; }
        @media only screen and (min-width: 900px) {
          .category-omakase.archive .stories article.story header h1 {
            font-size: 2.5em; } }
    .category-omakase.archive .stories hr {
      background: #333; }

.category-analysen.archive .stories,
.category-coupdecoeur.archive .stories {
  margin-bottom: 6em; }
  .category-analysen.archive .stories article.story,
  .category-coupdecoeur.archive .stories article.story {
    margin-bottom: 0;
    overflow: hidden; }

.category-analysen.archive .analysen-content {
  grid-template-columns: 1fr; }
  @media only screen and (min-width: 900px) {
    .category-analysen.archive .analysen-content {
      grid-template-columns: 1fr 4fr; } }

.category-analysen.archive header.year {
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #ddd;
  margin: 2em 0 1em 0; }
  .category-analysen.archive header.year h3 {
    font-size: 2.5em;
    position: relative;
    top: -.1em;
    margin-bottom: -.1em;
    text-align: center;
    width: 100%; }

.category-analysen.archive .authors {
  display: none;
  padding: 1em 0;
  border-radius: 4px; }
  @media only screen and (min-width: 900px) {
    .category-analysen.archive .authors {
      display: block; } }
  .category-analysen.archive .authors h3 {
    margin-bottom: 1em; }
  .category-analysen.archive .authors li {
    font-size: .9em;
    line-height: 1.2;
    margin-bottom: .7em; }
    .category-analysen.archive .authors li a {
      color: #f60000;
      font-weight: normal; }

.single-film .content .mmdb article,
.filmperson.content .mmdb article {
  width: 100%; }

.single-film .content .main,
.filmperson.content .main {
  position: relative;
  top: -50px;
  margin-top: calc(0 * 20px);
  margin-bottom: calc(1 * 20px);
  margin-right: calc(1 * 20px);
  margin-left: calc(1 * 20px); }
  @media only screen and (min-width: 900px) {
    .single-film .content .main,
    .filmperson.content .main {
      margin-top: calc(0 * 25px); } }
  @media only screen and (min-width: 900px) {
    .single-film .content .main,
    .filmperson.content .main {
      margin-bottom: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .single-film .content .main,
    .filmperson.content .main {
      margin-right: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .single-film .content .main,
    .filmperson.content .main {
      margin-left: calc(1 * 25px); } }
  .single-film .content .main > header,
  .filmperson.content .main > header {
    text-align: center;
    margin: 1em 0 2em 0; }
    .single-film .content .main > header h1,
    .filmperson.content .main > header h1 {
      font-size: 1.5em;
      font-weight: bold; }
    .single-film .content .main > header h3,
    .filmperson.content .main > header h3 {
      ffont-weight: normal;
      color: #999; }
    .single-film .content .main > header h4,
    .filmperson.content .main > header h4 {
      color: #666; }
    .single-film .content .main > header a,
    .filmperson.content .main > header a {
      font-weight: bold; }
  .single-film .content .main .stories article h1,
  .filmperson.content .main .stories article h1 {
    font-size: 1.5em;
    margin: 0.15em 0; }

@media only screen and (min-width: 640px) {
  .single-film .content,
  .filmperson.content {
    grid-template-columns: 200px 1fr;
    grid-template-areas: "	sidebar		main     "; }
    .single-film .content .sidebar,
    .filmperson.content .sidebar {
      grid-area: sidebar;
      margin-top: calc(1 * 20px);
      margin-bottom: calc(0 * 20px);
      margin-right: calc(0 * 20px);
      margin-left: calc(1 * 20px); } }
    @media only screen and (min-width: 640px) and (min-width: 900px) {
      .single-film .content .sidebar,
      .filmperson.content .sidebar {
        margin-top: calc(1 * 25px); } }
    @media only screen and (min-width: 640px) and (min-width: 900px) {
      .single-film .content .sidebar,
      .filmperson.content .sidebar {
        margin-bottom: calc(0 * 25px); } }
    @media only screen and (min-width: 640px) and (min-width: 900px) {
      .single-film .content .sidebar,
      .filmperson.content .sidebar {
        margin-right: calc(0 * 25px); } }
    @media only screen and (min-width: 640px) and (min-width: 900px) {
      .single-film .content .sidebar,
      .filmperson.content .sidebar {
        margin-left: calc(1 * 25px); } }

@media only screen and (min-width: 640px) {
    .single-film .content .main,
    .filmperson.content .main {
      top: 0;
      grid-area: main;
      margin-top: calc(1 * 20px);
      margin-bottom: calc(1 * 20px);
      margin-right: calc(1 * 20px);
      margin-left: calc(0 * 20px); }
      .single-film .content .main .mmdb article,
      .filmperson.content .main .mmdb article {
        width: default; }
      .single-film .content .main > header h1,
      .filmperson.content .main > header h1 {
        font-size: 3em; } }
    @media only screen and (min-width: 640px) and (min-width: 900px) {
      .single-film .content .main,
      .filmperson.content .main {
        margin-top: calc(1 * 25px); } }
    @media only screen and (min-width: 640px) and (min-width: 900px) {
      .single-film .content .main,
      .filmperson.content .main {
        margin-bottom: calc(1 * 25px); } }
    @media only screen and (min-width: 640px) and (min-width: 900px) {
      .single-film .content .main,
      .filmperson.content .main {
        margin-right: calc(1 * 25px); } }
    @media only screen and (min-width: 640px) and (min-width: 900px) {
      .single-film .content .main,
      .filmperson.content .main {
        margin-left: calc(0 * 25px); } }

@media only screen and (min-width: 640px) {
      .single-film .content .main .stories,
      .filmperson.content .main .stories {
        grid-template-columns: 1fr; }
        .single-film .content .main .stories .excerpt,
        .filmperson.content .main .stories .excerpt {
          display: none; } }
      @media only screen and (min-width: 640px) and (min-width: 640px) {
        .single-film .content .main .stories,
        .filmperson.content .main .stories {
          grid-template-columns: 1fr 1fr; }
          .single-film .content .main .stories .excerpt,
          .filmperson.content .main .stories .excerpt {
            display: block; } }
      @media only screen and (min-width: 640px) and (min-width: 900px) {
        .single-film .content .main .stories,
        .filmperson.content .main .stories {
          grid-template-columns: 1fr 1fr 1fr; }
          .single-film .content .main .stories article h1,
          .filmperson.content .main .stories article h1 {
            font-size: 1.6em; } }
      @media only screen and (min-width: 640px) and (min-width: 1350px) {
        .single-film .content .main .stories,
        .filmperson.content .main .stories {
          grid-template-columns: 1fr 1fr 1fr 1fr; } }

.single-film .content .button.moredetails, .single-film .content .comment .moredetails.comment-reply-link, .comment .single-film .content .moredetails.comment-reply-link {
  display: none; }

.searchresults {
  margin-top: calc(1 * 20px);
  margin-bottom: calc(1 * 20px);
  margin-right: calc(1 * 20px);
  margin-left: calc(1 * 20px); }
  @media only screen and (min-width: 900px) {
    .searchresults {
      margin-top: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .searchresults {
      margin-bottom: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .searchresults {
      margin-right: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .searchresults {
      margin-left: calc(1 * 25px); } }
  @media only screen and (min-width: 640px) {
    .searchresults {
      margin-top: calc(0 * 20px);
      margin-bottom: calc(0 * 20px);
      margin-right: calc(0 * 20px);
      margin-left: calc(0 * 20px);
      grid-template-columns: 180px 1fr;
      grid-template-areas: "	sidebar		main     "; } }
  @media only screen and (min-width: 640px) and (min-width: 900px) {
    .searchresults {
      margin-top: calc(0 * 25px); } }
  @media only screen and (min-width: 640px) and (min-width: 900px) {
    .searchresults {
      margin-bottom: calc(0 * 25px); } }
  @media only screen and (min-width: 640px) and (min-width: 900px) {
    .searchresults {
      margin-right: calc(0 * 25px); } }
  @media only screen and (min-width: 640px) and (min-width: 900px) {
    .searchresults {
      margin-left: calc(0 * 25px); } }
  @media only screen and (min-width: 640px) {
      .searchresults .main {
        grid-area: main;
        margin-right: calc(1 * 20px); } }
    @media only screen and (min-width: 640px) and (min-width: 900px) {
      .searchresults .main {
        margin-right: calc(1 * 25px); } }
  @media only screen and (min-width: 640px) {
      .searchresults .people {
        grid-area: sidebar;
        margin-left: calc(1 * 20px); } }
    @media only screen and (min-width: 640px) and (min-width: 900px) {
      .searchresults .people {
        margin-left: calc(1 * 25px); } }
  @media only screen and (min-width: 640px) {
      .searchresults.nopeople {
        grid-template-columns: 1fr;
        grid-template-areas: "	main     "; }
        .searchresults.nopeople .main {
          margin-right: calc(1 * 20px);
          margin-left: calc(1 * 20px); } }
      @media only screen and (min-width: 640px) and (min-width: 900px) {
        .searchresults.nopeople .main {
          margin-right: calc(1 * 25px); } }
      @media only screen and (min-width: 640px) and (min-width: 900px) {
        .searchresults.nopeople .main {
          margin-left: calc(1 * 25px); } }
  .searchresults .main {
    margin-top: .5em; }
    .searchresults .main > header h1 {
      text-align: center;
      font-size: 1.5em;
      margin: 1em 0; }
    .searchresults .main > p {
      width: 100%;
      text-align: center; }
    .searchresults .main .movies {
      width: 100%;
      margin: 25px auto;
      grid-template-columns: 1fr;
      border-bottom: 1px solid #e2e2e2; }
      @media only screen and (min-width: 376px) {
        .searchresults .main .movies {
          grid-template-columns: 1fr 1fr; } }
      @media only screen and (min-width: 640px) {
        .searchresults .main .movies {
          grid-template-columns: 1fr 1fr 1fr; } }
      @media only screen and (min-width: 900px) {
        .searchresults .main .movies {
          grid-template-columns: 1fr 1fr 1fr 1fr; } }
      @media only screen and (min-width: 1120px) {
        .searchresults .main .movies {
          grid-template-columns: 1fr 1fr 1fr 1fr 1fr; } }
      @media only screen and (min-width: 1350px) {
        .searchresults .main .movies {
          grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; } }
    .searchresults .main .stories {
      grid-template-columns: 1fr; }
      .searchresults .main .stories .excerpt {
        display: none; }
      .searchresults .main .stories article h1 {
        font-size: 1.5em;
        margin: 0.15em 0; }
      @media only screen and (min-width: 640px) {
        .searchresults .main .stories {
          grid-template-columns: 1fr 1fr; }
          .searchresults .main .stories .excerpt {
            display: block; } }
      @media only screen and (min-width: 900px) {
        .searchresults .main .stories {
          grid-template-columns: 1fr 1fr 1fr; }
          .searchresults .main .stories article h1 {
            font-size: 1.6em; } }
      @media only screen and (min-width: 1350px) {
        .searchresults .main .stories {
          grid-template-columns: 1fr 1fr 1fr 1fr; } }
  .searchresults .people {
    margin-top: 1em; }
    .searchresults .people h2 {
      margin: 1.5em 0 0.5em 0; }
    .searchresults .people a {
      display: block;
      color: #f60000;
      margin-top: .25em; }

.page-info {
  padding: 25px; }
  .page-info > section {
    margin-bottom: 3em; }
    @media only screen and (min-width: 900px) {
      .page-info > section {
        width: 70%;
        float: left;
        padding-right: 50px;
        overflow: hidden; } }
    .page-info > section header h2 {
      font-size: 1.5em; }
  .page-info .about {
    max-width: 45em; }
    .page-info .about h1 {
      font-size: 2.5em;
      margin-bottom: .15em; }
    .page-info .about h4 {
      font-size: 1.25em;
      margin-bottom: 1em; }
    .page-info .about p {
      margin-bottom: 1em; }
  .page-info .partners {
    border-radius: 4px;
    background: #efefef;
    padding: 10px;
    text-align: center; }
    .page-info .partners li {
      width: 100%;
      background: white;
      margin: 10px auto;
      padding: 5px;
      border-radius: 4px; }
    @media only screen and (min-width: 900px) {
      .page-info .partners {
        width: 30%;
        float: right; } }
  .page-info .crew ul {
    display: grid;
    width: 100%;
    gap: 1em;
    grid-template-columns: 1fr 1fr; }
    @media only screen and (min-width: 640px) {
      .page-info .crew ul {
        grid-template-columns: 1fr 1fr 1fr; } }
  .page-info .crew li {
    margin: .5em 0; }
    .page-info .crew li figure {
      width: 100%; }
      .page-info .crew li figure img {
        width: 100%; }
    .page-info .crew li h2 {
      font-size: 1.5em; }
    .page-info .crew li a.email {
      color: #f60000; }
  .page-info .contributors header h2 {
    margin-bottom: 1em; }
  .page-info .contributors ul {
    display: grid;
    grid-template-columns: 1fr 1fr; }

.content.author .main {
  margin-top: calc(2 * 20px);
  margin-bottom: calc(1 * 20px);
  margin-right: calc(1 * 20px);
  margin-left: calc(1 * 20px); }
  .content.author .main > header {
    text-align: center;
    margin: 1em 0 2em 0; }
    .content.author .main > header h1 {
      font-size: 3em;
      font-weight: bold;
      line-height: 1;
      margin-bottom: .5em; }
    .content.author .main > header h3 {
      font-weight: normal;
      color: #999;
      margin-bottom: 0;
      text-align: center;
      font-size: .8em; }
    .content.author .main > header h4 {
      color: #666; }
    .content.author .main > header a {
      font-weight: bold; }
    .content.author .main > header p {
      max-width: 500px;
      margin: .5em auto;
      font-size: 0.9em;
      text-align: left; }
    .content.author .main > header figure {
      max-width: 180px;
      width: 180px;
      margin: 0 auto; }
      .content.author .main > header figure img {
        width: 100%;
        border-radius: 6px; }
  @media only screen and (min-width: 900px) {
    .content.author .main {
      margin-top: calc(2 * 25px); } }
  @media only screen and (min-width: 900px) {
    .content.author .main {
      margin-bottom: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .content.author .main {
      margin-right: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .content.author .main {
      margin-left: calc(1 * 25px); } }
  .content.author .main .stories {
    margin-top: 4em;
    grid-template-columns: 1fr; }
    .content.author .main .stories .excerpt {
      display: none; }
    .content.author .main .stories article h1 {
      font-size: 1.5em;
      margin: 0.15em 0; }
    @media only screen and (min-width: 640px) {
      .content.author .main .stories {
        grid-template-columns: 1fr 1fr; }
        .content.author .main .stories .excerpt {
          display: block; } }
    @media only screen and (min-width: 900px) {
      .content.author .main .stories {
        grid-template-columns: 1fr 1fr 1fr; }
        .content.author .main .stories article h1 {
          font-size: 1.6em; } }
    @media only screen and (min-width: 1350px) {
      .content.author .main .stories {
        grid-template-columns: 1fr 1fr 1fr 1fr; } }

.page-template-blogger .main > .content {
  padding-top: calc(1 * 20px);
  padding-bottom: calc(1 * 20px);
  padding-right: calc(1 * 20px);
  padding-left: calc(1 * 20px); }
  .page-template-blogger .main > .content .stories {
    grid-template-columns: 1fr; }
    @media only screen and (min-width: 900px) {
      .page-template-blogger .main > .content .stories {
        grid-gap: 50px;
        grid-template-columns: 1fr 1fr; } }
    @media only screen and (min-width: 1120px) {
      .page-template-blogger .main > .content .stories {
        grid-template-columns: 1fr 1fr 1fr; } }
  @media only screen and (min-width: 900px) {
    .page-template-blogger .main > .content {
      padding-top: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .page-template-blogger .main > .content {
      padding-bottom: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .page-template-blogger .main > .content {
      padding-right: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .page-template-blogger .main > .content {
      padding-left: calc(1 * 25px); } }
  .page-template-blogger .main > .content > header {
    padding: 2em;
    text-align: center; }
    .page-template-blogger .main > .content > header h1 {
      font-size: 2.5em;
      margin-bottom: .5em; }
  .page-template-blogger .main > .content article {
    overflow: hidden; }
  .page-template-blogger .main > .content .blogheader {
    width: 100%; }
    .page-template-blogger .main > .content .blogheader > a {
      background: #f0f0f0;
      padding: .25em;
      width: 100%;
      display: block;
      font-weight: bold;
      font-size: 75%;
      color: #444; }
  .page-template-blogger .main > .content .story figure img {
    width: 100%; }
  .page-template-blogger .main > .content .story h1 {
    margin-bottom: .25em; }

.page-template-blogger .rss-feed {
  margin: 1em;
  text-align: center; }

.page-template-blogger .main > .content {
  padding-top: calc(1 * 20px);
  padding-bottom: calc(1 * 20px);
  padding-right: calc(1 * 20px);
  padding-left: calc(1 * 20px); }
  .page-template-blogger .main > .content .stories {
    grid-template-columns: 1fr; }
    @media only screen and (min-width: 900px) {
      .page-template-blogger .main > .content .stories {
        grid-gap: 50px;
        grid-template-columns: 1fr 1fr; } }
    @media only screen and (min-width: 1120px) {
      .page-template-blogger .main > .content .stories {
        grid-template-columns: 1fr 1fr 1fr; } }
  @media only screen and (min-width: 900px) {
    .page-template-blogger .main > .content {
      padding-top: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .page-template-blogger .main > .content {
      padding-bottom: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .page-template-blogger .main > .content {
      padding-right: calc(1 * 25px); } }
  @media only screen and (min-width: 900px) {
    .page-template-blogger .main > .content {
      padding-left: calc(1 * 25px); } }
  .page-template-blogger .main > .content > header {
    padding: 2em;
    text-align: center; }
    .page-template-blogger .main > .content > header h1 {
      font-size: 2.5em;
      margin-bottom: .5em; }
  .page-template-blogger .main > .content article {
    overflow: hidden; }
  .page-template-blogger .main > .content .blogheader {
    width: 100%; }
    .page-template-blogger .main > .content .blogheader > a {
      background: #f0f0f0;
      padding: .25em;
      width: 100%;
      display: block;
      font-weight: bold;
      font-size: 75%;
      color: #444; }
  .page-template-blogger .main > .content .story figure img {
    width: 100%; }
  .page-template-blogger .main > .content .story h1 {
    margin-bottom: .25em; }

.page-template-blogger .rss-feed {
  margin: 1em;
  text-align: center; }
