.wp-block-carousel-group-carousel-section-3 .fw-carousel-section-3 .fw-carousel-container {
  flex: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.wp-block-carousel-group-carousel-section-3 .fw-carousel-section-3 .single-carousel-item {
  /* Hide all items by default */
  display: none;
}
.wp-block-carousel-group-carousel-section-3 .fw-carousel-section-3 .single-carousel-item:nth-child(-n+2) {
  /* Show only the first 3 items */
  display: block;
}
.wp-block-carousel-group-carousel-section-3 .fw-carousel-section-3 .fw-button-prev,
.wp-block-carousel-group-carousel-section-3 .fw-carousel-section-3 .fw-button-next {
  display: none;
}
.wp-block-carousel-group-carousel-section-3.is-selected .fw-carousel-section-3 .fw-content {
  align-items: flex-start;
}
.wp-block-carousel-group-carousel-section-3.is-selected .fw-carousel-section-3 .fw-carousel-container {
  flex-direction: column;
  align-items: flex-start;
}
.wp-block-carousel-group-carousel-section-3.is-selected .fw-carousel-section-3 .single-carousel-item {
  display: block;
  position: relative;
  opacity: 1;
  margin-bottom: 40px;
}

.fw-carousel-section-3 {
  --carousel-item-width: 290px;
  --carousel-button-size: 45px;
  --carousel-pagination-bottom: 0px;
  --carousel-pagination-bullet-horizontal-gap: 5px;
  --carousel-pagination-vertical-spacing: 15px;
}
.fw-carousel-section-3 .fw-content {
  flex-wrap: wrap;
  gap: 0;
}
.fw-carousel-section-3 .fw-section-side-one {
  flex: none;
  display: inline-block;
  width: 33.3333%;
  padding-right: var(--inner-spacing-lg);
}
.fw-carousel-section-3 .fw-section-side-two {
  display: inline-block;
  width: 66.66666%;
  flex: none;
}
.fw-carousel-section-3 .fw-overline {
  width: 100%;
  margin-bottom: 10px;
}
.fw-carousel-section-3 .single-carousel-item {
  width: var(--carousel-item-width);
  height: auto;
  border-top: 1px solid var(--color-highlight);
  display: flex;
  flex-direction: column;
  margin-right: var(--inner-spacing-lg);
  padding-top: var(--inner-spacing-md);
}
.fw-carousel-section-3 .single-carousel-item .fw-frameworker-button {
  padding: 0;
  border: 0px solid white;
  background: none;
}
.fw-carousel-section-3 .single-carousel-item .fw-headline {
  margin-bottom: var(--inner-spacing-md);
}
.fw-carousel-section-3 .fw-event-date {
  margin-bottom: var(--inner-spacing-sm);
}
.fw-carousel-section-3 .fw-button-container {
  display: flex;
  width: 100%;
  margin-top: var(--inner-spacing-md);
}
.fw-carousel-section-3 .fw-button-prev,
.fw-carousel-section-3 .fw-button-next {
  cursor: pointer;
  position: relative;
  width: var(--swiper-button-size);
  height: var(--swiper-button-size);
  border: var(--swiper-button-border-width) solid var(--swiper-button-border-color);
  border-radius: 50%;
  left: 0;
  right: 0;
  margin-top: 0;
  top: 0;
  padding: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease;
}
.fw-carousel-section-3 .fw-button-prev:hover,
.fw-carousel-section-3 .fw-button-next:hover {
  background: transparent;
  border-color: var(--swiper-button-border-color-hover);
}
.fw-carousel-section-3 .fw-button-prev:hover:after,
.fw-carousel-section-3 .fw-button-next:hover:after {
  border-left-color: var(--swiper-button-chevron-color-hover);
  border-bottom-color: var(--swiper-button-chevron-color-hover);
}
.fw-carousel-section-3 .fw-button-prev:after,
.fw-carousel-section-3 .fw-button-next:after {
  content: "";
  width: 36%;
  height: 36%;
  position: absolute;
  left: 22%;
  top: 32%;
  border-left: 1px solid var(--swiper-button-chevron-color);
  border-bottom: 1px solid var(--swiper-button-chevron-color);
  transform: rotate(225deg);
  transition: border-color 0.2s ease;
}
.fw-carousel-section-3 .fw-button-prev:after {
  left: auto;
  right: 22%;
  transform: rotate(45deg);
}
.fw-carousel-section-3 .fw-button-next {
  margin-left: 10px;
}
@media screen and (max-width: 1024px) {
  .fw-carousel-section-3 .fw-section-side-one,
  .fw-carousel-section-3 .fw-section-side-two {
    width: 100%;
    max-width: 100%;
    padding-right: 0px;
  }
  .fw-carousel-section-3 .fw-section-side-one {
    margin-bottom: var(--inner-spacing-lg);
  }
}
