@keyframes gutenbergBtnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(90, 190, 200, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(90, 190, 200, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(90, 190, 200, 0);
  }
}
.wp-block-buttons .wp-block-button .wp-block-button__link {
  cursor: pointer;
  font-size: var(--wp--preset--font-size--label);
  font-style: normal;
  font-weight: var(--wp--custom--font-weight--semibold);
  line-height: 1.36;
  padding: 12px 20px;
  display: block;
  border: 2px solid var(--wp--preset--color--primary);
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--base);
  border-radius: var(--wp--custom--radius--button);
  transition: 0.3s all;
}
.wp-block-buttons .wp-block-button .wp-block-button__link:hover {
  background: transparent;
  color: var(--wp--preset--color--primary);
}
.wp-block-buttons .wp-block-button.is-style-main--outline .wp-block-button__link {
  background: transparent;
  color: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--primary);
}
.wp-block-buttons .wp-block-button.is-style-main--outline .wp-block-button__link:hover {
  color: var(--wp--preset--color--base);
  background: var(--wp--preset--color--primary);
}
.wp-block-buttons .wp-block-button.is-style-snd .wp-block-button__link {
  border-color: var(--wp--preset--color--secondary);
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--base);
}
.wp-block-buttons .wp-block-button.is-style-snd .wp-block-button__link:hover {
  background: transparent;
  color: var(--wp--preset--color--secondary);
}
.wp-block-buttons .wp-block-button.is-style-snd--outline .wp-block-button__link {
  background: transparent;
  color: var(--wp--preset--color--secondary);
  border-color: var(--wp--preset--color--secondary);
}
.wp-block-buttons .wp-block-button.is-style-snd--outline .wp-block-button__link:hover {
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--base);
}
.wp-block-buttons .wp-block-button.is-style-accent .wp-block-button__link {
  border-color: var(--wp--preset--color--accent);
  background: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--base);
}
.wp-block-buttons .wp-block-button.is-style-accent .wp-block-button__link:hover {
  background: transparent;
  color: var(--wp--preset--color--accent);
}
.wp-block-buttons .wp-block-button.is-style-accent--outline .wp-block-button__link {
  background: transparent;
  color: var(--wp--preset--color--accent);
  border-color: var(--wp--preset--color--accent);
}
.wp-block-buttons .wp-block-button.is-style-accent--outline .wp-block-button__link:hover {
  background: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--base);
}
.wp-block-buttons .wp-block-button.is-style-blanc .wp-block-button__link {
  border-color: var(--wp--preset--color--base);
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--primary);
}
.wp-block-buttons .wp-block-button.is-style-blanc .wp-block-button__link:hover {
  background: transparent;
  color: var(--wp--preset--color--base);
}
.wp-block-buttons .wp-block-button.is-style-blanc--outline .wp-block-button__link {
  background: transparent;
  color: var(--wp--preset--color--base);
  border-color: var(--wp--preset--color--base);
}
.wp-block-buttons .wp-block-button.is-style-blanc--outline .wp-block-button__link:hover {
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--primary);
}
.wp-block-buttons .wp-block-button.is-style-gradient .wp-block-button__link {
  border: none;
  background: var(--wp--preset--gradient--hero-motif);
  color: var(--wp--preset--color--base);
}
.wp-block-buttons .wp-block-button.is-style-gradient .wp-block-button__link:hover {
  opacity: 0.88;
}
.wp-block-buttons .wp-block-button.is-style-blanc-snd .wp-block-button__link {
  border-color: var(--wp--preset--color--base);
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--secondary);
}
.wp-block-buttons .wp-block-button.is-style-blanc-snd .wp-block-button__link:hover {
  background: transparent;
  color: var(--wp--preset--color--base);
}
.wp-block-buttons .wp-block-button.is-style-blanc-degrade {
  background: var(--wp--preset--color--base);
  border: 2px solid var(--wp--preset--color--base);
  border-radius: var(--wp--custom--radius--button);
}
.wp-block-buttons .wp-block-button.is-style-blanc-degrade .wp-block-button__link {
  border: none;
  background: transparent;
  background-image: var(--wp--preset--gradient--hero-motif);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.wp-block-buttons .wp-block-button.is-style-blanc-degrade:hover {
  background: transparent;
}
.wp-block-buttons .wp-block-button.is-style-blanc-degrade:hover .wp-block-button__link {
  -webkit-text-fill-color: var(--wp--preset--color--base);
  color: var(--wp--preset--color--base);
}
.wp-block-buttons .wp-block-button.is-style-pulse .wp-block-button__link {
  border-color: var(--wp--preset--color--secondary);
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--base);
  animation: gutenbergBtnPulse 2.2s ease-out infinite;
  will-change: transform, box-shadow;
}
.wp-block-buttons .wp-block-button.is-style-pulse .wp-block-button__link:hover {
  transform: scale(1.05);
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .wp-block-buttons .wp-block-button.is-style-pulse .wp-block-button__link {
    animation: none;
  }
  .wp-block-buttons .wp-block-button.is-style-pulse .wp-block-button__link:hover {
    transform: none;
  }
}

.wp-block-heading.is-style-titre-degrade {
  background: var(--wp--preset--gradient--titre);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wp-block-columns.is-style-graphic {
  position: relative;
}
.wp-block-columns.is-style-graphic::before {
  content: "";
  background-image: url("../../../images/vendors/gutenberg/motif_before.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 1918px;
  height: 498px;
  position: absolute;
  right: calc(50% - 960px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.4;
}
.wp-block-columns .wp-block-column .wp-block-video video {
  border-radius: 32px;
  position: relative;
  z-index: 3;
}
.wp-block-columns .wp-block-column .wp-block-cover img {
  border-radius: 32px;
}
.wp-block-columns .wp-block-column {
  position: relative;
  z-index: 3;
}
.wp-block-columns.is-quick-access .wp-block-column {
  border-radius: 32px;
}

.wp-block-column.is-style-shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: var(--wp--custom--radius--field);
}

.wp-block-cover {
  overflow: hidden;
}
.wp-block-cover .wp-block-heading {
  position: relative;
  z-index: 3;
}
.wp-block-cover .wp-block-media-text__media {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.wp-block-cover.is-style-hover .wp-block-cover__inner-container {
  opacity: 0;
  transition: 0.3s all;
}
.wp-block-cover.is-style-hover .wp-block-cover__background {
  visibility: hidden;
  transition: 0.3s all;
}
.wp-block-cover.is-style-hover:hover .wp-block-cover__background {
  visibility: visible;
}
.wp-block-cover.is-style-hover:hover .wp-block-cover__inner-container {
  opacity: 1;
}
.wp-block-cover.is-style-graphic:not(.is-style-hero) {
  position: relative;
}
.wp-block-cover.is-style-graphic:not(.is-style-hero)::before {
  content: "";
  background-image: url("../../../images/vendors/gutenberg/motif_before.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 1918px;
  height: 498px;
  position: absolute;
  right: calc(50% - 960px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.4;
}
.wp-block-cover.is-style-hero {
  position: relative;
}
.wp-block-cover.is-style-hero::before {
  content: "";
  background-image: url("../../../images/vendors/gutenberg/motif_header_before.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 1506px;
  height: 287px;
  position: absolute;
  opacity: 0.6;
  right: calc(50% - 960px);
  top: 50%;
  transform: translateY(-40%);
  z-index: 1;
}
.wp-block-cover.is-style-hero .wp-block-heading {
  position: relative;
  z-index: 3;
}

.wp-block-group:has(.wp-block-details) {
  overflow: visible;
}

.wp-block-details {
  box-shadow: var(--wp--custom--shadow--default);
  padding: 15px 30px;
  border-radius: 20px;
  overflow: hidden;
}
.wp-block-details summary {
  position: relative;
  background-color: var(--wp--preset--color--base);
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
}
.wp-block-details summary::marker {
  content: "" !important;
}
.wp-block-details summary::after {
  border: solid var(--wp--preset--color--default);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
}
.wp-block-details p {
  padding-left: 20px;
  border-left: 2px solid var(--wp--preset--color--accent);
}
.wp-block-details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.wp-block:has(.wp-block-details).has-background {
  background-color: unset !important;
}
.wp-block:has(.wp-block-details).has-primary-background-color {
  background: linear-gradient(to bottom, var(--wp--preset--color--primary) 70%, transparent 70%) !important;
}
.wp-block:has(.wp-block-details).has-secondary-background-color {
  background: linear-gradient(to bottom, var(--wp--preset--color--secondary) 70%, transparent 70%) !important;
}
.wp-block:has(.wp-block-details).has-accent-background-color {
  background: linear-gradient(to bottom, var(--wp--preset--color--accent) 70%, transparent 70%) !important;
}
.wp-block:has(.wp-block-details).has-default-background-color {
  background: linear-gradient(to bottom, var(--wp--preset--color--default) 70%, transparent 70%) !important;
}
.wp-block:has(.wp-block-details).has-base-background-color {
  background: linear-gradient(to bottom, var(--wp--preset--color--base) 70%, transparent 70%) !important;
}
.wp-block:has(.wp-block-details).has-black-background-color {
  background: linear-gradient(to bottom, var(--wp--preset--color--black) 70%, transparent 70%) !important;
}

.wp-block-welko-form .d-none {
  display: none;
}
.wp-block-welko-form input[type=checkbox] ~ label::before {
  content: none !important;
}
.wp-block-welko-form input[type=checkbox] ~ label {
  padding-left: 0 !important;
}
.wp-block-welko-form .wp-block-button__link {
  width: fit-content;
  margin: auto;
  display: block;
  cursor: pointer;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  padding: 12px 20px;
  height: auto;
  text-transform: inherit;
  border: 1px solid var(--wp--preset--color--primary);
}
.wp-block-welko-form .wp-block-button__link:hover, .wp-block-welko-form .wp-block-button__link:focus-visible {
  background: unset;
  color: var(--wp--preset--color--primary);
}

.wp-block-welko-form.is-form-gradient .wp-block-button__link {
  border: none;
  background: var(--wp--preset--gradient--hero-motif);
  color: var(--wp--preset--color--base);
}
.wp-block-welko-form.is-form-gradient .wp-block-button__link:hover, .wp-block-welko-form.is-form-gradient .wp-block-button__link:focus-visible {
  opacity: 0.88;
  background: var(--wp--preset--gradient--hero-motif);
  color: var(--wp--preset--color--base);
}

.wp-block-group {
  overflow: hidden;
  margin-bottom: -30px;
}
.wp-block-group.is-style-graphic {
  position: relative;
}
.wp-block-group.is-style-graphic::before {
  content: "";
  background-image: url("../../../images/vendors/gutenberg/motif_before.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 1918px;
  height: 498px;
  position: absolute;
  right: calc(50% - 960px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.4;
}
.wp-block-group .text-social-network {
  font-size: 18px;
  font-weight: 500;
}
.wp-block-group .wp-block-media-text .wp-block-media-text__media img {
  border-radius: 32px;
  position: relative;
  z-index: 3;
}

.wp-block-list.is-style-check {
  list-style: none;
}
.wp-block-list.is-style-check li {
  margin-bottom: 10px;
  position: relative;
}
.wp-block-list.is-style-check li::before {
  content: url("../../../images/vendors/gutenberg/icon_list_check.svg");
  position: absolute;
  left: -25px;
  top: 0;
}

.is-style-quote--graphic {
  position: relative;
}
.is-style-quote--graphic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../../../images/vendors/gutenberg/quotes.svg");
  background-repeat: no-repeat;
  background-size: 150px 106px;
  width: 220px;
  height: 100%;
  border-right: 2px solid var(--wp--preset--color--primary);
}

.wp-block-separator:not(.alignfull, .aligncenter).alignleft {
  float: unset;
  margin-left: 0;
  margin-right: auto;
}
.wp-block-separator:not(.alignfull, .aligncenter).alignright {
  float: unset;
  margin-left: auto;
  margin-right: 0;
}
.wp-block-separator:not(.alignfull, .aligncenter).is-style-default {
  width: 100%;
  height: 1px;
}
.wp-block-separator:not(.alignfull, .aligncenter):not(.has-background) {
  background-color: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--primary);
}

.wp-block-separator {
  border: none;
  border-top: 0px;
  min-width: 85px;
}

.wp-block-social-links.has-gradient-icons .wp-block-social-link {
  background: var(--wp--preset--gradient--hero-motif);
}

.wp-block-social-links.has-big-icons .wp-block-social-link svg {
  width: 24px !important;
  height: 24px !important;
}

.wp-block.wp-block-post-terms, .wp-block-post-terms {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background-color: unset !important;
}
.wp-block.wp-block-post-terms span, .wp-block-post-terms span {
  display: none;
}
.wp-block.wp-block-post-terms a, .wp-block-post-terms a {
  padding: 6px 12px;
  display: block;
  z-index: 1;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
}
.wp-block.wp-block-post-terms.has-primary-background-color a, .wp-block-post-terms.has-primary-background-color a {
  background-color: var(--wp--preset--color--primary);
}
.wp-block.wp-block-post-terms.has-secondary-background-color a, .wp-block-post-terms.has-secondary-background-color a {
  background-color: var(--wp--preset--color--secondary);
}
.wp-block.wp-block-post-terms.has-accent-background-color a, .wp-block-post-terms.has-accent-background-color a {
  background-color: var(--wp--preset--color--accent);
}
.wp-block.wp-block-post-terms.has-default-background-color a, .wp-block-post-terms.has-default-background-color a {
  background-color: var(--wp--preset--color--default);
}
.wp-block.wp-block-post-terms.has-black-background-color a, .wp-block-post-terms.has-black-background-color a {
  background-color: var(--wp--preset--color--black);
}
.wp-block.wp-block-post-terms.has-white-background-color a, .wp-block-post-terms.has-white-background-color a {
  background-color: var(--wp--preset--color--white);
}

.wp-block-post-author__avatar .avatar {
  border-radius: 48px;
}
.wp-block-post-author__bio {
  margin-top: 10px;
}

.wp-block-welko-latest-posts {
  position: relative;
  z-index: 3;
}
.wp-block-welko-latest-posts.is-grid .wp-block-welko-latest-posts__list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.wp-block-welko-latest-posts.is-grid.columns-2 .wp-block-welko-latest-posts__post {
  width: 100%;
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .wp-block-welko-latest-posts.is-grid.columns-2 .wp-block-welko-latest-posts__post {
    width: calc(100% / 2 - 1.25em + 1.25em / 2);
    margin-right: 1.25em;
  }
  .wp-block-welko-latest-posts.is-grid.columns-2 .wp-block-welko-latest-posts__post:nth-child(2n) {
    margin-right: 0;
  }
}
.wp-block-welko-latest-posts.is-grid.columns-3 .wp-block-welko-latest-posts__post {
  width: 100%;
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .wp-block-welko-latest-posts.is-grid.columns-3 .wp-block-welko-latest-posts__post {
    width: calc(100% / 3 - 1.25em + 1.25em / 3);
    margin-right: 1.25em;
  }
  .wp-block-welko-latest-posts.is-grid.columns-3 .wp-block-welko-latest-posts__post:nth-child(3n) {
    margin-right: 0;
  }
}
.wp-block-welko-latest-posts.is-grid.columns-4 .wp-block-welko-latest-posts__post {
  width: 100%;
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .wp-block-welko-latest-posts.is-grid.columns-4 .wp-block-welko-latest-posts__post {
    width: calc(100% / 4 - 1.25em + 1.25em / 4);
    margin-right: 1.25em;
  }
  .wp-block-welko-latest-posts.is-grid.columns-4 .wp-block-welko-latest-posts__post:nth-child(4n) {
    margin-right: 0;
  }
}
.wp-block-welko-latest-posts.is-grid.columns-5 .wp-block-welko-latest-posts__post {
  width: 100%;
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .wp-block-welko-latest-posts.is-grid.columns-5 .wp-block-welko-latest-posts__post {
    width: calc(100% / 5 - 1.25em + 1.25em / 5);
    margin-right: 1.25em;
  }
  .wp-block-welko-latest-posts.is-grid.columns-5 .wp-block-welko-latest-posts__post:nth-child(5n) {
    margin-right: 0;
  }
}
.wp-block-welko-latest-posts.is-grid.columns-6 .wp-block-welko-latest-posts__post {
  width: 100%;
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .wp-block-welko-latest-posts.is-grid.columns-6 .wp-block-welko-latest-posts__post {
    width: calc(100% / 6 - 1.25em + 1.25em / 6);
    margin-right: 1.25em;
  }
  .wp-block-welko-latest-posts.is-grid.columns-6 .wp-block-welko-latest-posts__post:nth-child(6n) {
    margin-right: 0;
  }
}
.wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list {
  position: relative;
}
.wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper {
  position: unset;
  padding: 15px 5px;
  padding-bottom: 40px;
  width: 100%;
}
.wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-wrapper {
  height: unset;
}
.wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-slide {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
  background: white;
  height: auto;
  min-height: 250px;
  overflow: hidden;
  margin: 0;
  max-width: unset !important;
  flex-shrink: 0;
}
.wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-next, .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-prev {
  position: absolute;
  background: transparent !important;
  display: none;
  width: 45px;
  height: 20px;
  top: calc(100% + 50px);
}
@media (min-width: 576px) {
  .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-next, .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-prev {
    top: 50%;
  }
}
@media (min-width: 1440px) {
  .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-next, .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-prev {
    display: flex !important;
  }
  .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-next::after, .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-prev::after {
    display: none;
  }
  .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-next svg, .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-prev svg {
    width: 100%;
    height: 100%;
  }
  .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-next svg path, .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-prev svg path {
    fill: var(--swiper-theme-color);
  }
}
.wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-next {
  right: unset;
  left: calc(50% + 10px);
}
@media (min-width: 576px) {
  .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-next {
    left: unset;
    right: -65px;
  }
  .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-next::after {
    display: none;
  }
  .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-next svg {
    margin-left: 4px;
  }
}
.wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-prev {
  left: unset;
  right: calc(50% + 10px);
}
@media (min-width: 576px) {
  .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-prev {
    right: unset;
    left: -65px;
  }
  .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-prev::after {
    display: none;
  }
  .wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-button-prev svg {
    margin-right: 4px;
  }
}
.wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--swiper-theme-color);
}
.wp-block-welko-latest-posts.is-slider .wp-block-welko-latest-posts__list .swiper .swiper-pagination .empty {
  height: 100%;
  width: 100%;
  border: 1px solid lightgrey;
}
.wp-block-welko-latest-posts__post {
  margin: 0 1.25em 1.25em 0;
  clear: both;
  overflow-wrap: break-word;
  overflow: hidden;
  background-color: white;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 32px;
}
.wp-block-welko-latest-posts__post__featured-image ~ .wp-block-welko-latest-posts__post-terms {
  position: absolute;
  top: 0;
  left: 10;
}
.wp-block-welko-latest-posts__post-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px;
}
.wp-block-welko-latest-posts__post-term {
  padding: 4px 12px;
  border-radius: 20px;
  margin: 0;
  font-size: 12px;
}
.wp-block-welko-latest-posts__post-content {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 16px;
}
.wp-block-welko-latest-posts__post__featured-image ~ .wp-block-welko-latest-posts__post-content {
  height: auto;
}
.wp-block-welko-latest-posts__post-separator {
  width: 100%;
}
.wp-block-welko-latest-posts__post-separator hr {
  height: 5px;
  width: 80px;
  opacity: 1;
  display: block;
  border: 0;
  margin: 0;
  margin-block: 0;
  padding: 0;
  flex-shrink: 0;
}
.wp-block-welko-latest-posts__post-title {
  width: 100%;
  text-decoration: none;
}
.wp-block-welko-latest-posts__post-title::before {
  content: "";
  display: block;
  inset: 0;
  position: absolute;
  z-index: 1;
}
.wp-block-welko-latest-posts__post-excerpt {
  margin-top: auto;
}
.wp-block-welko-latest-posts__post-link {
  padding: 10px 0;
  font-weight: 500;
  transition: transform 0.3s;
  margin-top: auto;
  width: 100%;
}
.wp-block-welko-latest-posts__post-link:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .wp-block-welko-latest-posts__post__featured-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .wp-block-welko-latest-posts__post__featured-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.3s;
  }
}
.wp-block-welko-latest-posts__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  list-style: none;
  position: relative;
  padding: 0;
}
.wp-block-welko-latest-posts__filters__filter {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 40px;
  border: 2px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--legend);
  background: unset;
}
.wp-block-welko-latest-posts__filters__filter:hover, .wp-block-welko-latest-posts__filters__filter:focus-visible, .wp-block-welko-latest-posts__filters__filter:active {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--base);
  cursor: pointer;
}
.wp-block-welko-latest-posts__filters__filter--active {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--base);
}
.wp-block-welko-latest-posts__filters:has(select) {
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
}
.wp-block-welko-latest-posts__filters:has(select) p {
  margin: 0;
}
.wp-block-welko-latest-posts__filters:has(select) select {
  border: 2px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--legend);
  border-radius: 40px;
  padding: 10px 15px;
  min-width: 250px;
  line-height: normal;
}
.wp-block-welko-latest-posts__filters:has(select) select:not([disabled]):hover, .wp-block-welko-latest-posts__filters:has(select) select:not([disabled]):focus-visible, .wp-block-welko-latest-posts__filters:has(select) select:not([disabled]):active {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--base);
  cursor: pointer;
}
.wp-block-welko-latest-posts__loadmore {
  width: 100% !important;
  background: unset;
  box-shadow: unset !important;
  display: flex;
  justify-content: center;
}
.wp-block-welko-latest-posts__loadmore button {
  margin: auto;
  cursor: pointer;
  width: max-content;
}
.wp-block-welko-latest-posts__paginate {
  display: flex !important;
  width: 100% !important;
  background: unset;
  box-shadow: unset;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
}
.wp-block-welko-latest-posts__paginate a {
  color: black;
  text-decoration: none;
}
.wp-block-welko-latest-posts__paginate a span {
  color: black;
  font-weight: bold;
}
.wp-block-welko-latest-posts.has-text-align-center .wp-block-welko-latest-posts__post-content {
  justify-content: center;
}
.wp-block-welko-latest-posts.has-text-align-center .wp-block-welko-latest-posts__post-separator hr {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-welko-latest-posts.has-text-align-right .wp-block-welko-latest-posts__post-content {
  justify-content: right;
}
.wp-block-welko-latest-posts.has-text-align-right .wp-block-welko-latest-posts__post-separator hr {
  margin-left: auto;
  margin-right: 0;
}

.wp-block-welko-latest-posts__post:hover, .wp-block-welko-latest-posts__post:focus-within, .wp-block-welko-latest-posts__post:active {
  cursor: pointer;
}
.wp-block-welko-latest-posts__post:hover .wp-block-welko-latest-posts__post__featured-image img, .wp-block-welko-latest-posts__post:focus-within .wp-block-welko-latest-posts__post__featured-image img, .wp-block-welko-latest-posts__post:active .wp-block-welko-latest-posts__post__featured-image img {
  transform: scale(1.1);
  transition: 0.3s;
}
.wp-block-welko-latest-posts__post:hover .wp-block-stater-latest-posts__post-title, .wp-block-welko-latest-posts__post:focus-within .wp-block-stater-latest-posts__post-title, .wp-block-welko-latest-posts__post:active .wp-block-stater-latest-posts__post-title {
  text-decoration: none;
}

.interface-interface-skeleton__sidebar .components-color-palette__custom-color-value {
  display: none;
}

.wp-block-welko-latest-posts__post-term {
  background-color: var(--wp--preset--color--third);
  color: var(--wp--preset--color--default);
}
.wp-block-welko-latest-posts__post-separator hr {
  background-color: var(--wp--preset--color--accent);
}
.wp-block-welko-latest-posts__post-title, .wp-block-welko-latest-posts__post-author, .wp-block-welko-latest-posts__post-date, .wp-block-welko-latest-posts__post-link {
  color: var(--wp--preset--color--default);
}
.wp-block-welko-latest-posts__post-title {
  font-size: var(--wp--preset--font-size--s);
}
.wp-block-welko-latest-posts__post-author, .wp-block-welko-latest-posts__post-date {
  width: 100%;
  font-size: 12px;
}
.wp-block-welko-latest-posts:has(.wp-block-welko-latest-posts__post-author):has(.wp-block-welko-latest-posts__post-date) .wp-block-welko-latest-posts__post-date, .wp-block-welko-latest-posts:has(.wp-block-welko-latest-posts__post-author):has(.wp-block-welko-latest-posts__post-date) .wp-block-welko-latest-posts__post-author {
  width: fit-content;
  max-width: calc(50% - 8px);
}

main > *:not(.alignleft, .alignright, .alignfull) {
  margin-left: auto;
  margin-right: auto;
}
main > *:not(.alignwide, .alignfull) {
  max-width: 840px;
}
main > *.alignwide {
  max-width: 1200px;
}
main > *.alignfull {
  max-width: none;
}

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