.standard:not(.page-blog) {
  margin-top: 80px;
  min-height: calc(100vh - 210px) !important;
}
.standard.iframe {
  margin-top: 0;
}
#filters {
  z-index: 99;
  padding: 0 15px;
}
#filters .filters_buttons {
  padding: 0 0 0 25px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
#filters ul,
#filters ul li {
  list-style: none outside;
}
#filters a {
  text-decoration: none;
}
#filters .filters_buttons li {
  float: left;
  margin-right: 25px;
}
.easy-autocomplete-container #filters .filters_buttons li {
  float: left;
  margin-right: 0px;
}

#filters .filters_buttons li.categories i,
#filters .filters_buttons li.tags i {
  margin-right: 3px;
}
#filters .filters_buttons li.reset {
  float: right;
  margin-right: 0;
}
#filters .close {
  font-size: 1.1em;
  font-weight: normal;
  opacity: inherit;
}
#filters .label {
  display: none;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  padding: 0.2em 0 0.3em;
}

/* filter hidden */
#filters .filters_wrapper {
  display: none;
  padding: 5px 0 5px;
  background: #eaeaea;
}
#filters .filters_wrapper ul {
  display: none;
  overflow: hidden;
  margin: 0;
  padding: 0 10px;
}
#filters .filters_wrapper ul li {
  float: left;
  width: 19%;
  margin: 0.1% 0.5%;
}
#filters .filters_wrapper ul li a {
  display: block;
  padding: 3px 6px;
  background: #fff;
  /* border: 1px solid #f7f7f7; */
  color: #858585;
  transition: all 0.5s ease-in-out;
}
#filters .filters_wrapper ul li a:hover,
#filters .filters_wrapper ul li a.selected {
  background-color: #6583c2;
  color: #fff;
}
#filters .filters_wrapper ul li.close a {
  text-align: center;
  width: 32px;
  padding: 2px 0;
  background: #8b8b8b;
  border: 1px solid #f7f7f7 !important;
  color: #fff;
}

#filters .search {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -8px;
}
#filters .search .input-group {
  min-width: 38vmin;
  width: auto;
}
#filters .search input {
  width: 60%;
  padding-left: 35px;
  height: 32px;
  padding-top: 5px !important;
}
#filters .search .fa-search {
  position: absolute;
  left: 10px;
  z-index: 4;
  top: 7px;
  color: #377dff;
}
#filters .easy-autocomplete-container {
  left: unset;
  right: 0px;
  position: absolute;
  /* width: 100%; */
  z-index: 9999;
}
#filters .eac-category > div {
  padding-left: 10px;
}
.easy-autocomplete-container ul {
  margin-bottom: -1px;
}

/* blog item and image */
.blog-img {
  display: block;
  margin: 0;
  border-width: 1px;
  border-style: solid;
  max-width: 100%;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 15px;
}
.blog-img.no_border {
  border-width: 0;
}
.blog-img .img-wrapper {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  max-height: 250px;
}
.blog-img a {
  display: block;
}
.blog-img .img-wrapper img {
  position: relative;
  top: 0;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.blog-img:not(.no_link) .img-wrapper img {
  margin-bottom: -15px !important;
}
.blog-img:hover .img-wrapper img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.blog-img.no_link:hover .img-wrapper img {
  top: 0;
}
.blog-img .img-wrapper .mask {
  display: none;
  position: relative;
  left: 10px;
  top: 15px;
  width: 100%;
  height: 100%;
  z-index: 2;
  font-size: 0.8em;
}
.blog-img .img-wrapper .mask span {
  display: inline-block;
  background-color: rgba(227, 0, 24, 0.9);
  border-color: rgb(227, 0, 24);
  padding: 2px 5px;
  border-radius: 3px;
  margin: 0 5px 5px 0;
  opacity: 0.9;
  color: #fff;
  white-space: nowrap;
  line-height: 1em;
  box-shadow: 0 0 5px #fff;
}
.blog-img .img-wrapper .mask:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  filter: alpha(opacity=0);
  opacity: 0;
}
.blog-img:hover .img-wrapper .mask:after {
  filter: alpha(opacity=100);
  opacity: 1;
}
.blog-img.no_link:hover .img-wrapper .mask:after {
  filter: alpha(opacity=0);
  opacity: 0;
}
.blog-img:hover .img-wrapper .image_links {
  bottom: 0;
}
.blog-img .img-wrapper .image_links {
  background: rgba(255, 0, 0, 0.8);
}

.blog-img .img-wrapper .image_links.double a {
  width: 50%;
  display: block;
  float: left;
}
.blog-img .img-wrapper .image_links.double a:first-child {
  -webkit-box-shadow: inset -1px 0 0 0 rgba(255, 255, 255, 0.2);
  box-shadow: inset -1px 0 0 0 rgba(255, 255, 255, 0.2);
}
.blog-img .img-wrapper img,
.blog-img .img-wrapper .mask::after,
.blog-img .img-wrapper .image_links {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-img .img-wrapper .image_links {
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: -60px;
  z-index: 4;
  overflow: hidden;
}
.blog-img .img-wrapper .image_links a {
  display: block;
  font-size: 25px;
  line-height: 60px;
  width: 100%;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.blog-img .img-wrapper .image_links a:hover {
  background-color: #fff;
  color: #6583c2;
}

/* specific */
.blog {
  /* width: calc(33.333% - 4rem) !important;
  max-width: calc(33.333% - 10px) !important; */
  /* margin-bottom: 2rem; */
}
.blog .item {
  border: solid 1px #ccc;
  padding: 20px;
  margin: 10px;
}
.blog-info {
  display: flex;
  font-size: 0.8em;
}
.blog-info .fa {
  width: 12px;
}
.blog-info .date_label {
  padding-left: 0;
}
.blog-info .author_label {
  padding-right: 0;
}

.blog-list .item {
  background-color: #fafafa;
  height: 490px;
  overflow: hidden;
}
.blog-list .blog-body {
  height: 180px;
  overflow-y: hidden;
  margin-bottom: 30px;
}
.blog-list .blog-body p {
  line-height: 1.5;
  font-height: 14px;
}
.blog-list .fadeout {
  background: linear-gradient(
    0deg,
    rgba(250, 250, 250, 1) 0%,
    rgba(250, 250, 250, 0.75) 90%
  ); /* position:absolute; */
  width: calc(100% - 60px);
  height: 35px;
  margin-top: -55px;
  top: 490px;
}
.blog-list .blog-footer {
  margin-top: -60px; /* position:absolute; bottom:20px; background:#FAFAFA; */
}
.blog-list h2.blog-title,
.blog-list h2.blog-title a {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  margin: 10px 0;
  line-height: 1.3;
  font-weight: bold;
}

.blog-item .img.overflow-16x9 {
  height: 200px;
  overflow: hidden;
}
.blog-item h1 {
  font-size: clamp(1.884rem, 1.884rem + ((1vw - 0.2rem) * 2.575), 3.3rem);
  font-weight: 700;
}

.blog-item h1 span {
  font-size: 14px;
}
.blog-item h2 {
  font-size: clamp(1.2rem, 1.2rem + ((1vw - 0.2rem) * 1.575), 2.3rem);
  font-weight: 700;
}
.blog-item p {
  font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.773), 1.3rem);
}
.blog-item .btn-video.img {
  margin-left: -8px;
  margin-right: -8px;
}
.blog-item .btn-video img {
  position: relative;
}
.blog-item .blog-margin {
  min-height: 90vh;
}
.blog-item-content img {
  transition: all 0.5s ease-in-out;
  border-radius: 10px;
}

.blog-item-content img:hover {
  box-shadow:
    0 0 40px -10px rgba(255, 255, 255, 0.3),
    0 0 25px -15px rgba(255, 255, 255, 0.2);
}
.blog-item-content ol {
  margin-left: 18px;
}
.blog-item-content ol li {
  list-style-type: decimal !important;
  padding-left: 5px;
}
.vertical-center {
  display: flex;
  align-items: center;
}

.makemin.bm-block-columns {
  min-height: 100%;
  height: 720px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.hovbord {
  border: 1px solid rgba(255, 255, 255, 0);
}
.hovbord:hover {
  border-color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}
.hovbord.onca:hover .newbutton {
  background: #377dff;
  border-color: transparent;
  color: #fff !important;
}
.hovbord.onca:hover .newbutton > span {
  filter: invert(100%);
  transition: 0.3s ease-in 0.3s;
}
.hovbord.onca {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #2b2b2b;
  padding-top: 0px;
  padding-right: 0;
  padding-bottom: 0px;
  padding-left: 0;
  flex-basis: 100%;
  flex-grow: 0;
  margin: 0;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

.hovbord .bm-block-post-featured-image {
  margin: 0;
  line-height: 0;
}

.hovbord .bm-block-post-featured-image a {
  display: block;
}

.hovbord .bm-block-post-featured-image img {
  /* display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover; */
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-sizing: border-box;
  max-width: 100%;
  vertical-align: bottom;
  width: 100%;
}

.hovbord > .bm-block-group.has-background {
  /* display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 100%;
  background-color: #2b2b2b; */
  display: grid;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #2b2b2b;
  padding-top: 0;
  padding-right: 15px;
  padding-bottom: 20px;
  padding-left: 22px;
  margin-block-end: 0;
  margin-block-start: 0px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0;
}

.hovbord .bm-block-group.is-content-justification-space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 12px;
  padding-right: 0;
  padding-bottom: 7px;
}

.hovbord .taxonomy-category,
.hovbord .bm-block-post-terms {
  margin: 0;
  line-height: 1.2;
  font-size: clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.227), 16px);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.hovbord .taxonomy-category a,
.hovbord .bm-block-post-terms a,
.hovbord .sublineblue a {
  color: #377dff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.hovbord .taxonomy-category a:hover,
.hovbord .bm-block-post-terms a:hover,
.hovbord .sublineblue a:hover {
  color: #b8c9ff;
}

.hovbord .bm-block-post-date {
  margin: 0;
  color: #858585;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hovbord .bm-block-post-date time {
  display: inline-block;
}

.hovbord .bm-block-post-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(17.371px, 1.086rem + ((1vw - 3.2px) * 1.094), 27px);
  line-height: 1.25;
  font-weight: 700;
  text-wrap: balance;
}

.hovbord .bm-block-post-title a {
  color: inherit;
  text-decoration: none;
}

.hovbord .bm-block-post-title a:hover {
  color: #d7e1ff;
}

.hovbord .bm-block-post-excerpt {
  margin-top: 15px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  color: #d8d8d8;
  font-size: clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.114), 15px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.hovbord .bm-block-post-excerpt__excerpt {
  margin: 0;
}

.hovbord .bm-block-buttons a {
  color: rgba(var(--bs-dark-rgb));
}

@media screen and (max-width: 991px) {
  .blog-item > div.b-r-1 {
    border: none;
  }
  .blog-item .blog-margin {
    border-left: none;
    border-top: 1px solid #aaa;
    min-height: unset;
  }
  .blog-item .blog-margin .affix {
    position: initial;
  }
}

@media screen and (max-width: 767px) {
  .blog {
    max-width: 100% !important;
    /* width: calc(100% - 5px) !important; */
    left: 0 !important;
    padding: 0 10px;
  }
  #filters .filters_wrapper ul li {
    width: calc(33.333% - 5px);
  }
  #filters .search .input-group {
    /* left: -7px;
    top: 30px; */
  }
  .blog-item > div {
    padding: 0;
  }
  .blog-item h1 {
    font-style: normal;
    font-weight: 700;
    margin-bottom: var(--wp--preset--spacing--40);
  }
  .blog-item h3 {
    font-size: 18px;
    line-height: 26px;
  }
  .blog-item img {
    width: 100%;
    height: auto !important;
  }
}

.hovbord .bm-block-post-excerpt p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
}

.magazin-background {
  margin-top: -108px;
  margin-bottom: var(--wp--preset--spacing--70);
  padding-top: 15%;
  background-image: url(/gfx/image/magazin/2024/09/BG3.jpg);
  background-position: 51% 0%;
  background-repeat: no-repeat;
  background-size: 120vw;
  background-attachment: fixed;
}

.eac-item img {
  max-width: 100px;
  height: auto;
}

.search-field-wrap {
  position: relative;
}

.easy-autocomplete {
  position: relative;
  display: block;
  width: 100% !important;
}

.easy-autocomplete-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}

form .search .filter {
  position: absolute;
}
.search-field-wrap {
  border-radius: 10px;

  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    8px 30px rgba(0, 0, 0, 0.2),
    inset 1px rgba(255, 255, 255, 0.2);

  padding: 4px 7px;
}

/* Icon */
.search-field-wrap .fa-search {
  padding-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

/* Input */
.search-field-wrap input.form-control {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;

  padding-left: 8% !important ;
  color: #fff;
  font-size: 15px;
}

/* Placeholder */
.search-field-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Fokus-Effekt */
.search-field-wrap:focus-within {
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    10px 35px rgba(0, 0, 0, 0.3),
    inset 1px rgba(255, 255, 255, 0.3);
}

/* Wrapper übernimmt dein Glass-Layout */
.search-field-wrap .easy-autocomplete {
  width: 100% !important;
  background: transparent;
}

/* Das echte Input (Plugin ersetzt dein sichtbares Feld) */
.search-field-wrap .easy-autocomplete input {
  background: transparent !important;
  border: none !important;
  outline: none;

  color: #fff;
  padding-left: 36px; /* Platz für Icon */
  font-size: 15px;
  width: 100% !important;
}

/* Dropdown Container */
.easy-autocomplete-container {
  margin-top: 8px;
  border-radius: 10px;
  overflow: hidden;
  border: none;
}

/* Liste */
.easy-autocomplete-container ul {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  background: #2b2b2b;
}

/* Items */
.easy-autocomplete-container li {
  background: #2b2b2b;

  padding: 10px 14px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-right: 0 !important;
}

.easy-autocomplete-container ul li.selected {
  background: none repeat scroll 0 0 #2b2b2b !important;
  cursor: pointer;
}

.easy-autocomplete-container ul li {
  position: relative;
  background: #1f1f1f;
  transition: all 0.2s ease;
}

/* Apple-like inset fade */
.easy-autocomplete-container ul li.selected,
.easy-autocomplete-container ul li:hover {
  background: #2b2b2b;
}

/* Soft inner border glow */
.easy-autocomplete-container ul li.selected::after,
.easy-autocomplete-container ul li:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;

  /* der Trick */
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 2px rgba(255, 255, 255, 0.06),
    inset 0 -1px 2px rgba(0, 0, 0, 0.4);

  pointer-events: none;
}

/* optional: ganz feiner top fade */
.easy-autocomplete-container ul li.selected::before,
.easy-autocomplete-container ul li:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02) 30%,
    transparent 60%
  );

  pointer-events: none;
}

.easy-autocomplete-container ul li.selected {
  background: #2b2b2b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.eac-item {
  justify-content: space-between;
}

.eac-item {
  position: relative;
}

.eac-item .img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: visible; /* wichtig: Bild darf rechts raus */
  padding: 0;
}

/* Bild größer machen als die Spalte */
.eac-item .img img {
  display: block;
  position: relative;
  width: 180%; /* anpassen, z. B. 160%–220% */
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  max-width: none; /* verhindert Bootstrap-Begrenzung */
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

/* Fade gehört auf .img, nicht auf img */
.eac-item .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 180%; /* muss zur Bildbreite passen */
  height: 101%;
  pointer-events: none;
  background: linear-gradient(
    to left,
    #2b2b2b -1%,
    rgba(43, 43, 43, 0.88) 18%,
    rgba(43, 43, 43, 0.45) 42%,
    rgba(43, 43, 43, 0) 72%
  );
}

.eac-category {
  border: initial !important;
  border-color: transparent !important;
  border-style: none !important;
  border-width: 0 !important;
}

.easy-autocomplete-container li {
  border: initial !important;
  border-color: transparent !important;
  border-style: none !important;
  border-width: 0 !important;
}

/* default alles zu */
#filters .filters_wrapper ul {
  display: none;
  overflow: visible;
}

/* aktives panel */
#filters .filters_wrapper ul.active {
  display: flex;
}
/* Wrapper */
#filters .filters_wrapper {
  /* display: block; */
  margin-top: 12px;
  padding: 10px;

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px rgba(255, 255, 255, 0.06);
}

/* Liste als flex statt float/grid */
#filters .filters_wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

/* Items */
#filters .filters_wrapper ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: auto; /* killt dein altes 19% grid */
}

/* Chips */
#filters .filters_wrapper ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 12px;
  border-radius: 999px;

  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.2s ease;
}

/* Hover */
#filters .filters_wrapper ul li a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Active / selected */
#filters .filters_wrapper ul li a.selected {
  background: #377dff;
  color: #fff;
  border-color: transparent;

  box-shadow:
    0 6px 18px rgba(55, 125, 255, 0.35),
    inset 0 1px rgba(255, 255, 255, 0.2);
}

/* Close Button (X) */
#filters .filters_wrapper ul li.close a {
  width: 33px;
  height: 33px;
  padding: 0;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 12px;
}

/* Hover close */
#filters .filters_wrapper ul li.close a:hover {
  background: rgba(255, 80, 80, 0.2);
  color: #ff6b6b;
  border-color: rgba(255, 80, 80, 0.4);
}

@media screen and (max-width: 768px) {
  .magazin-background {
    margin-top: 0;
  }
  #filters {
    margin-top: 20px;
  }
  #filters .filters_wrapper {
    margin-left: 12.5px;
  }

  #filters .search {
    left: 12.5%;
    transform: translateX(12.5%);
    top: 20lvh;
    transform: unset;
    margin-top: 0px;
    width: 75%;
  }
  .eac-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Bild fix */
  .eac-item .img {
    flex: 0 0 60px; /* feste Breite */
    aspect-ratio: 0.5;
  }

  /* Text flexibel */
  .eac-item > div:last-child {
    flex: 1;
  }

  .eac-item .img img {
    width: 120% !important;
  }
  .eac-item .img::after {
    width: 120% !important;
  }
}
.hero-image {
  width: 85%;
  margin: 0 auto 2rem; /* zentriert */
}

.hero-image__figure {
  width: 100%;
  height: 66vh;
  margin: 0;
  overflow: hidden;
  border-bottom-left-radius: 75px;
  border-bottom-right-radius: 75px;
}

.hero-image__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-date {
  font-size: clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.227), 16px);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: normal;
  color: #377dff;
}

@media (max-width: 768px) {
  .hero-image {
    width: 100%;
  }

  .hero-image__figure {
    height: 40vh;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}

.newbutton.falser {
  color: black;
}

.newbutton.falser span {
  float: left;
  margin-right: 8px;
  transform: rotate(180deg);
}
.newbutton:hover span {
  transform: translateX(5px);
}

.newbutton.falser:hover span {
  transform: translateX(-5px) rotate(180deg);
}

.author-box {
  max-width: 800px;
  margin: 0 auto 5vh;
  background: #262626;
  border-radius: 11px;
  overflow: hidden;
  align-items: stretch;
}

.author-box > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.author-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: 100%;
}

.author-img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.author-text-block {
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.author-text-header {
  margin-bottom: 10px;
}

.author-text-block p {
  margin-bottom: 0;
}

.blog-item-content a {
  text-decoration: none;
  color: #377dff;
}

.blog-item-content img {
  max-width: 100%;
}
