:root {
  --content_widthWithMargins: calc(var(--content_width) + (2 * var(--content_margin_horizontal)));
}
.grama {
  width: 100vw;
  height: 100vh;
  position: absolute;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-size: cover;
  background-color: var(--base);
  background-repeat: no-repeat;
  background-position: center;
}
.grama .grama-body {
  height: 100%;
  width: 100%;
  overflow: auto;
  display: flex;
}
.grama .grama-body .grama-main {
  width: var(--content_widthWithMargins);
  height: 100%;
}
.grama .grama-body .grama-main .grama-header {
  width: 100%;
  padding: var(--content_margin_vertical) var(--content_margin_horizontal);
  border-bottom: 1px solid #CCC;
}
.grama .grama-body .grama-main .grama-content {
  width: 100%;
  padding: 0 var(--content_margin_horizontal);
}
.grama .grama-body .grama-main .grama-footer {
  width: 100%;
  padding: var(--content_margin_vertical) var(--content_margin_horizontal);
}
.grama-feed {
  display: flex;
  flex-wrap: wrap;
}
.grama-text {
  font-family: var(--textfont);
  text-align: justify;
}
.grama-text ol,
.grama-text ul {
  padding-left: 1.3em;
  padding-right: 1.5em;
}
.grama-toggler {
  cursor: pointer;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
::selection {
  text-shadow: none;
  background: var(--primaryTransparent);
}
body {
  font-family: var(--basefont), Roboto, Ubuntu, "Open Sans", "Helvetica Neue", sans-serif;
  background: var(--base);
  color: var(--baseContrast);
  margin: 0;
  overflow-x: hidden;
}
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,
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;
}
a {
  cursor: pointer;
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
p {
  margin: 1em 0;
}
img {
  max-width: 100%;
  display: block;
}
hr {
  position: relative;
  display: block;
  width: 100%;
  margin: 2em 0;
  padding: 0;
}
video,
audio {
  width: 100%;
}
code,
kbd,
pre,
samp {
  font-family: monospace;
}
p > code {
  font-size: 0.8em;
}
pre,
p > code {
  background-color: var(--baseMild);
  padding: 0.4em;
  border-radius: 5px;
  border: 1px solid var(--baseMilder);
  overflow-y: auto;
}
blockquote {
  margin: 1em 0;
  padding: 0 1em;
  border-left: var(--baseMilder) 0.2em solid;
  font-style: italic;
}
table {
  display: inline-block;
  margin: 0.5em 0 2.5em;
  width: auto;
  border-spacing: 0;
  border-collapse: collapse;
  vertical-align: top;
  overflow-x: auto;
  max-width: 100%;
}
table th {
  font-weight: 700;
  text-transform: uppercase;
}
table th,
table td {
  padding: 0.5em 1em;
  border: var(--baseContrastMilder) 1px solid;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-rendering: optimizeLegibility;
  margin: 1.5em 0 0.5em 0;
  font-family: Lato-Bold;
}
h1,
h2 {
  font-weight: 900;
}
h3,
h4 {
  font-weight: 500;
}
h5,
h6 {
  font-weight: 300;
}
h1 {
  margin: 0 0 0.5em 0;
  font-size: 2.5em;
}
h2 {
  font-size: 1.8em;
}
h3 {
  font-size: 1.6em;
}
h4 {
  font-size: 1.4em;
}
h5 {
  font-size: 1.2em;
}
h6 {
  font-size: 1.1em;
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.8em;
  }
  h2 {
    font-size: 1.6em;
  }
  h3 {
    font-size: 1.5em;
  }
}
.centered {
  text-align: center;
}
.centered_image {
  margin: 0 auto;
}
.hidden {
  display: none;
}
.image_subtitle {
  display: block;
  font-size: 0.9em;
  text-align: center;
  color: var(--baseContrastMild);
}
.tag-button {
  border: 2px solid;
  border-color: var(--baseContrastMilder);
  padding: 0.3em 0.7em 0.5em;
  border-radius: 1.2em;
  margin: 0 0.3em;
  display: inline-block;
  margin: 0.1em 0;
}
.tag-button:hover {
  text-decoration: none;
  background-color: var(--hover) !important;
  color: var(--hoverContrast) !important;
}
@font-face {
  font-family: "Lato-Light";
  src: url(../font/Lato-Light.ttf);
}
@font-face {
  font-family: "Lato";
  src: url(../font/Lato-Regular.ttf);
}
@font-face {
  font-family: "Lato-Bold";
  src: url(../font/Lato-Bold.ttf);
}
@font-face {
  font-family: "ZillaSlab-Regular";
  src: url(../font/ZillaSlab-Regular.otf);
}
@font-face {
  font-family: "ZillaSlab-Bold";
  src: url(../font/ZillaSlab-Bold.otf);
}
:root {
  --base: #FFF;
  --baseMild: #EEE;
  --baseMilder: #DDD;
  --baseTransparent: #FFF8;
  --baseTransparentMore: #FFF3;
  --baseTransparentLess: #FFFC;
  --baseContrast: #000;
  --baseContrastMild: #AAA;
  --baseContrastMilder: #DDD;
  --baseContrastTransparent: #0008;
  --baseContrastTransparentMore: #0003;
  --baseContrastTransparentLess: #000C;
  --primary: #26a6ed;
  --primaryTransparent: #26a6ed88;
  --primaryTransparentMore: #26a6ed33;
  --primaryTransparentLess: #26a6edCC;
  --primaryContrast: #000;
  --hover: #AAA;
  --hoverContrast: #FFF;
  --basefont: Lato;
  --basefontLight: Lato-Light;
  --basefontBold: Lato-Bold;
  --textfont: ZillaSlab-Regular;
  --textfontBold: ZillaSlab-Bold;
  --scrollBar: 12px;
  --content_width: 50vw;
  --content_margin_horizontal: 2rem;
  --content_margin_vertical: 1rem;
}
@media (any-pointer: none), (any-pointer: coarse), (max-width: 700px) {
  :root {
    --content_width: 60vw;
  }
}
@media (any-pointer: none), (any-pointer: coarse), (max-width: 600px) {
  :root {
    --content_width: 90vw;
  }
}
.featherlight {
  background: var(--baseContrastTransparentLess) !important;
}
.featherlight .featherlight-content {
  background: var(--base) !important;
}
.featherlight .featherlight-content .featherlight-close-icon {
  color: var(--baseContrast);
  background: var(--baseTransparent);
}
.featherlight .featherlight-content .featherlight-next span,
.featherlight .featherlight-content .featherlight-previous span {
  color: var(--base) !important;
}
.featherlight .featherlight-content .featherlight-image_title {
  position: absolute;
  bottom: 1em;
  background-color: var(--baseTransparentLess);
  text-align: center;
  color: var(--baseContrast);
}
.mtm-gallery .mtp-header_simple h1 {
  font-size: 1.8em;
  margin-bottom: 0;
}
.mtp-author_card {
  padding: 20px 20px 22px;
  position: absolute;
  bottom: 130%;
  left: 50%;
  z-index: 600;
  display: flex;
  justify-content: space-between;
  margin-left: -200px;
  width: 400px;
  font-size: 0.8em;
  background: var(--base);
  border-radius: 3px;
  box-shadow: rgba(39, 44, 49, 0.08) 0 12px 26px, rgba(39, 44, 49, 0.06) 1px 3px 8px;
  transition: all 0.35s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transform: scale(0.98) translateY(15px);
  opacity: 0;
  pointer-events: none;
}
.mtp-author_card:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  display: block;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid var(--base);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
.mtp-author_card.hovered {
  opacity: 1;
  transform: scale(1) translateY(0px);
  pointer-events: auto;
}
.mtp-author_card .mtp-author_card--profile_image {
  width: 100px;
}
.mtp-author_card .mtp-author_avatar {
  flex: 0;
  min-width: 40px;
}
.mtp-author_card .mtp-author_card--info {
  flex: 1;
  margin-left: 1em;
}
.mtp-author_card .mtp-author_card--info .info-name {
  font-size: 1.5em;
  text-transform: uppercase;
}
.mtp-author_card .mtp-author_card--info .info-text {
  padding-top: 0.5em;
}
.mtp-author_card .mtp-author_card--info .info-text * {
  font-size: 1em;
  color: inherit;
  margin: 0;
}
.mtp-author_card .mtp-author_card--info .info-more_posts {
  padding-top: 0.5em;
}
.mtp-author_card .mtp-author_card--info .info-more_posts a {
  /* color: var(--primary); */
  text-decoration: underline;
}
.mtp-author_card .mtp-author_card--info .info-more_posts a:hover {
  color: var(--hover);
}
.mtp-feed-no_posts_placeholder {
  text-align: center;
  width: 100%;
  color: var(--baseContrastMild);
  font-size: 1.2em;
  margin-top: 4em;
}
.grama-footer.mtp-post_footer {
  border-top: var(--baseContrast) solid 2px;
  padding: 1em var(--content_margin_horizontal);
  display: flex;
  flex-direction: column;
}
.grama-footer.mtp-post_footer .mtp-post_footer--title {
  font-size: 2em;
  font-family: var(--basefontBold);
  font-weight: 900;
  padding-bottom: 0.3em;
}
.grama-footer.mtp-post_footer .mtp-post_footer--previous_and_next .mtp-post_footer--previous_and_next-posts {
  display: flex;
  flex-wrap: wrap;
}
.grama-footer.mtp-post_footer .mtp-post_footer--more_with_this_tag {
  padding: 1em 0;
}
.grama-footer.mtp-post_footer .mtp-post_footer--more_with_this_tag .mtp-post_footer--more_with_this_tag-posts {
  padding-bottom: 0.5em;
}
.grama-footer.mtp-post_footer .mtp-post_footer--more_with_this_tag .mtp-post_footer--more_with_this_tag-posts .mtp-post_footer--related {
  padding-top: 0.5em;
}
.grama-footer.mtp-post_footer .mtp-post_footer--more_with_this_tag .mtp-post_footer--more_with_this_tag-posts .mtp-post_footer--related .related-title {
  color: var(--baseContrast);
}
.grama-footer.mtp-post_footer .mtp-post_footer--more_with_this_tag .mtp-post_footer--more_with_this_tag-posts .mtp-post_footer--related .related-meta {
  font-size: 0.7em;
  text-transform: uppercase;
  color: var(--baseContrastMild);
}
.grama-footer.mtp-post_footer .mtp-post_footer--more_with_this_tag .mtp-post_footer--more_with_this_tag-button {
  text-align: center;
}
.grama-footer.mtp-post_footer .mtp-post_footer--more_with_this_tag .mtp-post_footer--more_with_this_tag-button a {
  border: 2px solid;
  border-color: var(--baseContrastMilder);
  padding: 0.3em 0.7em 0.5em;
  border-radius: 1.2em;
  margin: 0 0.3em;
  display: inline-block;
  margin: 0.1em 0;
}
.grama-footer.mtp-post_footer .mtp-post_footer--more_with_this_tag .mtp-post_footer--more_with_this_tag-button a:hover {
  text-decoration: none;
  background-color: var(--hover) !important;
  color: var(--hoverContrast) !important;
}
.mtp-post_headline {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1em 0;
}
.mtp-post_headline .content {
  margin-left: 1em;
  font-size: 0.7em;
  text-transform: uppercase;
}
.mtp-post_headline .content .authors a {
  color: var(--baseContrast);
}
.mtp-post_headline .content .details {
  color: var(--baseContrastMild);
}
.mtp-post_headline .content .details.details-full_width {
  display: flex;
  flex-direction: row;
}
.mtp-post_headline .content .details.details-full_width .delimiter {
  padding: 0 0.3em;
}
.mtp-post_headline .mtp-post_headline--tags_list {
  text-align: right;
  display: inline-block;
  flex: 1;
  font-size: 0.7em;
}
.mtp-post_card_image > img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px;
  width: 100%;
  height: 200px;
  background: transparent no-repeat center center;
  object-fit: cover;
}
.mtp-wiki_card .mtp-wiki_card--title {
  color: inherit;
}
.mtp-nav {
  width: 100%;
  background: var(--base);
  color: var(--baseContrast);
  font-family: var(--basefontLight), sans-serif;
  font-size: 1.7em;
  padding: 0.5em;
  text-align: center;
  z-index: 100;
  position: relative;
}
.mtp-nav.mtp-nav_top {
  order: 0;
  border-bottom: var(--baseContrast) 1px solid;
}
.mtp-nav.mtp-nav_bottom {
  order: 1;
  border-top: var(--baseContrast) 1px solid;
}
.mtp-nav a {
  color: var(--baseContrast);
}
.mtp-nav img {
  height: 1.5em;
}
.mtp-nav .mtp-nav--pageslist {
  float: right;
  display: flex;
  align-items: center;
}
.mtp-nav .mtp-nav--current {
  text-decoration: underline;
}
.mtp-nav .mtp-nav--navbar_separator {
  padding: 0 5px;
}
.mtp-nav .mtp-nav--post_title {
  visibility: hidden;
  position: absolute;
  padding-top: 0.15em;
  top: 9px;
  font-size: 1.7rem;
  font-weight: 400;
  text-transform: none;
  opacity: 0;
  color: var(--baseContrast);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateY(175%);
  font-family: var(--basefont);
  width: 100%;
  left: 0;
}
.mtp-nav .mtp-nav--pageslist,
.mtp-nav .mtp-langswitcher {
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.mtp-nav.mtp-nav_post_title_active .mtp-nav--post_title {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.mtp-nav.mtp-nav_post_title_active .mtp-nav--pageslist,
.mtp-nav.mtp-nav_post_title_active .mtp-langswitcher {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-175%);
}
@media (any-pointer: none), (any-pointer: coarse), (max-width: 700px) {
  .mtp-nav {
    font-size: 1.3em;
  }
  .mtp-nav--pageslist,
  .mtp-langswitcher {
    float: none !important;
  }
}
.mtp-tags_list .mtp-tags_list--tag {
  border: 2px solid;
  border-color: var(--baseContrastMilder);
  padding: 0.3em 0.7em 0.5em;
  border-radius: 1.2em;
  margin: 0 0.3em;
  display: inline-block;
  margin: 0.1em 0;
}
.mtp-tags_list .mtp-tags_list--tag:hover {
  text-decoration: none;
  background-color: var(--hover) !important;
  color: var(--hoverContrast) !important;
}
.grama-header.mtp-header_with_image {
  padding: 0 !important;
}
.grama-header.mtp-header_with_image .mtp-header_with_image--head {
  padding: 10vw 0 1rem;
  color: var(--baseContrast);
  background-color: var(--primaryTransparentMore);
  background-repeat: no-repeat;
  background-size: cover;
}
.grama-header.mtp-header_with_image .mtp-header_with_image--head .mtp-header_with_image--head-bar {
  background-color: var(--baseTransparent);
  color: var(--baseContrast);
  padding: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.grama-header.mtp-header_with_image .mtp-header_with_image--text {
  padding: 0 var(--content_margin_horizontal) var(--content_margin_vertical);
}
.mtp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.mtp-gallery .mtp-gallery--image {
  display: flex;
  flex-direction: column;
}
.mtp-gallery .mtp-gallery--image a {
  display: flex;
  justify-content: center;
}
.mtp-gallery .mtp-gallery--image .mtp-gallery--image_title {
  text-align: center;
}
.mtp-authors_avatars {
  justify-content: flex-start;
  padding: 0 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 4px;
  padding: 0;
  list-style: none;
}
.mtp-authors_avatars .mtp-authors_avatars--avatar {
  position: relative;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}
.mtp-authors_avatars .mtp-authors_avatars--avatar .mtp-author_avatar {
  max-width: none;
  display: block;
  overflow: hidden;
  margin: 0 -10px;
  /* transition: all 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99) 700ms; */
}
.mtp-author_avatar {
  width: 40px;
  height: 40px;
  border: var(--base) 3px solid;
  background-color: var(--primaryTransparent);
  border-radius: 100%;
}
:root {
  /* the space left on each side of the content minus the content margin */
  --side-width: calc(((100vw - var(--content_width)) / 2) - var(--content_margin_horizontal));
}
.mtp-side {
  position: fixed;
  bottom: 0;
  height: 100%;
  width: var(--side-width);
}
.mtp-side img {
  width: 100%;
}
.mtp-side_left {
  left: 0;
}
.mtp-side_right {
  right: 0;
}
.mtp-langswitcher {
  float: left;
  transform: none;
  text-transform: lowercase;
  position: revert;
}
.mtp-langswitcher .active {
  text-decoration: underline;
}
.mtp-post_card {
  text-align: justify;
  padding: 1em;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 301px;
  border-bottom: var(--baseContrastMilder) solid 1px;
  display: flex;
  flex-direction: column;
}
.mtp-post_card.mtp-post_card_full_width {
  flex-basis: 901px;
}
.mtp-post_card p {
  margin: 0.4em 0;
}
.mtp-post_card .mtp-post_card--content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.mtp-post_card .mtp-post_card--content .content-link {
  position: relative;
  display: block;
  color: var(--baseContrast);
  flex: 1;
}
.mtp-post_card .mtp-post_card--content .content-link:hover {
  text-decoration: none;
}
.mtp-post_card .mtp-post_card--content .content-link .content-link-title {
  font-family: var(--basefontBold);
  font-size: 1.6em;
}
.mtp-post_card .mtp-post_card--content .content-link .content-link-excerpt {
  color: var(--baseContrastMild);
  padding-top: 0.5em;
}
.mtp-post_card .mtp-post_card--content .content-read_more {
  margin-top: 0.5em;
}
