:root {
  --strawberry-light-background-color: #fff;
  --strawberry-background-color: #f6f2ea;
  --strawberry-text-color: #222222;
  --strawberry-accent-color: #cc0000;
  --strawberry-header-height-mobile: 50px;
  --strawberry-header-background-color: #000000;
  --strawberry-header-text-color: #ffffff;
  --strawberry-navbar-background-color: #ffffff;
  --strawberry-navbar-text-color: #000000;
  --strawberry-footer-background-color: #000000;
  --strawberry-footer-text-color: #ffffff;
  --strawberry-modal-text-color: var(--strawberry-header-text-color);
  --strawberry-modal-background-color: var(--strawberry-header-background-color);
  --strawberry-text-font: "SplineSans", "Helvetica", "Arial", serif;
  --strawberry-title-font: "ProximaNova", "Helvetica", "Arial", sans-serif;
  --strawberry-sans-font: "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  --swiper-theme-color: #0F182A;
  --strawberry-magnifier-color: #333333;
  --strawberry-bars-color: rgba(255, 255, 255, .7);
  --strawberry-divider-color: rgba(0, 0, 0, .1);
  --strawberry-sticky-top: 60px;
  --strawberry-wide-nav-width: 300px;
  --strawberry-form-background-color: #efefef;
  --strawberry-form-text-color: #333333;
  --strawberry-form-font-size: 14px;
}

.dark {
  --strawberry-light-background-color: rgba(255, 255, 255, .1);
  --strawberry-background-color: #0c1014;
  --strawberry-header-background-color: #000000;
  --strawberry-text-color: rgba(255, 255, 255, .9);
  --strawberry-divider-color: rgba(255, 255, 255, .2);
  --strawberry-accent-color: rgba(255, 255, 255, .9);
  --strawberry-modal-text-color: var(--strawberry-text-color);
  --strawberry-modal-background-color: var(--strawberry-header-background-color);
  --strawberry-form-background-color: #444444;
  --strawberry-form-text-color: #efefef;
}

/* Colors */
@media (min-width: 971px) {
  .max-width-630 {
    max-width: 630px;
  }
}
.logged-in {
  --strawberry-sticky-top: 100px;
}

@media (max-width: 767px) {
  #wpadminbar {
    max-width: 100%;
    overflow: hidden;
  }
}
body {
  font-family: var(--strawberry-text-font), serif;
  font-weight: 500;
  background-color: var(--strawberry-background-color);
  color: var(--strawberry-text-color);
  line-height: 1.2;
}
body a {
  color: inherit;
}

.reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: 0;
}

.blockfill {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}

.hide-icon .icon {
  opacity: 0;
}

@media (max-width: 767px) {
  .xs\:hide-icon .icon {
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .sm\:hide-icon .icon {
    opacity: 0;
  }
}
@media (min-width: 768px) and (max-width: 970px) {
  .smo\:hide-icon .icon {
    opacity: 0;
  }
}
@media (max-width: 970px) {
  .smb\:hide-icon .icon {
    opacity: 0;
  }
}
@media (min-width: 971px) {
  .md\:hide-icon .icon {
    opacity: 0;
  }
}
@media (min-width: 971px) and (max-width: 1399px) {
  .mdo\:hide-icon .icon {
    opacity: 0;
  }
}
@media (max-width: 1399px) {
  .mdb\:hide-icon .icon {
    opacity: 0;
  }
}
@media (min-width: 1400px) {
  .lg\:hide-icon .icon {
    opacity: 0;
  }
}
.shadow {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.more-pages a {
  display: inline-block;
  background-color: #ed1b26;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
}

.headline {
  font-family: var(--strawberry-title-font), sans-serif;
  font-size: clamp(1rem, 1rem + (1.625rem - 1rem) * (100vw - 320px) / (1200px - 320px), 1.625rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  line-height: 100%;
  margin-bottom: 0.9375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .headline {
    margin-bottom: 1.25rem;
  }
}
.headline span, .headline a {
  display: inline-block;
  position: relative;
}

.marquee {
  position: relative;
  overflow: hidden;
  --offset: 20vw;
  --move-initial: calc(1 + var(--offset));
  --move-final: calc(-50% + var(--offset));
  background-color: var(--strawberry-header-background-color);
  color: var(--strawberry-header-text-color);
}
@media (min-width: 971px) {
  .marquee {
    background-color: #d00906;
    color: white;
    z-index: 1000;
    left: 0;
    width: 100%;
  }
}

.marquee__inner {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 50s linear 3s infinite;
  animation-play-state: paused;
  padding: 5px 0;
}

.marquee a {
  font-family: monospace;
  color: inherit;
  padding: 0 1vw;
  opacity: 0.9;
}

.marquee .marquee__inner {
  animation-play-state: running;
}

.marquee:hover .marquee__inner {
  animation-play-state: paused;
}
.marquee:hover .marquee__inner a {
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
hr.spacer {
  height: 0;
  border: 0;
  border-top: 1px solid #fff;
  background-color: transparent;
  margin: 10px 0;
}

iframe.wp-embedded-content {
  max-width: 100% !important;
}

.video-wrapper, .iframe_youtube_wrapper {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
}
@supports not (aspect-ratio: 16/9) {
  .video-wrapper, .iframe_youtube_wrapper {
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
  }
}
.video-wrapper embed,
.video-wrapper iframe,
.video-wrapper object,
.video-wrapper video, .iframe_youtube_wrapper embed,
.iframe_youtube_wrapper iframe,
.iframe_youtube_wrapper object,
.iframe_youtube_wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#wpadminbar {
  max-width: 100%;
}
@media (max-width: 767px) {
  #wpadminbar {
    overflow: hidden;
  }
}

.reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: 0;
}

.aligncenter {
  text-align: center;
}
.aligncenter img {
  margin: 0 auto;
}

body.admin-bar:after {
  content: "display size";
  display: block;
  bottom: 0;
  position: fixed;
  right: 0;
  background-color: red;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 767px) {
  body.admin-bar:after {
    content: "Phone";
  }
}
@media (min-width: 768px) {
  body.admin-bar:after {
    content: "Tablet";
  }
}
@media (min-width: 971px) {
  body.admin-bar:after {
    content: "Desktop";
  }
}

@media (max-width: 970px) {
  :root {
    --strawberry-header-background-color: #000000;
    --strawberry-header-text-color: #ffffff;
  }
}
.header {
  width: 100%;
  left: 0;
  z-index: 9998;
  position: fixed;
  top: 0;
}
.single-post .header {
  position: sticky;
}
@media (min-width: 768px) {
  .header {
    position: sticky;
  }
}
.header .top {
  padding: 10px 0;
  background-color: var(--strawberry-header-background-color);
  color: var(--strawberry-header-text-color);
}
@media (max-width: 970px) {
  .header .top {
    padding: 10px 15px;
  }
}
.header .top .navbar ul li a {
  font-size: clamp(1rem, 1rem + (2rem - 1rem) * (100vw - 320px) / (1200px - 320px), 2rem);
}
.header .bottom {
  background-color: var(--strawberry-navbar-background-color);
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.25s;
}
.scrolled .header .bottom {
  max-height: 0;
  transition: max-height 0.25s;
}
.header .marquee {
  max-height: 50px;
  transition: max-height 0.25s;
  overflow: hidden;
}
@media (max-width: 767px) {
  .scrolled .header .marquee {
    max-height: 0;
    transition: max-height 0.25s;
  }
}
.header.sticky {
  position: sticky;
  top: 0;
}
@media (min-width: 971px) {
  .admin-bar .header {
    top: 32px;
  }
}
@media (min-width: 768px) and (max-width: 970px) {
  .admin-bar .header {
    top: 46px;
  }
}
.header .logo .home a {
  display: inline-block;
  height: 53px;
}
.header .logo img, .header .logo svg {
  width: 165px;
  height: 35px;
  transition: transform 0.3s;
  transform: translateX(0);
}
@media (max-width: 767px) {
  .home .header .logo img, .home .header .logo svg {
    width: 230px;
    height: 49px;
    transition: width 0.3s, height 0.3s;
  }
}
@media (max-width: 767px) {
  .home.scrolled .header .logo img, .home.scrolled .header .logo svg {
    width: 124px;
    height: 26px;
    transition: width 0.3s, height 0.3s;
  }
}
.header .smalltip {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ed1b26;
  color: white;
  font-size: 0.75rem;
  border-radius: 30px;
  overflow: hidden;
  line-height: 100%;
  text-transform: uppercase;
  transform: rotate(10deg);
}
.header__wrapper {
  display: flex;
  flex-direction: column;
}
.header__wrapper .navbar {
  transition: padding 0.3s;
}

.footer {
  background-color: var(--strawberry-footer-background-color);
  color: var(--strawberry-footer-text-color);
  position: relative;
  font-size: 15px;
  padding: 1.875rem 0;
}
.footer .logo svg {
  max-height: 3.125rem;
  height: 3.125rem;
  width: 4.0625rem;
}
.footer .menu {
  flex-basis: 100%;
}
.footer .menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 970px) {
  .footer .menu ul {
    gap: 15px;
  }
}
.footer .menu ul li a {
  font-weight: 600;
  color: inherit;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 767px) {
  .footer .menu ul li a {
    padding: 0 0.5em;
  }
}
.footer .menu ul li > ul {
  display: none;
}
.footer .social-icons a {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--strawberry-footer-text-color);
  border-radius: 100%;
}
.footer .social-icons a svg {
  fill: var(--strawberry-footer-text-color);
  width: 16px;
  height: 16px;
}

.comments {
  margin-bottom: 30px;
}
.comments__heading {
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
}
.comments__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.comments__list.children {
  padding-left: 30px;
  border-left: 3px solid #efefef;
}
.comments__cta {
  text-align: center;
  font-weight: bold;
  border-radius: 4px;
  background-color: #000000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}
.comments__cta svg {
  fill: white;
}
.comments .comment {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 30px;
  color: #0d1013;
  position: relative;
}
@media (max-width: 767px) {
  .comments .comment {
    gap: 10px;
  }
}
.comments .comment .children {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 30px;
}
.comments .comment:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ABABAB;
  position: absolute;
  left: 0;
  bottom: -15px;
}
.comments .comment__avatar {
  min-width: 40px;
  height: 40px;
}
.comments .comment__avatar a {
  display: block;
  overflow: hidden;
  border-radius: 100%;
}
.comments .comment__author {
  position: relative;
}
.comments .comment__author:after {
  content: "|";
  position: absolute;
  top: 0;
  right: -15px;
}
.comments .comment__meta {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  gap: 30px;
  color: #000;
}
.comments .comment__datetime {
  color: #ABABAB;
}
.comments .comment__content {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #0d1013;
}
@media (max-width: 767px) {
  .comments .comment__content {
    font-size: 14px;
  }
}
.comments .comment__tools {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: 0;
  display: flex;
  flex-direction: row;
  gap: 30px;
  color: #ABABAB;
}
.comments .comment__tools li a {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.comment-respond {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
}
.comment-respond p {
  margin-bottom: 20px;
}
.comment-respond .comment-reply-title {
  font-family: var(--strawberry-title-font);
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
}
.comment-respond .logged-in-as {
  margin-bottom: 10px;
}
.comment-respond .logged-in-as a {
  text-decoration: underline;
}
.comment-respond .comment-form-comment label {
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 970px) {
  .comment-respond .comment-form-comment label {
    width: 100%;
  }
}
.comment-respond .comment-form-comment textarea {
  width: 100%;
  font-size: 16px;
  margin-bottom: 10px;
  border: 1px solid #efefef;
  padding: 10px;
  box-sizing: border-box;
  color: #000;
}
@media (max-width: 970px) {
  .comment-respond label {
    display: block;
    margin-bottom: 5px;
    width: 100%;
  }
}
.comment-respond input[type=text] {
  font-size: 14px;
  line-height: 30px;
  text-indent: 10px;
  border: 1px solid #efefef;
  color: #000;
  background-color: #fff;
  max-width: 100%;
  min-width: 50%;
}
@media (max-width: 970px) {
  .comment-respond input[type=text] {
    min-width: 100%;
  }
}
.comment-respond .comment-awaiting-moderation {
  margin-bottom: 10px;
  padding: 5px;
  color: #ed1b26;
  border: 1px solid #ed1b26;
}
.comment-respond .form-submit .submit {
  font-size: 14px;
  background-color: #0d1013;
  color: #ffffff;
  padding: 7px 30px;
}

@media (min-width: 768px) and (max-width: 970px) {
  .layout {
    max-width: 700px;
    margin: 0 auto;
  }
}
@media (min-width: 971px) {
  .layout .bottom {
    position: fixed;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.3s ease-in-out;
    width: 200px;
  }
  .scrolled .layout .bottom {
    opacity: 0.2;
    transition: opacity 0.3s ease-in-out;
  }
  .scrolled .layout .bottom:hover {
    opacity: 1;
  }
  .layout .advertising {
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    background-color: #22c55e;
    color: white;
    border-radius: 10px;
    text-align: center;
  }
  .layout .tip {
    text-align: center;
  }
  .layout .tip b {
    display: block;
    font-size: 23px;
    padding: 10px;
    background-color: #ed1b26;
    border-radius: 10px;
  }
  .layout .tip b a {
    color: white;
  }
  .layout .tip i {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 16px;
  }
  .layout .tip i em {
    font-style: normal;
    font-size: 18px;
    font-weight: bold;
  }
  .layout .swiper-wrapper {
    flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 1350px) {
  .layout .content aside.left {
    display: none;
  }
}
.layout .card video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .layout .has-video {
    background-color: #000000;
    position: relative;
  }
  .layout .has-video a {
    opacity: 0;
  }
  .layout .has-video video {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    left: 0;
  }
}
@media (max-width: 767px) {
  .layout #main-slider {
    scroll-snap-type: y mandatory;
    height: 100vh;
    overflow-y: auto;
    overflow-x: clip;
  }
}
@media (max-width: 767px) {
  .layout {
    /* main {
         height: 100dvh !important;
         overflow: auto !important;
         scroll-snap-type: y mandatory;
     }*/
  }
  .layout .slide {
    width: 100%;
    height: calc(var(--vh) * 100);
    scroll-snap-align: start end;
    scroll-snap-stop: always;
    overflow-y: clip;
  }
}

.archive__wrapper {
  max-width: 970px;
  margin: 0 auto;
}
.archive__intro {
  padding-bottom: 30px;
  margin: 0 0 30px 0;
  border-bottom: 2px solid #000000;
}
.archive__intro .title {
  font-size: 1.875rem;
  font-weight: bold;
}
@media (max-width: 970px) {
  .archive__intro .title {
    font-size: 1.625rem;
  }
}
.archive__intro .description {
  font-size: 0.9375rem;
  line-height: 1.3;
  font-weight: 400;
  margin-top: 20px;
  max-height: 2.5em;
  overflow: hidden;
  transition: max-height 0.3s;
  margin-bottom: 10px;
}
.archive__intro .description.open {
  max-height: 500px;
  transition: max-height 0.3s;
}
.archive__intro .description h2 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.archive__intro .description p {
  margin-bottom: 10px;
}
.archive__intro .description p:last-of-type {
  margin-bottom: 0;
}
.archive__intro .toggle-description {
  color: blue;
}
.archive__intro .biography__picture {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive__description {
  font-size: 0.875rem;
}
.archive__description.closed {
  max-height: 250px;
  overflow: hidden;
  position: relative;
}
.archive__description.closed:before {
  content: "";
  background: linear-gradient(0deg, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
}
.archive__description.closed:after {
  content: "+";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 2px solid #000;
  background-color: #fff;
  bottom: -10px;
  left: 50%;
  transform: translateY(-10px);
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding: 5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  color: #000;
}
.archive__description h2 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.archive__description p {
  margin-bottom: 10px;
}
.archive__description p:last-of-type {
  margin-bottom: 0;
}

.sub {
  font-family: var(--strawberry-title-font);
  margin-bottom: 40px;
}
.sub__title {
  font-size: 2.5rem;
  font-weight: 900;
  padding: 20px 0;
  border-top: 5px solid #000;
  position: relative;
}
.sub__title a:hover {
  opacity: 0.6;
}
.sub__title a.more {
  font-size: 0.8125rem;
  font-weight: 400;
  text-decoration: underline;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.searchpage {
  font-family: var(--strawberry-title-font);
}
.searchpage__title {
  font-size: 1.875rem;
  font-weight: 700;
  padding: 10px 0;
  border-top: 3px solid #000;
}
.searchpage__header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--strawberry-divider-color);
}

.single__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 970px) {
  .single__container {
    gap: 15px;
  }
}
.single__breadcrumbs {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  opacity: 0.7;
}
.single__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.single__title h1 {
  display: block;
}
.single__media {
  position: relative;
}
.single__media .feature-image-caption {
  font-size: 0.8rem;
  padding: 10px 0;
  margin: 0 auto 10px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--strawberry-divider-color);
}
.dark .single__media .feature-image-caption {
  background-color: #000000;
}
@media (max-width: 767px) {
  .single__media .feature-image-caption {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}
.single__media a.stretch {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
}
.single__media .icon {
  display: none;
}
.single__label {
  background-color: #0d1013;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 10px;
}
@media (max-width: 767px) {
  .single__label {
    font-size: 16px;
  }
}
.single__label-exclusiv {
  background-color: #ffd203;
  color: #0d1013;
}
.single__photo_caption {
  font-size: 12px;
  font-style: italic;
  padding: 5px 10px;
  color: #ABABAB;
  border-bottom: 1px solid #ABABAB;
}
.single__gallery {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  display: flex;
  gap: 5px;
}
.single__gallery-button {
  position: absolute;
  bottom: 20px;
  right: 40px;
  padding: 10px 30px 10px 10px;
  text-transform: uppercase;
  font-family: var(--strawberry-sans-font);
  font-weight: bold;
  font-size: 14px;
  border-radius: 5px;
  background-color: #0d1013;
  color: #ffffff;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .single__gallery-button {
    font-size: 12px;
  }
}
.single__gallery-button i {
  font-size: 2em;
  font-style: normal;
  width: 2em;
  height: 2em;
  border-radius: 100%;
  overflow: hidden;
  background-color: #ffffff;
  color: #0d1013;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -1em;
}
.single__gallery-button:hover {
  background-color: #ed1b26;
}
.single__gallery-button:hover i {
  color: red;
}
.single__gallery button {
  margin: 0;
  padding: 0;
  position: relative;
}
.single__gallery .more {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
}
.single__gallery .more i, .single__gallery .more b {
  font-style: normal;
  display: block;
  color: #ffd203;
  font-size: 14px;
}
.single__gallery .more b {
  font-size: 16px;
}
@media (max-width: 767px) {
  .single__inline-gallery {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.single__gallery-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.single__gallery-hint:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background-color: #ffffff;
  top: -12px;
  left: -13px;
  border-radius: 0.625rem;
  clip-path: polygon(0% 0%, 0% 100%, 10% 100%, 10% 17%, 11% 15%, 13% 12%, 16% 10%, 102% 10%, 100% 0%);
}
.single__gallery-hint em {
  border-radius: 0.5rem;
  background-color: #ffffff;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  font-style: normal;
}
.single__gallery-hint b {
  font-size: 2.5rem;
  color: #ed1b26;
}
.single__gallery-hint span {
  font-size: 0.875rem;
  text-transform: uppercase;
}
.single__meta a:hover {
  color: var(--strawberry-accent-color);
  text-decoration: underline;
}
.single__meta .sma_authors_images, .single__meta .avatar {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 100%;
  overflow: hidden;
}
.single__meta .sma_authors_images img, .single__meta .avatar img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single__content {
  display: flex;
  flex-direction: column;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (max-width: 970px) {
  .single__content {
    padding-bottom: 20px;
    max-width: 100%;
  }
}
.single__text {
  font-size: 1.125rem;
  font-weight: 400;
  color: inherit;
  line-height: 1.5;
  text-align: left !important;
  padding-bottom: 30px;
  border-bottom: 2px solid #000000;
}
.single__text ::-moz-selection {
  background-color: rgba(255, 210, 3, 0.6);
}
.single__text ::selection {
  background-color: rgba(255, 210, 3, 0.6);
}
@media (max-width: 970px) {
  .single__text {
    font-size: 1.125rem;
  }
}
.single__text a {
  color: inherit;
}
.single__text p {
  margin: 0 0 20px 0;
  word-wrap: break-word;
  text-align: left !important;
}
.single__text p > a {
  color: inherit;
  text-decoration: underline;
  padding: 0;
}
.single__text p > a:hover {
  color: #ed1b26;
}
.single__text p:last-of-type {
  margin-bottom: 0;
}
.single__text h2, .single__text h3, .single__text h4, .single__text h5, .single__text h6 {
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 10px;
  color: inherit;
  text-align: left !important;
}
.single__text h2 a, .single__text h3 a, .single__text h4 a, .single__text h5 a, .single__text h6 a {
  text-decoration: underline;
  color: #ed1b26;
}
.single__text h2:has(a), .single__text h3:has(a), .single__text h4:has(a), .single__text h5:has(a), .single__text h6:has(a) {
  font-size: 1.125rem;
}
.single__text h2 {
  font-size: 1.5em;
  position: relative;
  line-height: 1.2;
}
.single__text h3 {
  font-size: 1.4em;
}
.single__text h4 {
  font-size: 1.3em;
}
.single__text strong {
  font-weight: 700;
}
.single__text em, .single__text i {
  font-style: italic;
}
.single__text ul {
  list-style-type: disc;
  margin-left: 0;
  padding: 0 0 0 20px;
}
.single__text ol {
  list-style-type: decimal;
  margin-left: 0;
  padding: 0 0 0 20px;
}
.single__text .strawberry-ads {
  min-height: 280px;
  margin-bottom: 10px;
}
.single__text .wp-block-quote, .single__text blockquote {
  color: inherit;
  margin: 0 0 20px 0;
  position: relative;
}
.single__text .wp-block-quote p, .single__text blockquote p {
  font-style: italic;
}
.single__text .wp-block-quote p:last-of-type, .single__text blockquote p:last-of-type {
  margin-bottom: 0;
}
.single__text .strawberry-ads, .single__text .ap_container {
  margin-bottom: 20px;
  padding: 0;
}
.single__text .video-wrapper {
  margin-bottom: 20px;
}
.single__text iframe[src*=youtu], .single__text iframe[src*=faceb] {
  background-color: #ffffff;
  max-width: 100%;
}
.single__text iframe[src*=instag] {
  background-color: #ffffff;
  max-width: 100%;
  margin: 0 auto 20px !important;
}
@media (max-width: 767px) {
  .single__text img {
    width: 100%;
    height: auto;
  }
}
.single__text .wp-caption {
  background-color: rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
}
.single__text .wp-caption img {
  max-width: 100%;
  height: auto !important;
}
.single__text .wp-caption img.alignnone {
  margin: 10px auto;
}
@media (max-width: 767px) {
  .single__text .wp-caption img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .single__text .wp-caption {
    width: calc(100% + 40px) !important;
    max-width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}
.single__text .wp-caption .wp-caption-text {
  text-align: left;
  background-color: inherit;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  padding: 10px;
}
@media (max-width: 970px) {
  .single__text .wp-caption .wp-caption-text {
    padding: 10px 20px;
  }
}
.single__text .wp-caption > p {
  margin: 0;
}
.single__text--gallery {
  position: relative;
}
.single__text--gallery button {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
}
.single__text--gallery button svg {
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .single__text--gallery button svg {
    width: 40px;
    height: 40px;
  }
}
.single__text .containedArticle {
  font-size: 0.875rem;
}
.single__text .containedArticle a {
  text-decoration: underline;
}
.single__text .containedArticle a:first-of-type {
  display: none;
}
.single__text .containedArticle .containedArticleClear {
  display: none;
}
.single__text .containedArticle {
  margin-top: 10px;
}
.single__summary {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.single__summary .headline {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  text-align: left;
}
.single__summary .chapters {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: 0;
}
.single__summary .chapters li:not(:last-child) {
  margin-bottom: 10px;
}
.single__summary .chapters li a {
  display: block;
  padding-left: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}
.single__summary .chapters li a:after {
  content: "";
  display: block;
  width: 0;
  background-color: transparent;
  border-color: transparent transparent transparent #ed1b26;
  border-style: solid;
  border-width: 5px 7px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .single__summary .chapters li a:after {
    border-width: 3px 4px;
    transform: translate(3px, -50%);
  }
}
.single__summary .chapters li a:after {
  top: 4px;
  transform: none;
}
.single__summary .chapters li a:hover {
  color: #ed1b26;
}
.single__tags {
  font-size: 0.8rem;
  line-height: 2em;
  font-weight: bold;
  color: #0d1013;
  text-transform: uppercase;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 767px) {
  .single__tags {
    margin-bottom: 20px;
  }
}
.single__tags a {
  font-size: 0.8125rem;
  line-height: 1.4;
  padding: 3px 10px;
  color: var(--strawberry-background-color);
  background-color: var(--strawberry-text-color);
  text-transform: lowercase;
  font-weight: normal;
  border-radius: 10px;
}
.single__follow {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .single__follow {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.single__follow a {
  flex-basis: 100%;
  display: block;
  text-align: center;
}
.single__follow a svg {
  max-width: 100%;
  max-height: 20px;
  width: auto;
}
@media (max-width: 767px) {
  .single__follow a {
    flex-basis: auto;
  }
}
.single__aside {
  grid-area: aside;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single__aside .half {
  flex-basis: 100%;
}
.single__aside .half:nth-of-type(2) {
  display: flex;
  flex-direction: column;
}
.single__under {
  grid-area: under;
}
@media (min-width: 768px) and (max-width: 970px) {
  .single__related {
    max-width: 768px;
    margin: 20px auto 0;
  }
}
.single__social .network {
  display: flex;
  justify-content: left;
  gap: 20px;
  margin-top: auto;
  align-items: center;
}
.single__social .network strong {
  margin: 0;
}
.single__social .network a {
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
  justify-content: center;
  border-radius: 5px;
  color: var(--strawberry-text-color);
  border: 1px solid var(--strawberry-text-color);
  background-color: var(--strawberry-background-color);
}
.single__social .network a svg {
  width: 16px;
  height: 16px;
  fill: var(--strawberry-text-color);
}
.single__social .network a span {
  display: block;
  margin-left: 10px;
  font-size: 13px;
}

@media (min-width: 1280px) {
  .single-with-video .page_wrapper .single__header {
    width: 100%;
  }
}

.single-special header.header {
  background-color: #000000;
  color: #ffffff !important;
}
.single-special header.header a {
  color: #ffffff !important;
}
.single-special header.header svg {
  fill: #ffffff !important;
}
.single-special header.header #main-nav.navbar {
  border-color: #ffffff;
}

.single-special .single__header {
  background-color: #000000;
  color: #ffffff;
}
.single-special .single__header a {
  color: #ffffff;
}
.single-special .single__header svg {
  fill: #ffffff;
}

.page__wrapper {
  display: flex;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
}
@media (min-width: 768px) and (max-width: 970px) {
  .page__wrapper {
    max-width: 700px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .page__wrapper {
    padding: 15px;
  }
}
.page__content {
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .page__content {
    font-size: 14px;
    padding: 0;
  }
}
.page__content a {
  color: #2f45ff;
  text-decoration: underline;
}
.page__content p {
  margin: 0 0 20px 0;
}
.page__content h1, .page__content h2, .page__content h3, .page__content h4, .page__content h5, .page__content h6 {
  font-weight: bold;
  zoom: 0.6;
  margin: 0 0 20px 0;
}
.page__content ul, .page__content ol {
  padding-left: 1em;
}
.page__content ul li:not(:last-child), .page__content ol li:not(:last-child) {
  margin-bottom: 10px;
}
.page__content table {
  width: 100%;
  max-width: 100%;
  font-size: 12px;
  text-align: left;
  overflow-x: auto;
  margin-bottom: 10px;
}
.page__content table tr:not(:last-child) td {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
.page__title h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.gallery {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.gallery__wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery__close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.fototeca {
  position: relative;
  background-color: #000000;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  gap: 20px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .fototeca {
    flex-direction: column;
    padding: 0;
  }
}
.fototeca__header {
  width: 100%;
  flex-basis: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
}
.fototeca__playground {
  flex-grow: 1;
  background-color: #0d1013;
  padding: 10px;
}
.fototeca__info {
  padding: 10px;
}
.fototeca__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 700px;
}
@media (max-width: 767px) {
  .fototeca__image {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
.fototeca__image .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  right: auto;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
.fototeca__image .arrow--right {
  left: auto;
  right: 10px;
}
@media (min-width: 971px) {
  .fototeca__sidebar {
    max-width: 350px;
    width: 350px;
    margin-left: auto;
  }
}

.articles {
  display: grid;
}
.articles img {
  max-width: 100%;
  height: auto;
}

.articles--1-c {
  grid-template-columns: repeat(1, 1fr);
}

.articles--2-c {
  grid-template-columns: repeat(2, 1fr);
}

.articles--3-c {
  grid-template-columns: repeat(3, 1fr);
}

.articles--4-c {
  grid-template-columns: repeat(4, 1fr);
}

.articles--5-c {
  grid-template-columns: repeat(5, 1fr);
}

.articles--6-c {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 767px) {
  .xs\:articles--1-c {
    grid-template-columns: repeat(1, 1fr);
  }
  .xs\:articles--2-c {
    grid-template-columns: repeat(2, 1fr);
  }
  .xs\:articles--3-c {
    grid-template-columns: repeat(3, 1fr);
  }
  .xs\:articles--4-c {
    grid-template-columns: repeat(4, 1fr);
  }
  .xs\:articles--5-c {
    grid-template-columns: repeat(5, 1fr);
  }
  .xs\:articles--6-c {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 768px) {
  .sm\:articles--1-c {
    grid-template-columns: repeat(1, 1fr);
  }
  .sm\:articles--2-c {
    grid-template-columns: repeat(2, 1fr);
  }
  .sm\:articles--3-c {
    grid-template-columns: repeat(3, 1fr);
  }
  .sm\:articles--4-c {
    grid-template-columns: repeat(4, 1fr);
  }
  .sm\:articles--5-c {
    grid-template-columns: repeat(5, 1fr);
  }
  .sm\:articles--6-c {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 970px) {
  .smo\:articles--1-c {
    grid-template-columns: repeat(1, 1fr);
  }
  .smo\:articles--2-c {
    grid-template-columns: repeat(2, 1fr);
  }
  .smo\:articles--3-c {
    grid-template-columns: repeat(3, 1fr);
  }
  .smo\:articles--4-c {
    grid-template-columns: repeat(4, 1fr);
  }
  .smo\:articles--5-c {
    grid-template-columns: repeat(5, 1fr);
  }
  .smo\:articles--6-c {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 970px) {
  .smb\:articles--1-c {
    grid-template-columns: repeat(1, 1fr);
  }
  .smb\:articles--2-c {
    grid-template-columns: repeat(2, 1fr);
  }
  .smb\:articles--3-c {
    grid-template-columns: repeat(3, 1fr);
  }
  .smb\:articles--4-c {
    grid-template-columns: repeat(4, 1fr);
  }
  .smb\:articles--5-c {
    grid-template-columns: repeat(5, 1fr);
  }
  .smb\:articles--6-c {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 971px) {
  .md\:articles--1-c {
    grid-template-columns: repeat(1, 1fr);
  }
  .md\:articles--2-c {
    grid-template-columns: repeat(2, 1fr);
  }
  .md\:articles--3-c {
    grid-template-columns: repeat(3, 1fr);
  }
  .md\:articles--4-c {
    grid-template-columns: repeat(4, 1fr);
  }
  .md\:articles--5-c {
    grid-template-columns: repeat(5, 1fr);
  }
  .md\:articles--6-c {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 971px) and (max-width: 1399px) {
  .mdo\:articles--1-c {
    grid-template-columns: repeat(1, 1fr);
  }
  .mdo\:articles--2-c {
    grid-template-columns: repeat(2, 1fr);
  }
  .mdo\:articles--3-c {
    grid-template-columns: repeat(3, 1fr);
  }
  .mdo\:articles--4-c {
    grid-template-columns: repeat(4, 1fr);
  }
  .mdo\:articles--5-c {
    grid-template-columns: repeat(5, 1fr);
  }
  .mdo\:articles--6-c {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1399px) {
  .mdb\:articles--1-c {
    grid-template-columns: repeat(1, 1fr);
  }
  .mdb\:articles--2-c {
    grid-template-columns: repeat(2, 1fr);
  }
  .mdb\:articles--3-c {
    grid-template-columns: repeat(3, 1fr);
  }
  .mdb\:articles--4-c {
    grid-template-columns: repeat(4, 1fr);
  }
  .mdb\:articles--5-c {
    grid-template-columns: repeat(5, 1fr);
  }
  .mdb\:articles--6-c {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1400px) {
  .lg\:articles--1-c {
    grid-template-columns: repeat(1, 1fr);
  }
  .lg\:articles--2-c {
    grid-template-columns: repeat(2, 1fr);
  }
  .lg\:articles--3-c {
    grid-template-columns: repeat(3, 1fr);
  }
  .lg\:articles--4-c {
    grid-template-columns: repeat(4, 1fr);
  }
  .lg\:articles--5-c {
    grid-template-columns: repeat(5, 1fr);
  }
  .lg\:articles--6-c {
    grid-template-columns: repeat(6, 1fr);
  }
}
.article {
  position: relative;
  opacity: 1;
  transition: opacity 0.3s;
}
.article.blur {
  transition: opacity 0.3s;
  opacity: 0;
}
.article .avatar {
  border-radius: 100%;
  overflow: hidden;
}
.article .avatar img {
  -o-object-fit: cover;
     object-fit: cover;
}
.article__meta {
  padding-top: 10px;
  border-top: 1px solid var(--strawberry-divider-color);
}
.article__media {
  position: relative;
}
@media (max-width: 970px) {
  .article__media img {
    width: 100%;
    height: auto;
  }
}
.article__media figure {
  position: relative;
}
.article__media picture {
  font-size: 8px;
}
.article__media iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.article__media .icon {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: 70px;
  height: 70px;
  border-bottom-left-radius: 30px;
  background-color: #ed1b26;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  z-index: 999;
}
.article__media .icon svg {
  fill: #fff;
}
.article__media .icon svg {
  width: 45px;
  height: 45px;
}
.article__media .icon--video {
  background-color: #96CA2D;
}
.article__media .icon--video svg {
  fill: #fff;
  width: 26px;
  height: 26px;
}
.article a:hover .icon--video {
  background-color: rgba(255, 0, 0, 0.5);
  transition: all 0.3s;
}
.article a:hover .icon--video:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 200%;
  height: 200%;
  box-sizing: border-box;
  border-radius: 100%;
  background-color: rgb(255, 0, 0);
  animation: pulse-center 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  z-index: -1;
}
@keyframes pulse-center {
  0% {
    transform: translate(-50%, -50%) scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}
.article__title {
  margin: 0;
  line-height: 1.2;
  font-family: var(--strawberry-title-font);
}
.article__title a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.article__title a:hover {
  text-decoration: underline;
}
.article__over {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}
.article__source {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.article__eyebrow {
  font-size: 0.75rem;
  color: inherit;
  text-transform: uppercase;
  line-height: 1.2;
  opacity: 0.8;
}
.article__eyebrow i {
  font-style: normal;
  display: inline-block;
  padding: 0 10px;
}
.article__excerpt {
  font-size: 1rem;
  color: inherit;
  opacity: 0.8;
  line-height: 1.3;
}
.article__more a {
  color: #ffd203;
  font-size: 14px;
  display: inline-block;
}
.article__date {
  font-weight: 500;
  font-size: 0.75rem;
}
.article__taxonomy ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: 0;
}
.article__taxonomy ul li {
  display: inline-block;
  margin-right: 10px;
}
.article__taxonomy ul li:last-child {
  margin-right: 0;
}
.article__taxonomy a {
  font-size: 11px;
  color: #000;
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid #ffd203;
}
@media (max-width: 970px) {
  .article__taxonomy a {
    padding: 5px 10px;
  }
}
.article__permalink {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 9;
}

:root {
  --strawberry-card-background-color: #ffffff;
}

.dark {
  --strawberry-card-background-color: var(--strawberry-header-background-color);
}

.article--card {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1019607843);
  background-color: var(--strawberry-card-background-color);
}

.card {
  border-radius: 10px;
  background-color: var(--strawberry-light-background-color);
}

@media (max-width: 767px) {
  .xs\:card {
    border-radius: 10px;
    background-color: var(--strawberry-light-background-color);
  }
}
@media (min-width: 768px) {
  .sm\:card {
    border-radius: 10px;
    background-color: var(--strawberry-light-background-color);
  }
}
@media (min-width: 768px) and (max-width: 970px) {
  .smo\:card {
    border-radius: 10px;
    background-color: var(--strawberry-light-background-color);
  }
}
@media (max-width: 970px) {
  .smb\:card {
    border-radius: 10px;
    background-color: var(--strawberry-light-background-color);
  }
}
@media (min-width: 971px) {
  .md\:card {
    border-radius: 10px;
    background-color: var(--strawberry-light-background-color);
  }
}
@media (min-width: 971px) and (max-width: 1399px) {
  .mdo\:card {
    border-radius: 10px;
    background-color: var(--strawberry-light-background-color);
  }
}
@media (max-width: 1399px) {
  .mdb\:card {
    border-radius: 10px;
    background-color: var(--strawberry-light-background-color);
  }
}
@media (min-width: 1400px) {
  .lg\:card {
    border-radius: 10px;
    background-color: var(--strawberry-light-background-color);
  }
}
.article .permalink {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  text-indent: -9999px;
  overflow: hidden;
}
.article--overlay {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.article--overlay:after {
  content: " ";
  position: absolute;
  top: 10%;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  z-index: 1;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 90%);
}
.article--overlay .article__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 8;
  width: auto;
  box-sizing: border-box;
}
.article--overlay .article__title {
  color: #fff;
  margin: 0;
}
.article--overlay .article__title a {
  color: #fff;
}
.article--overlay .permalink {
  position: absolute;
  z-index: 999;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.article--overlay {
  color: #ffffff;
}
.article--overlay .article__content {
  top: auto;
}
@media (max-width: 767px) {
  .article.xs\:article--overlay {
    flex: 1;
    position: relative;
    overflow: hidden;
  }
  .article.xs\:article--overlay:after {
    content: " ";
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: 1;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 90%);
  }
  .article.xs\:article--overlay .article__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 8;
    width: auto;
    box-sizing: border-box;
  }
  .article.xs\:article--overlay .article__title {
    color: #fff;
    margin: 0;
  }
  .article.xs\:article--overlay .article__title a {
    color: #fff;
  }
  .article.xs\:article--overlay .permalink {
    position: absolute;
    z-index: 999;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .article.xs\:article--overlay .article__content {
    top: auto;
  }
}
@media (min-width: 768px) {
  .article.sm\:article--overlay {
    flex: 1;
    position: relative;
    overflow: hidden;
  }
  .article.sm\:article--overlay:after {
    content: " ";
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: 1;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 90%);
  }
  .article.sm\:article--overlay .article__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 8;
    width: auto;
    box-sizing: border-box;
  }
  .article.sm\:article--overlay .article__title {
    color: #fff;
    margin: 0;
  }
  .article.sm\:article--overlay .article__title a {
    color: #fff;
  }
  .article.sm\:article--overlay .permalink {
    position: absolute;
    z-index: 999;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .article.sm\:article--overlay .article__content {
    top: auto;
  }
}
@media (min-width: 768px) and (max-width: 970px) {
  .article.smo\:article--overlay {
    flex: 1;
    position: relative;
    overflow: hidden;
  }
  .article.smo\:article--overlay:after {
    content: " ";
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: 1;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 90%);
  }
  .article.smo\:article--overlay .article__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 8;
    width: auto;
    box-sizing: border-box;
  }
  .article.smo\:article--overlay .article__title {
    color: #fff;
    margin: 0;
  }
  .article.smo\:article--overlay .article__title a {
    color: #fff;
  }
  .article.smo\:article--overlay .permalink {
    position: absolute;
    z-index: 999;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .article.smo\:article--overlay .article__content {
    top: auto;
  }
}
@media (max-width: 970px) {
  .article.smb\:article--overlay {
    flex: 1;
    position: relative;
    overflow: hidden;
  }
  .article.smb\:article--overlay:after {
    content: " ";
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: 1;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 90%);
  }
  .article.smb\:article--overlay .article__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 8;
    width: auto;
    box-sizing: border-box;
  }
  .article.smb\:article--overlay .article__title {
    color: #fff;
    margin: 0;
  }
  .article.smb\:article--overlay .article__title a {
    color: #fff;
  }
  .article.smb\:article--overlay .permalink {
    position: absolute;
    z-index: 999;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .article.smb\:article--overlay .article__content {
    top: auto;
  }
}
@media (min-width: 971px) {
  .article.md\:article--overlay {
    flex: 1;
    position: relative;
    overflow: hidden;
  }
  .article.md\:article--overlay:after {
    content: " ";
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: 1;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 90%);
  }
  .article.md\:article--overlay .article__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 8;
    width: auto;
    box-sizing: border-box;
  }
  .article.md\:article--overlay .article__title {
    color: #fff;
    margin: 0;
  }
  .article.md\:article--overlay .article__title a {
    color: #fff;
  }
  .article.md\:article--overlay .permalink {
    position: absolute;
    z-index: 999;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .article.md\:article--overlay .article__content {
    top: auto;
  }
}
@media (min-width: 971px) and (max-width: 1399px) {
  .article.mdo\:article--overlay {
    flex: 1;
    position: relative;
    overflow: hidden;
  }
  .article.mdo\:article--overlay:after {
    content: " ";
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: 1;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 90%);
  }
  .article.mdo\:article--overlay .article__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 8;
    width: auto;
    box-sizing: border-box;
  }
  .article.mdo\:article--overlay .article__title {
    color: #fff;
    margin: 0;
  }
  .article.mdo\:article--overlay .article__title a {
    color: #fff;
  }
  .article.mdo\:article--overlay .permalink {
    position: absolute;
    z-index: 999;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .article.mdo\:article--overlay .article__content {
    top: auto;
  }
}
@media (max-width: 1399px) {
  .article.mdb\:article--overlay {
    flex: 1;
    position: relative;
    overflow: hidden;
  }
  .article.mdb\:article--overlay:after {
    content: " ";
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: 1;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 90%);
  }
  .article.mdb\:article--overlay .article__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 8;
    width: auto;
    box-sizing: border-box;
  }
  .article.mdb\:article--overlay .article__title {
    color: #fff;
    margin: 0;
  }
  .article.mdb\:article--overlay .article__title a {
    color: #fff;
  }
  .article.mdb\:article--overlay .permalink {
    position: absolute;
    z-index: 999;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .article.mdb\:article--overlay .article__content {
    top: auto;
  }
}
@media (min-width: 1400px) {
  .article.lg\:article--overlay {
    flex: 1;
    position: relative;
    overflow: hidden;
  }
  .article.lg\:article--overlay:after {
    content: " ";
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: 1;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 90%);
  }
  .article.lg\:article--overlay .article__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 8;
    width: auto;
    box-sizing: border-box;
  }
  .article.lg\:article--overlay .article__title {
    color: #fff;
    margin: 0;
  }
  .article.lg\:article--overlay .article__title a {
    color: #fff;
  }
  .article.lg\:article--overlay .permalink {
    position: absolute;
    z-index: 999;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .article.lg\:article--overlay .article__content {
    top: auto;
  }
}

.card--rainbow {
  padding: 4px;
  border-radius: 24px;
  position: relative;
  background: conic-gradient(from 200deg, #f9003b, #e8008a, #c800c8, #8040f0, #3b82f6, #00c8c8, #00d468, #f9d200, #f98000, #f9003b);
}
.card .article {
  border: 3px solid var(--strawberry-background-color);
  background-color: var(--strawberry-card-background-color);
}

.modalbox--pushmenu {
  width: 100%;
  opacity: 1;
  transform: translate(-300%, 0);
  transition: transform 1s 0.3s;
  background-color: var(--strawberry-modal-background-color);
  height: auto;
  font-family: var(--strawberry-text-font);
  top: 56px;
}
.admin-bar .modalbox--pushmenu {
  top: 96px;
}
@media (max-width: 970px) {
  .modalbox--pushmenu {
    top: 72px;
  }
  .scrolled .modalbox--pushmenu {
    top: 50px;
  }
}
@media (min-width: 971px) {
  .modalbox--pushmenu {
    top: 0;
    bottom: 0;
    background-color: var(--strawberry-modal-background-color);
    padding: 5px;
  }
  .admin-bar .modalbox--pushmenu {
    top: 86px;
  }
}
.modalbox--pushmenu .modalbox__close {
  display: none;
}
.modalbox--pushmenu .modalbox__content {
  background-color: var(--strawberry-modal-background-color);
  height: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 5px 10px;
}
.modalbox--pushmenu .modalbox__content::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
.modalbox--pushmenu .modalbox__content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 7px;
}
.modalbox--pushmenu .modalbox__content::-webkit-scrollbar-track {
  background: #efefef;
}
.modalbox--pushmenu .modalbox__content .navbar ul {
  font-size: 23px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modalbox--pushmenu .modalbox__content .navbar ul li a {
  display: block;
  color: var(--strawberry-modal-text-color);
  position: relative;
  overflow: hidden;
  transition: padding-left 0.3s ease-in;
  text-align: center;
}
.modalbox--pushmenu .modalbox__content .navbar ul li a:hover {
  color: var(--strawberry-accent-color);
}
.modalbox--pushmenu .modalbox__content .navbar ul li ul {
  font-size: 14px;
  padding-left: 10px;
  opacity: 0.8;
  margin-top: 5px;
}
.modalbox--pushmenu .modalbox__content .form {
  margin-bottom: 20px;
  max-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 20px;
  justify-content: space-between;
}
.modalbox--pushmenu .modalbox__content .form .input {
  flex: 1;
  line-height: 2;
  font-size: 16px;
  max-width: 100%;
  background-color: var(--strawberry-modal-background-color);
  color: var(--strawberry-modal-text-color);
  border-bottom: 1px solid var(--strawberry-modal-text-color);
}
.modalbox--pushmenu .modalbox__content .form .button {
  display: none;
}
.modalbox--pushmenu .modalbox__content .form .button svg {
  width: 16px;
  height: 16px;
  fill: var(--strawberry-text-color);
}
.modalbox--pushmenu .social {
  margin-top: 30px;
  width: 30px;
  position: absolute;
  bottom: 10px;
  right: 16px;
}
@media (max-width: 767px) {
  .modalbox--pushmenu .social {
    right: 24px;
  }
}
.modalbox--pushmenu .social ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modalbox--pushmenu .social ul li svg {
  width: 30px;
  height: 30px;
}

input#pushmenu-open {
  visibility: hidden;
  position: absolute;
}
input#pushmenu-open:checked + #pushmenu {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
input#pushmenu-open:checked + #pushmenu .modalbox {
  transform: translateX(0);
  transition: opacity 0.5s, transform 0.3s;
}
@media (max-width: 767px) {
  input#pushmenu-open:checked + #pushmenu .modalbox {
    max-width: 100%;
  }
}

.switcher {
  width: 20px;
  height: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.switcher em {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  z-index: 9;
  background-color: var(--strawberry-header-background-color);
  transform: translateX(100%);
  transition: transform 1s;
}
.dark .switcher em {
  transform: translateX(-100%);
  transition: transform 1s;
}

.switcher.moon b {
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 100%;
  background-color: #000000;
}
.dark .switcher.moon b {
  background-color: #ffffff;
}
.switcher.moon i {
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 100%;
  position: absolute;
  top: -5px;
  left: 8px;
  background-color: var(--strawberry-header-background-color);
}

.switcher.sun {
  transform: rotate(45deg);
  border-radius: 100%;
}
.switcher.sun b {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 100%;
  background-color: var(--strawberry-header-background-color);
  border: 2px solid #bebebe;
}
.dark .switcher.sun b {
  background-color: var(--strawberry-header-text-color);
}
.switcher.sun:before {
  content: "";
  width: 100%;
  position: absolute;
  top: calc(50% - 1px);
  height: 2px;
  background-color: #000000;
  z-index: -1;
  border-radius: 1px;
}
.dark .switcher.sun:before {
  background-color: var(--strawberry-header-text-color);
}
.switcher.sun i {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 100%;
  background-color: #000000;
  position: absolute;
  transform: rotate(45deg);
  outline: 2px solid var(--strawberry-header-background-color);
}
.dark .switcher.sun i {
  background-color: var(--strawberry-header-text-color);
}
.switcher.sun i:after {
  content: "";
  height: 200%;
  position: absolute;
  top: -50%;
  left: calc(50% - 1px);
  width: 2px;
  background-color: var(--strawberry-header-background-color);
  z-index: -1;
  border-radius: 1px;
}
.dark .switcher.sun i:after {
  background-color: var(--strawberry-header-text-color);
}
.switcher.sun i:before {
  content: "";
  width: 200%;
  position: absolute;
  left: -50%;
  top: calc(50% - 1px);
  height: 2px;
  background-color: var(--strawberry-header-background-color);
  z-index: -1;
  border-radius: 1px;
}
.dark .switcher.sun i:before {
  background-color: var(--strawberry-header-text-color);
}
.switcher.sun:after {
  content: "";
  height: 100%;
  position: absolute;
  left: calc(50% - 1px);
  width: 2px;
  background-color: var(--strawberry-header-background-color);
  z-index: -1;
  border-radius: 1px;
}
.dark .switcher.sun:after {
  background-color: var(--strawberry-header-text-color);
}

.strawberry_form {
  max-width: 400px;
  width: 400px;
  margin: 0 auto;
}
.strawberry_form label {
  font-size: 0.9rem;
  font-weight: bold;
}
.strawberry_form .input--text {
  background-color: var(--strawberry-form-background-color);
  color: var(--strawberry-form-text-color);
  border-radius: 5px;
  font-size: var(--strawberry-form-font-size);
  line-height: 2;
  text-indent: 5px;
  width: 100%;
  max-width: 100%;
}
.strawberry_form .input--submit {
  color: var(--strawberry-form-background-color);
  background-color: var(--strawberry-form-text-color);
  line-height: 2;
  border-radius: 5px;
  font-weight: bold;
  padding-left: 10px;
  padding-right: 10px;
}
/*# sourceMappingURL=style.css.map */
