@charset "UTF-8";
/* ATTENZIONE 
    per compilare il CSS lanciare questo comando da terminale sass --watch assets/sass/style.scss:style.css
    Per info https://sass-lang.com/
*/
/*
Theme Name: Rabone v1.5
Theme URI: https://rabone.it
Author: Rabone
Author URI: https://rabone.it
Description: Based on BlankSlate https://github.com/tidythemes/blankslate, TidyThemes https://github.com/tidythemes
Tags: -
Version: 2023
Requires at least: 5.2
Tested up to: 6.1
Requires PHP: 7.0
License: -
License -
Text Domain: ---


BlankSlate WordPress Theme © 2011-2023 TidyThemes
BlankSlate is distributed under the terms of the GNU GPL
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/* 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;
}

@font-face {
  font-family: "Mattone";
  src: url("assets/fonts/Mattone-Regular.woff2") format("woff2"), url("assets/fonts/Mattone-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Mattone";
  src: url("assets/fonts/Mattone-Bold.woff2") format("woff2"), url("assets/fonts/Mattone-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Mattone";
  src: url("assets/fonts/Mattone-Black.woff2") format("woff2"), url("assets/fonts/Mattone-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

p::selection, h1::selection, h2::selection, h3::selection, h4::selection, h5::selection, h6::selection {
  background-color: #FC0171;
  /* Sostituisci con il colore desiderato per lo sfondo */
}

select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 12px 30px 8px 15px;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  font-family: "Mattone", sans-serif;
  text-transform: uppercase;
  z-index: 1;
  outline: none;
}
select::-ms-expand {
  display: none;
}

.select {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
  max-width: 245px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  color: #000000;
  line-height: 16px;
  font-family: "Mattone", sans-serif;
  text-transform: uppercase;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
}
.select:not(.select--multiple)::after {
  content: "";
  justify-self: end;
  width: 0.8em;
  height: 0.5em;
  margin-right: 10px;
  background-color: #FC0171;
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}
.select select, .select::after {
  grid-area: select;
}

select:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid var(--select-focus);
  border-radius: inherit;
}

select[multiple] {
  padding-right: 0;
  /*
   * Safari will not reveal an option
   * unless the select height has room to 
   * show all of it
   * Firefox and Chrome allow showing 
   * a partial option
   */
  height: 6rem;
  /* 
   * Experimental - styling of selected options
   * in the multiselect
   * Not supported crossbrowser
   */
}
select[multiple] option {
  white-space: normal;
  outline-color: var(--select-focus);
}

.select--disabled {
  cursor: not-allowed;
  background-color: #eee;
  background-image: linear-gradient(to top, #ddd, #eee 33%);
}

.select + label {
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.only-small,
.only-medium,
.only-large,
.only-large-up,
.only-xlarge {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .only-small {
    display: block !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .only-medium {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .only-large {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) {
  .only-large-up {
    display: block !important;
  }
}
@media screen and (min-width: 1367px) {
  .only-xlarge {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .no-small {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .no-medium {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .no-large {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .no-large-up {
    display: none !important;
  }
}
@media screen and (min-width: 1367px) {
  .no-xlarge {
    display: none !important;
  }
}
.d-container, .root.container, .style-guide__general {
  margin: 0 auto;
  max-width: 1920px;
  overflow-x: hidden;
}

.container--debug .d-row {
  margin-top: 20px;
  margin-bottom: 20px;
}
.container--debug .d-columns {
  text-align: center;
}
.container--debug .box {
  box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #ddd;
  height: 100%;
  color: #000;
}
.container--debug .box .box {
  background: #bbb;
}
.container--debug .component-no-grid .box-no-grid-example {
  background: #ddd;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container--debug .box-full-width-example {
  background: #ddd;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.d-row {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.d-row.equal-height {
  align-items: stretch;
}
.d-row .d-row:not(.with-gutter) {
  padding-right: 0;
  padding-left: 0;
}
.d-row .d-row:not(.with-gutter) .d-columns {
  padding-right: 0;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .d-row .d-row.with-gutter {
    padding-right: 8px;
    padding-left: 8px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .d-row .d-row.with-gutter {
    padding-right: 8px;
    padding-left: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .d-row .d-row.with-gutter {
    padding-right: 8px;
    padding-left: 8px;
  }
}
@media screen and (max-width: 767px) {
  .d-row .d-row.with-gutter .d-columns {
    padding-left: 8px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .d-row .d-row.with-gutter .d-columns {
    padding-left: 8px !important;
  }
}
@media screen and (min-width: 1024px) {
  .d-row .d-row.with-gutter .d-columns {
    padding-left: 8px !important;
  }
}

.d-columns {
  box-sizing: border-box;
  padding-left: 8px;
  padding-right: 8px;
  width: 100%;
}
.d-columns .d-columns {
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .d-row {
    padding-right: 8px;
    padding-left: 8px;
  }
  .d-row.small-equal-height {
    align-items: stretch;
  }

  .d-columns {
    padding-left: 8px;
    padding-right: 8px;
  }
  .d-columns.small-1 {
    width: 8.3333333333%;
  }
  .d-columns.small-2 {
    width: 16.666666667%;
  }
  .d-columns.small-3 {
    width: 25%;
  }
  .d-columns.small-4 {
    width: 33.333333333%;
  }
  .d-columns.small-5 {
    width: 41.666666667%;
  }
  .d-columns.small-6 {
    width: 50%;
  }
  .d-columns.small-7 {
    width: 58.333333333%;
  }
  .d-columns.small-8 {
    width: 66.666666666%;
  }
  .d-columns.small-9 {
    width: 75%;
  }
  .d-columns.small-10 {
    width: 83.333333333%;
  }
  .d-columns.small-11 {
    width: 91.666666666%;
  }
  .d-columns.small-12 {
    width: 100%;
  }
  .d-columns.small-push-1 {
    margin-left: 8.3333333333%;
  }
  .d-columns.small-push-2 {
    margin-left: 16.666666667%;
  }
  .d-columns.small-push-3 {
    margin-left: 25%;
  }
  .d-columns.small-push-4 {
    margin-left: 33.333333333%;
  }
  .d-columns.small-push-5 {
    margin-left: 41.666666667%;
  }
  .d-columns.small-push-6 {
    margin-left: 50%;
  }
  .d-columns.small-push-7 {
    margin-left: 58.333333333%;
  }
  .d-columns.small-push-8 {
    margin-left: 66.666666666%;
  }
  .d-columns.small-push-9 {
    margin-left: 75%;
  }
  .d-columns.small-push-10 {
    margin-left: 83.333333333%;
  }
  .d-columns.small-push-11 {
    margin-left: 91.666666666%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .d-row {
    padding-right: 8px;
    padding-left: 8px;
  }
  .d-row.medium-equal-height {
    align-items: stretch;
  }

  .d-columns {
    padding-left: 8px;
    padding-right: 8px;
  }
  .d-columns.small-1 {
    width: 8.3333333333%;
  }
  .d-columns.small-2 {
    width: 16.666666667%;
  }
  .d-columns.small-3 {
    width: 25%;
  }
  .d-columns.small-4 {
    width: 33.333333333%;
  }
  .d-columns.small-5 {
    width: 41.666666667%;
  }
  .d-columns.small-6 {
    width: 50%;
  }
  .d-columns.small-7 {
    width: 58.333333333%;
  }
  .d-columns.small-8 {
    width: 66.666666666%;
  }
  .d-columns.small-9 {
    width: 75%;
  }
  .d-columns.small-10 {
    width: 83.333333333%;
  }
  .d-columns.small-11 {
    width: 91.666666666%;
  }
  .d-columns.small-12 {
    width: 100%;
  }
  .d-columns.medium-1 {
    width: 8.3333333333%;
  }
  .d-columns.medium-2 {
    width: 16.666666667%;
  }
  .d-columns.medium-3 {
    width: 25%;
  }
  .d-columns.medium-4 {
    width: 33.333333333%;
  }
  .d-columns.medium-5 {
    width: 41.666666667%;
  }
  .d-columns.medium-6 {
    width: 50%;
  }
  .d-columns.medium-7 {
    width: 58.333333333%;
  }
  .d-columns.medium-8 {
    width: 66.666666666%;
  }
  .d-columns.medium-9 {
    width: 75%;
  }
  .d-columns.medium-10 {
    width: 83.333333333%;
  }
  .d-columns.medium-11 {
    width: 91.666666666%;
  }
  .d-columns.medium-12 {
    width: 100%;
  }
  .d-columns.medium-push-1 {
    margin-left: 8.3333333333%;
  }
  .d-columns.medium-push-2 {
    margin-left: 16.666666667%;
  }
  .d-columns.medium-push-3 {
    margin-left: 25%;
  }
  .d-columns.medium-push-4 {
    margin-left: 33.333333333%;
  }
  .d-columns.medium-push-5 {
    margin-left: 41.666666667%;
  }
  .d-columns.medium-push-6 {
    margin-left: 50%;
  }
  .d-columns.medium-push-7 {
    margin-left: 58.333333333%;
  }
  .d-columns.medium-push-8 {
    margin-left: 66.666666666%;
  }
  .d-columns.medium-push-9 {
    margin-left: 75%;
  }
  .d-columns.medium-push-10 {
    margin-left: 83.333333333%;
  }
  .d-columns.medium-push-11 {
    margin-left: 91.666666666%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .d-row {
    padding-right: 8px;
    padding-left: 8px;
  }
  .d-row.large-equal-height {
    align-items: stretch;
  }

  .d-columns.small-1 {
    width: 8.3333333333%;
  }
  .d-columns.small-2 {
    width: 16.666666667%;
  }
  .d-columns.small-3 {
    width: 25%;
  }
  .d-columns.small-4 {
    width: 33.333333333%;
  }
  .d-columns.small-5 {
    width: 41.666666667%;
  }
  .d-columns.small-6 {
    width: 50%;
  }
  .d-columns.small-7 {
    width: 58.333333333%;
  }
  .d-columns.small-8 {
    width: 66.666666666%;
  }
  .d-columns.small-9 {
    width: 75%;
  }
  .d-columns.small-10 {
    width: 83.333333333%;
  }
  .d-columns.small-11 {
    width: 91.666666666%;
  }
  .d-columns.small-12 {
    width: 100%;
  }
  .d-columns.medium-1 {
    width: 8.3333333333%;
  }
  .d-columns.medium-2 {
    width: 16.666666667%;
  }
  .d-columns.medium-3 {
    width: 25%;
  }
  .d-columns.medium-4 {
    width: 33.333333333%;
  }
  .d-columns.medium-5 {
    width: 41.666666667%;
  }
  .d-columns.medium-6 {
    width: 50%;
  }
  .d-columns.medium-7 {
    width: 58.333333333%;
  }
  .d-columns.medium-8 {
    width: 66.666666666%;
  }
  .d-columns.medium-9 {
    width: 75%;
  }
  .d-columns.medium-10 {
    width: 83.333333333%;
  }
  .d-columns.medium-11 {
    width: 91.666666666%;
  }
  .d-columns.medium-12 {
    width: 100%;
  }
  .d-columns.large-1 {
    width: 8.3333333333%;
  }
  .d-columns.large-2 {
    width: 16.666666667%;
  }
  .d-columns.large-3 {
    width: 25%;
  }
  .d-columns.large-4 {
    width: 33.333333333%;
  }
  .d-columns.large-5 {
    width: 41.666666667%;
  }
  .d-columns.large-6 {
    width: 50%;
  }
  .d-columns.large-7 {
    width: 58.333333333%;
  }
  .d-columns.large-8 {
    width: 66.666666666%;
  }
  .d-columns.large-9 {
    width: 75%;
  }
  .d-columns.large-10 {
    width: 83.333333333%;
  }
  .d-columns.large-11 {
    width: 91.666666666%;
  }
  .d-columns.large-12 {
    width: 100%;
  }
  .d-columns.large-push-1 {
    margin-left: 8.3333333333%;
  }
  .d-columns.large-push-2 {
    margin-left: 16.666666667%;
  }
  .d-columns.large-push-3 {
    margin-left: 25%;
  }
  .d-columns.large-push-4 {
    margin-left: 33.333333333%;
  }
  .d-columns.large-push-5 {
    margin-left: 41.666666667%;
  }
  .d-columns.large-push-6 {
    margin-left: 50%;
  }
  .d-columns.large-push-7 {
    margin-left: 58.333333333%;
  }
  .d-columns.large-push-8 {
    margin-left: 66.666666666%;
  }
  .d-columns.large-push-9 {
    margin-left: 75%;
  }
  .d-columns.large-push-10 {
    margin-left: 83.333333333%;
  }
  .d-columns.large-push-11 {
    margin-left: 91.666666666%;
  }
}
@media screen and (min-width: 1367px) {
  .d-row {
    padding-right: 8px;
    padding-left: 8px;
  }
  .d-row.xlarge-equal-height {
    align-items: stretch;
  }

  .d-columns.small-1 {
    width: 8.3333333333%;
  }
  .d-columns.small-2 {
    width: 16.666666667%;
  }
  .d-columns.small-3 {
    width: 25%;
  }
  .d-columns.small-4 {
    width: 33.333333333%;
  }
  .d-columns.small-5 {
    width: 41.666666667%;
  }
  .d-columns.small-6 {
    width: 50%;
  }
  .d-columns.small-7 {
    width: 58.333333333%;
  }
  .d-columns.small-8 {
    width: 66.666666666%;
  }
  .d-columns.small-9 {
    width: 75%;
  }
  .d-columns.small-10 {
    width: 83.333333333%;
  }
  .d-columns.small-11 {
    width: 91.666666666%;
  }
  .d-columns.small-12 {
    width: 100%;
  }
  .d-columns.medium-1 {
    width: 8.3333333333%;
  }
  .d-columns.medium-2 {
    width: 16.666666667%;
  }
  .d-columns.medium-3 {
    width: 25%;
  }
  .d-columns.medium-4 {
    width: 33.333333333%;
  }
  .d-columns.medium-5 {
    width: 41.666666667%;
  }
  .d-columns.medium-6 {
    width: 50%;
  }
  .d-columns.medium-7 {
    width: 58.333333333%;
  }
  .d-columns.medium-8 {
    width: 66.666666666%;
  }
  .d-columns.medium-9 {
    width: 75%;
  }
  .d-columns.medium-10 {
    width: 83.333333333%;
  }
  .d-columns.medium-11 {
    width: 91.666666666%;
  }
  .d-columns.medium-12 {
    width: 100%;
  }
  .d-columns.large-1 {
    width: 8.3333333333%;
  }
  .d-columns.large-2 {
    width: 16.666666667%;
  }
  .d-columns.large-3 {
    width: 25%;
  }
  .d-columns.large-4 {
    width: 33.333333333%;
  }
  .d-columns.large-5 {
    width: 41.666666667%;
  }
  .d-columns.large-6 {
    width: 50%;
  }
  .d-columns.large-7 {
    width: 58.333333333%;
  }
  .d-columns.large-8 {
    width: 66.666666666%;
  }
  .d-columns.large-9 {
    width: 75%;
  }
  .d-columns.large-10 {
    width: 83.333333333%;
  }
  .d-columns.large-11 {
    width: 91.666666666%;
  }
  .d-columns.large-12 {
    width: 100%;
  }
  .d-columns.xlarge-1 {
    width: 8.3333333333%;
  }
  .d-columns.xlarge-2 {
    width: 16.666666667%;
  }
  .d-columns.xlarge-3 {
    width: 25%;
  }
  .d-columns.xlarge-4 {
    width: 33.333333333%;
  }
  .d-columns.xlarge-5 {
    width: 41.666666667%;
  }
  .d-columns.xlarge-6 {
    width: 50%;
  }
  .d-columns.xlarge-7 {
    width: 58.333333333%;
  }
  .d-columns.xlarge-8 {
    width: 66.666666666%;
  }
  .d-columns.xlarge-9 {
    width: 75%;
  }
  .d-columns.xlarge-10 {
    width: 83.333333333%;
  }
  .d-columns.xlarge-11 {
    width: 91.666666666%;
  }
  .d-columns.xlarge-12 {
    width: 100%;
  }
  .d-columns.xlarge-push-1 {
    margin-left: 8.3333333333%;
  }
  .d-columns.xlarge-push-2 {
    margin-left: 16.666666667%;
  }
  .d-columns.xlarge-push-3 {
    margin-left: 25%;
  }
  .d-columns.xlarge-push-4 {
    margin-left: 33.333333333%;
  }
  .d-columns.xlarge-push-5 {
    margin-left: 41.666666667%;
  }
  .d-columns.xlarge-push-6 {
    margin-left: 50%;
  }
  .d-columns.xlarge-push-7 {
    margin-left: 58.333333333%;
  }
  .d-columns.xlarge-push-8 {
    margin-left: 66.666666666%;
  }
  .d-columns.xlarge-push-9 {
    margin-left: 75%;
  }
  .d-columns.xlarge-push-10 {
    margin-left: 83.333333333%;
  }
  .d-columns.xlarge-push-11 {
    margin-left: 91.666666666%;
  }
}
/* !!! 
    If a component doesn't need the grid, it must include @mixin component-no-grid in order to have the correct lateral spaces 
*/
.component-no-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .component-no-grid {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .component-no-grid {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .component-no-grid {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.clearfix {
  border: 10px blue solid;
}
.clearfix:after {
  content: " ";
  /* Older browser do not support empty content */
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.hidden {
  display: none !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.margin-top-auto {
  margin-top: auto;
}

.no-bg {
  background: none !important;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
  color: #ffffff;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: subpixel-antialiased;
  background: #181414;
}

a {
  color: #ffffff;
}
@media (hover: hover) {
  a:hover {
    text-decoration: none;
  }
}

.header-wrapper {
  background: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1), 2px 10px 32px rgba(0, 0, 0, 0.1);
}

#header {
  display: flex;
  align-items: center;
  padding: 10px 0;
  background: #ffffff;
}
#header #branding .logo {
  width: 160px;
}
#header #menu {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  #header #menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 10;
    transition: left 0.5s;
  }
}
#header #menu.menu-open {
  left: 0;
  transition: left 0.5s;
}
#header #menu .close-menu {
  position: absolute;
  z-index: 15;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 1024px) {
  #header #menu .close-menu {
    display: none;
  }
}
@media (hover: hover) {
  #header #menu .close-menu:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 1023px) {
  #header #menu .menu-menu-principale-container {
    position: relative;
    z-index: 11;
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
  }
}
#header #menu ul.menu {
  display: flex;
  color: #ffffff;
}
@media screen and (max-width: 1023px) {
  #header #menu ul.menu {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    position: relative;
    z-index: 12;
    height: 100%;
  }
}
@media screen and (max-width: 1023px) {
  #header #menu ul.menu li {
    padding: 20px;
  }
}
#header #menu ul.menu li.current-menu-item a {
  color: #FC0171;
}
#header #menu ul.menu li:last-child a::before {
  content: none;
}
#header #menu ul.menu li a {
  position: relative;
  z-index: 13;
  display: block;
  margin: 0 10px;
  color: #000000;
  text-decoration: none;
  font-family: "Mattone", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  #header #menu ul.menu li a {
    text-align: center;
    font-size: 2rem;
  }
  #header #menu ul.menu li a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 50px;
    margin-left: -25px;
    border-bottom: 5px solid #FC0171;
  }
}
#header #menu ul.menu #menu-item-264 {
  display: none;
}
@media screen and (max-width: 1023px) {
  #header #menu ul.menu #menu-item-264 {
    display: block;
  }
}
#header #search {
  width: 160px;
  text-align: right;
}
#header #search .search-image {
  width: 30px;
}
@media screen and (max-width: 1023px) {
  #header #search {
    display: none;
  }
}
#header .menu-mobile-launcher {
  margin-left: auto;
}
@media (hover: hover) {
  #header .menu-mobile-launcher:hover {
    cursor: pointer;
  }
}
#header .menu-mobile-launcher__ico {
  width: 30px;
}
@media screen and (min-width: 1024px) {
  #header .menu-mobile-launcher__ico {
    display: none;
  }
}

.prefooter-social {
  padding: 30px 0;
  background: #FC0171;
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}
.prefooter-social * {
  text-align: center !important;
}

#footer {
  padding: 30px 0;
  text-align: center;
}

.sidebar-block {
  padding-bottom: 15px;
}
.sidebar-block__title {
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  color: #FC0171;
  font-family: "Mattone", sans-serif;
}
.sidebar-block__item {
  margin-bottom: 20px;
}
.sidebar-block__item__link {
  display: flex;
  text-decoration: none;
}
.sidebar-block__item__image {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  margin: 0 10px 0 0;
  background-size: cover;
  background-position: center;
}
.sidebar-block__item__label {
  display: block;
  color: #FC0171;
}
.sidebar-block__item__title {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-family: "Mattone", sans-serif;
  text-transform: uppercase;
}

.sidebar--rivista .sidebar-list {
  padding-top: 32px;
}
@media screen and (max-width: 767px) {
  .sidebar--rivista .sidebar-list {
    padding-top: 0px;
  }
}

.sidebar--podcast .sidebar-list {
  padding-top: 32px;
}
@media screen and (max-width: 767px) {
  .sidebar--podcast .sidebar-list {
    padding-top: 0px;
  }
}

.sidebar--category .sidebar-list {
  padding-top: 50px;
}

.home-block-container {
  padding: 50px 0 70px;
}

.home-block__title {
  position: relative;
  font-size: 40px;
  text-align: center;
  font-family: "Mattone", sans-serif;
  text-transform: uppercase;
}
.home-block__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 100px;
  margin-left: -50px;
  border-bottom: 5px solid #FC0171;
}
.home-block__content {
  display: flex;
  align-items: stretch;
  padding: 50px 0 0 0;
}
@media screen and (max-width: 1023px) {
  .home-block__content {
    flex-direction: column;
  }
}
.home-block .article-block.main-article {
  order: 2;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .home-block .article-block.main-article {
    order: 1;
    width: 100%;
    margin-bottom: 30px;
  }
}
.home-block .article-block.main-article .article {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  padding: 15px;
  background-size: cover;
  background-position: top center;
  border: 1px solid #333;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .home-block .article-block.main-article .article {
    aspect-ratio: 2/1;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .home-block .article-block.main-article .article {
    min-height: 400px;
  }
}
.home-block .article-block.main-article .article::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, black, rgba(0, 0, 0, 0));
}
.home-block .article-block.main-article .article__category {
  margin-bottom: 20px;
}
.home-block .article-block.main-article .article__category__text {
  display: inline-block;
  padding: 10px 10px 7px 10px;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Mattone", sans-serif;
  font-size: 16px;
  line-height: 16px;
  background-color: #FC0171;
}
@media screen and (max-width: 767px) {
  .home-block .article-block.main-article .article__category__text {
    font-size: 12px;
    line-height: 12px;
  }
}
.home-block .article-block.main-article .article__info {
  position: relative;
  z-index: 2;
  margin-top: auto;
  color: #ffffff;
}
.home-block .article-block.main-article .article__title {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  font-family: "Mattone", sans-serif;
  font-size: 35px;
  line-height: 42px;
  text-transform: uppercase;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .home-block .article-block.main-article .article__title {
    font-size: 24px;
    line-height: 30px;
  }
}
.home-block .article-block.main-article .article__excerpt {
  position: relative;
  z-index: 2;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}
.home-block .article-block.main-article .article__author {
  margin-top: auto;
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
  color: #ffffff;
}
.home-block .article-block.main-article .article__link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.home-block .article-block.secondary-article {
  order: 1;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .home-block .article-block.secondary-article {
    order: 1;
    width: 100%;
  }
}
.home-block .article-block.secondary-article .article {
  display: flex;
  align-items: stretch;
  position: relative;
  margin-bottom: 30px;
  box-sizing: border-box;
}
.home-block .article-block.secondary-article .article:last-child {
  margin-bottom: 0;
}
.home-block .article-block.secondary-article .article__thumbnail {
  width: 150px;
  height: 100px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.home-block .article-block.secondary-article .article__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  box-sizing: border-box;
  word-wrap: break-word;
  padding: 0 15px;
}
.home-block .article-block.secondary-article .article__category {
  margin-bottom: 10px;
  color: #FC0171;
  text-transform: uppercase;
  font-family: "Mattone", sans-serif;
}
.home-block .article-block.secondary-article .article__title {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Mattone", sans-serif;
  font-size: 20px;
}
.home-block .article-block.secondary-article .article__author {
  margin-top: auto;
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
}
.home-block .article-block.secondary-article .article__excerpt {
  font-size: 15px;
  line-height: 21px;
}
.home-block .article-block.secondary-article .article__link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.home-block + .home-block {
  padding-top: 70px;
}

.single-block-container {
  padding: 50px 0;
}

.single-article__header {
  position: relative;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-bottom: 5px solid #FC0171;
}
.single-article__header::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, black, rgba(0, 0, 0, 0));
}
.single-article__header-content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px 0;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .single-article__header-content {
    height: 300px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .single-article__header-content {
    height: 400px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .single-article__header-content {
    height: 500px;
  }
}
@media screen and (min-width: 1367px) {
  .single-article__header-content {
    height: 500px;
  }
}
.single-article__category__text {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 10px 10px 7px 10px;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Mattone", sans-serif;
  font-size: 16px;
  line-height: 16px;
  background-color: #FC0171;
}
@media screen and (max-width: 767px) {
  .single-article__category__text {
    font-size: 12px;
    line-height: 12px;
  }
}
.single-article__main-info {
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .single-article__main-info {
    padding: 30px 0 0;
    margin-top: auto;
  }
}
.single-article__title {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 50px;
  line-height: 36px;
  font-family: "Mattone", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .single-article__title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media screen and (min-width: 768px) {
  .single-article__title {
    font-size: 50px;
    line-height: 50px;
  }
}
.single-article__excerpt {
  font-size: 16px;
  line-height: 24px;
  position: relative;
  z-index: 2;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .single-article__main-content {
    padding-right: 30px;
  }
}
.single-article__main-content .author-link {
  color: #FC0171;
}
.single-article__info {
  display: flex;
  align-items: center;
  padding: 32px 0;
}
@media screen and (max-width: 767px) {
  .single-article__info {
    padding: 16px 0;
  }
}
.single-article__author {
  display: block;
  padding-right: 5px;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .single-article__author {
    font-size: 12px;
    line-height: 18px;
  }
}
.single-article__author a {
  color: #FC0171;
}
.single-article__date {
  display: block;
  padding-left: 5px;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .single-article__date {
    font-size: 12px;
    line-height: 18px;
  }
}
.single-article__time {
  display: block;
  padding-left: 5px;
  font-size: 16px;
  line-height: 22px;
}
@media screen and (max-width: 767px) {
  .single-article__time {
    font-size: 12px;
    line-height: 18px;
  }
}
.single-article__time__number {
  display: inline-block;
  padding-left: 5px;
}
.single-article__content {
  padding-bottom: 32px;
  font-size: 16px;
  line-height: 22px;
}
.single-article__content > * {
  margin-bottom: 20px;
}
.single-article__content a {
  color: #ffffff;
  text-decoration-color: #FC0171;
  text-decoration-thickness: 3px;
}
.single-article__content em {
  font-style: italic;
}
.single-article__content strong {
  font-weight: bold;
}
.single-article__content figure figcaption {
  font-size: 12px;
  line-height: 18px;
  font-style: italic;
}
.single-article__content h1 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
}
.single-article__content h2 {
  font-weight: bold;
  font-size: 26px;
  line-height: 30px;
}
.single-article__content h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
}
.single-article__content h4 {
  font-weight: bold;
  font-size: 22px;
  line-height: 26px;
}
.single-article__content h5 {
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
}
.single-article__content h6 {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
}
.single-article__content blockquote {
  padding: 0 30px;
  font-size: 30px;
  line-height: 38px;
  font-style: italic;
  position: relative;
}
.single-article__content blockquote::before, .single-article__content blockquote::after {
  content: "“";
  font-size: 36px;
  position: absolute;
  color: #FC0171;
}
.single-article__content blockquote::before {
  content: "“";
  top: 0;
  left: 0;
}
.single-article__content blockquote::after {
  content: "”";
  bottom: 0;
  right: 0;
}
.single-article__footer {
  padding: 30px 0;
  background: #FC0171;
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
}
.single-article__author-description em {
  display: block;
  margin-top: 10px;
  text-transform: uppercase;
  font-style: normal;
}
.single-article__share {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 22px;
}
@media screen and (max-width: 767px) {
  .single-article__share {
    margin-top: 20px;
  }
}
.single-article__share * {
  text-align: center !important;
}

#comments,
#comment,
.comment,
#respond,
.post-navigation,
.widget_block {
  display: none;
}

.category__main-block {
  padding: 50px 0 0;
  max-width: 860px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .category__main-block {
    padding: 30px 0 0;
  }
}
.category__title {
  position: relative;
  font-size: 40px;
  text-align: center;
  font-family: "Mattone", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .category__title {
    font-size: 32px;
  }
}
.category__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 100px;
  margin-left: -50px;
  border-bottom: 5px solid #FC0171;
}
@media screen and (max-width: 767px) {
  .category__title .author-name {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .category__title .author-surname {
    display: block;
  }
}
.category__description {
  padding-top: 30px;
  font-size: 16px;
  line-height: 22px;
}
.category__description p + p {
  margin-top: 12px;
}
.category__subcategory__wrapper {
  padding-top: 30px;
  text-align: center;
}
.category__subcategory__wrapper .select {
  margin: 0 auto;
}
.category__article-block {
  padding: 50px 0 30px;
}
.category .article {
  display: flex;
  align-items: stretch;
  position: relative;
  padding: 20px;
  border: 3px solid #222;
  margin: 0 auto 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .category .article {
    padding: 0px;
    border: 0;
  }
}
.category .article:last-child {
  margin-bottom: 0;
}
.category .article__thumbnail {
  width: 150px;
  height: 100px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.category .article__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  box-sizing: border-box;
  word-wrap: break-word;
  padding: 0 15px;
}
.category .article__category {
  margin-bottom: 10px;
  color: #FC0171;
  text-transform: uppercase;
  font-family: "Mattone", sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .category .article__category {
    font-size: 14px;
  }
}
.category .article__title {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Mattone", sans-serif;
  font-size: 20px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .category .article__title {
    font-size: 16px;
    line-height: 20px;
  }
}
.category .article__author {
  margin-top: auto;
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
}
.category .article__excerpt {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  .category .article__excerpt {
    display: none;
  }
}
.category .article__custom-fields {
  display: none;
}
.category .article__custom-fields .player-link {
  position: relative;
  z-index: 3;
  display: inline-block;
}
.category .article__custom-fields .player-link img {
  height: 35px;
}
.category .article__custom-fields .player-link .spotify-player {
  margin-left: 10px;
}
.category .article__link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.category__pagination .nav-links {
  text-align: center;
}
.category__pagination .page-numbers {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  background: white;
  color: black;
  text-decoration: none;
  font-weight: bold;
}
@media (hover: hover) {
  .category__pagination .page-numbers:hover {
    color: #FC0171;
  }
}
.category__pagination .page-numbers.current {
  color: #ffffff;
  background: #FC0171;
}

.search__main-block {
  padding: 50px 0 0;
  max-width: 860px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .search__main-block {
    padding: 30px 0 0;
  }
}
.search__title {
  position: relative;
  font-size: 40px;
  text-align: center;
  font-family: "Mattone", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .search__title {
    font-size: 32px;
  }
}
.search__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 100px;
  margin-left: -50px;
  border-bottom: 5px solid #FC0171;
}
@media screen and (max-width: 767px) {
  .search__title .author-name {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .search__title .author-surname {
    display: block;
  }
}
.search__description {
  padding-top: 30px;
  font-size: 16px;
  line-height: 22px;
}
.search__description p + p {
  margin-top: 12px;
}
.search__subcategory__wrapper {
  padding-top: 30px;
  text-align: center;
}
.search__subcategory__wrapper .select {
  margin: 0 auto;
}
.search__article-block {
  padding: 50px 0 30px;
}
.search .article {
  display: flex;
  align-items: stretch;
  position: relative;
  padding: 20px;
  border: 3px solid #222;
  margin: 0 auto 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .search .article {
    padding: 0px;
    border: 0;
  }
}
.search .article:last-child {
  margin-bottom: 0;
}
.search .article__thumbnail {
  width: 150px;
  height: 100px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.search .article__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  box-sizing: border-box;
  word-wrap: break-word;
  padding: 0 15px;
}
.search .article__category {
  margin-bottom: 10px;
  color: #FC0171;
  text-transform: uppercase;
  font-family: "Mattone", sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .search .article__category {
    font-size: 14px;
  }
}
.search .article__title {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Mattone", sans-serif;
  font-size: 20px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .search .article__title {
    font-size: 16px;
    line-height: 20px;
  }
}
.search .article__author {
  margin-top: auto;
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
}
.search .article__excerpt {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  .search .article__excerpt {
    display: none;
  }
}
.search .article__custom-fields {
  display: none;
}
.search .article__custom-fields .player-link {
  position: relative;
  z-index: 3;
  display: inline-block;
}
.search .article__custom-fields .player-link img {
  height: 35px;
}
.search .article__custom-fields .player-link .spotify-player {
  margin-left: 10px;
}
.search .article__link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.search__pagination .nav-links {
  text-align: center;
}
.search__pagination .page-numbers {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  background: white;
  color: black;
  text-decoration: none;
  font-weight: bold;
}
@media (hover: hover) {
  .search__pagination .page-numbers:hover {
    color: #FC0171;
  }
}
.search__pagination .page-numbers.current {
  color: #ffffff;
  background: #FC0171;
}

.authors__main-block {
  padding: 50px 0 0;
  max-width: 860px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .authors__main-block {
    padding: 30px 0 0;
  }
}
.authors__title {
  position: relative;
  font-size: 40px;
  text-align: center;
  font-family: "Mattone", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .authors__title {
    font-size: 32px;
  }
}
.authors__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 100px;
  margin-left: -50px;
  border-bottom: 5px solid #FC0171;
}
@media screen and (max-width: 767px) {
  .authors__title .author-name {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .authors__title .author-surname {
    display: block;
  }
}
.authors__description {
  padding-top: 30px;
  font-size: 16px;
  line-height: 22px;
}
.authors__description p + p {
  margin-top: 12px;
}
.authors__article-block {
  padding: 50px 0 30px;
}

.authors-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 16px;
  padding: 50px 0 50px;
}
@media (max-width: 767px) {
  .authors-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.authors-list__item {
  text-align: center;
  font-family: "Mattone", sans-serif;
  font-size: 28px;
}
@media (max-width: 767px) {
  .authors-list__item {
    font-size: 22px;
  }
}
.authors-list__item__link {
  display: block;
  text-decoration: none;
}
@media (max-width: 767px) {
  .authors-list__item__link {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.authors-list__item__name {
  display: block;
  padding-right: 5px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .authors-list__item__name {
    padding-bottom: 2px;
  }
}
.authors-list__item__surname {
  display: block;
  color: #FC0171;
  text-transform: uppercase;
}

.author__main-block {
  padding: 50px 0 0;
  max-width: 860px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .author__main-block {
    padding: 30px 0 0;
  }
}
.author__title {
  position: relative;
  font-size: 40px;
  text-align: center;
  font-family: "Mattone", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .author__title {
    font-size: 32px;
  }
}
.author__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 100px;
  margin-left: -50px;
  border-bottom: 5px solid #FC0171;
}
@media screen and (max-width: 767px) {
  .author__title .author-name {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .author__title .author-surname {
    display: block;
  }
}
.author__description {
  padding-top: 30px;
  font-size: 16px;
  line-height: 22px;
}
.author__description em {
  display: block;
  margin-top: 10px;
  font-style: normal;
  text-transform: uppercase;
}
.author__description strong {
  color: #FC0171;
}
.author__description p + p {
  margin-top: 12px;
}
.author__subcategory__wrapper {
  padding-top: 30px;
  text-align: center;
}
.author__subcategory__item {
  display: inline-block;
  margin: 5px;
}
@media screen and (max-width: 767px) {
  .author__subcategory__item {
    margin: 5px 0;
  }
}
.author__subcategory__link {
  display: block;
  padding: 10px 10px 6px;
  background: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  color: #000000;
}
@media (hover: hover) {
  .author__subcategory__link:hover {
    color: #FC0171;
  }
}
.author__subcategory__link.current {
  color: #ffffff;
  background: #FC0171;
}
.author__subcategory__title {
  display: block;
  font-family: "Mattone", sans-serif;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  text-align: center;
}
.author__article-block {
  padding: 50px 0 30px;
}
.author .article {
  display: flex;
  align-items: stretch;
  position: relative;
  padding: 20px;
  border: 3px solid #222;
  margin: 0 auto 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .author .article {
    padding: 0px;
    border: 0;
  }
}
.author .article:last-child {
  margin-bottom: 0;
}
.author .article__thumbnail {
  width: 150px;
  height: 100px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.author .article__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  box-sizing: border-box;
  word-wrap: break-word;
  padding: 0 15px;
}
.author .article__category {
  margin-bottom: 10px;
  color: #FC0171;
  text-transform: uppercase;
  font-family: "Mattone", sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .author .article__category {
    font-size: 14px;
  }
}
.author .article__title {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Mattone", sans-serif;
  font-size: 20px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .author .article__title {
    font-size: 16px;
    line-height: 20px;
  }
}
.author .article__author {
  margin-top: auto;
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
}
.author .article__excerpt {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  .author .article__excerpt {
    display: none;
  }
}
.author .article__custom-fields {
  display: none;
}
.author .article__custom-fields .player-link {
  position: relative;
  z-index: 3;
  display: inline-block;
}
.author .article__custom-fields .player-link img {
  height: 35px;
}
.author .article__custom-fields .player-link .spotify-player {
  margin-left: 10px;
}
.author .article__link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.author__pagination .nav-links {
  text-align: center;
}
.author__pagination .page-numbers {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  background: white;
  color: black;
  text-decoration: none;
  font-weight: bold;
}
@media (hover: hover) {
  .author__pagination .page-numbers:hover {
    color: #FC0171;
  }
}
.author__pagination .page-numbers.current {
  color: #ffffff;
  background: #FC0171;
}

.podcast-single__main-block {
  padding: 50px 0 0;
  max-width: 860px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .podcast-single__main-block {
    padding: 30px 0 0;
  }
}
.podcast-single__title {
  position: relative;
  font-size: 40px;
  text-align: center;
  font-family: "Mattone", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .podcast-single__title {
    font-size: 32px;
  }
}
.podcast-single__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 100px;
  margin-left: -50px;
  border-bottom: 5px solid #FC0171;
}
@media screen and (max-width: 767px) {
  .podcast-single__title .author-name {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .podcast-single__title .author-surname {
    display: block;
  }
}
.podcast-single__article-block {
  padding: 50px 0 30px;
}
.podcast-single .article {
  padding: 20px;
  border: 3px solid #222;
  margin: 0 auto 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .podcast-single .article {
    padding: 0px;
    border: 0;
  }
}
.podcast-single .article__content {
  font-size: 16px;
  line-height: 20px;
}
.podcast-single .article__content > * {
  margin-bottom: 20px;
}
.podcast-single .article__content a {
  color: #ffffff;
  text-decoration-color: #FC0171;
  text-decoration-thickness: 3px;
}
.podcast-single .article__content figure figcaption {
  font-size: 12px;
  line-height: 18px;
  font-style: italic;
}
.podcast-single .article__content h1 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
}
.podcast-single .article__content h2 {
  font-weight: bold;
  font-size: 26px;
  line-height: 30px;
}
.podcast-single .article__content h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
}
.podcast-single .article__content h4 {
  font-weight: bold;
  font-size: 22px;
  line-height: 26px;
}
.podcast-single .article__content h5 {
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
}
.podcast-single .article__content h6 {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
}
.podcast-single .article__content blockquote {
  padding: 0 30px;
  font-size: 30px;
  line-height: 38px;
  font-style: italic;
  text-transform: uppercase;
  position: relative;
  text-align: center;
}
.podcast-single .article__content blockquote::before, .podcast-single .article__content blockquote::after {
  content: "“";
  font-size: 36px;
  position: absolute;
  color: #EAFF02;
}
.podcast-single .article__content blockquote::before {
  content: "“";
  top: 0;
  left: 0;
}
.podcast-single .article__content blockquote::after {
  content: "”";
  bottom: 0;
  right: 0;
}
.podcast-single .article__thumbnail {
  display: none;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center bottom;
}
.podcast-single .article__info {
  display: flex;
  box-sizing: border-box;
  padding-bottom: 20px;
}
.podcast-single .article__info .info-right {
  margin-left: auto;
}
.podcast-single .article__category {
  margin-bottom: 3px;
  color: #FC0171;
  text-transform: uppercase;
  font-family: "Mattone", sans-serif;
  font-size: 22px;
}
.podcast-single .article__details {
  font-size: 12px;
}
.podcast-single .article__date {
  display: inline-block;
}
.podcast-single .article__time {
  display: inline-block;
}
.podcast-single .article__time__number {
  display: inline-block;
  padding-left: 5px;
}
.podcast-single .article__custom-fields .player-link {
  display: inline-block;
}
.podcast-single .article__custom-fields .player-link img {
  height: 35px;
}
@media screen and (max-width: 767px) {
  .podcast-single .article__custom-fields .player-link img {
    margin-bottom: 10px;
  }
}
.podcast-single .article__custom-fields .player-link .youtube-player {
  margin-left: 10px;
}
.podcast-single .article__custom-fields .player-link .spotify-player {
  margin-left: 10px;
}

.page__main-block {
  padding: 50px 0 0;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page__main-block {
    padding: 30px 0 0;
  }
}
.page__title {
  position: relative;
  font-size: 40px;
  text-align: center;
  font-family: "Mattone", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .page__title {
    font-size: 32px;
  }
}
.page__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 100px;
  margin-left: -50px;
  border-bottom: 5px solid #FC0171;
}
@media screen and (max-width: 767px) {
  .page__title .author-name {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .page__title .author-surname {
    display: block;
  }
}
.page__page-block {
  padding: 50px 0 30px;
}
.page__content {
  padding: 20px;
  border: 3px solid #222;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  .page__content {
    padding: 0px;
    border: 0;
  }
}
.page__content > * {
  margin-bottom: 20px;
}
.page__content > *:last-child {
  margin-bottom: 0;
}
.page__content h1 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
}
.page__content h2 {
  font-weight: bold;
  font-size: 26px;
  line-height: 30px;
}
.page__content h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
}
.page__content h4 {
  font-weight: bold;
  font-size: 22px;
  line-height: 26px;
}
.page__content h5 {
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
}
.page__content h6 {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
}
.page__content form {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.page__content form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 10px;
}
.page__content form label {
  display: block;
  margin: 0 0 20px 0;
}
.page__content form input {
  width: 100%;
  padding: 10px;
}
.page__content form textarea {
  width: 100%;
  padding: 10px;
}
.page__content form input[type=submit] {
  font-family: "Mattone", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  background: #FC0171;
  color: #ffffff;
  border: none;
}
.page__content form .search-field {
  border: 3px solid #FC0171;
  font-family: "Mattone", sans-serif;
  text-transform: uppercase;
}
.page__content form .wpcf7-not-valid-tip {
  margin-top: 5px;
  color: #EAFF02;
}
.page__content form .wpcf7-response-output {
  padding: 12px 15px;
  margin: 10px 0 0 0;
  border-color: #EAFF02;
}
.page__content form .wpcf7-spinner {
  position: absolute;
  z-index: 10;
  opacity: 0.75 !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: gray;
  border-radius: 0;
}
@media (hover: hover) {
  .page__content form .wpcf7-spinner:hover {
    cursor: not-allowed;
  }
}
.page__content form .wpcf7-spinner::before {
  width: 10px !important;
  height: 10px !important;
  top: calc(50% - 5px) !important;
  left: calc(50% - 5px) !important;
  z-index: 11;
}
.page__content figure figcaption {
  font-size: 12px;
  line-height: 18px;
  font-style: italic;
}
.page__content blockquote {
  padding: 0 30px;
  font-size: 30px;
  line-height: 38px;
  font-style: italic;
  text-transform: uppercase;
  position: relative;
  text-align: center;
}
.page__content blockquote::before, .page__content blockquote::after {
  content: "“";
  font-size: 36px;
  position: absolute;
  color: #EAFF02;
}
.page__content blockquote::before {
  content: "“";
  top: 0;
  left: 0;
}
.page__content blockquote::after {
  content: "”";
  bottom: 0;
  right: 0;
}

.social-container .social-link {
  display: inline-block;
  margin: 0 5px;
}
.social-container .social-icon {
  display: block;
  width: 36px;
}

/*# sourceMappingURL=style.css.map */
