/*-------------------------
membership_advantages
--------------------------*/
.wp-block.membership_advantages {
  margin-bottom: 40px;
}

.wp-block.membership_advantages .inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 960px) {
  .wp-block.membership_advantages .inner {
    flex-direction: row;
  }
}

.wp-block.membership_advantages .inner .content-side {
  border-radius: 12px 12px 0px 0px;
  width: 100%;
  padding: 50px 40px;
  background: var(--color-secondary);
  color: #ffffff;
}

@media (min-width: 960px) {
  .wp-block.membership_advantages .inner .content-side {
    border-radius: 12px 0px 0px 12px;
  }
}

.wp-block.membership_advantages .inner .content-side .title {
  color: #ffffff;
  margin-bottom: 20px;
}

.wp-block.membership_advantages .inner .content-side .description {
  color: #ffffff;
}

.wp-block.membership_advantages .inner .content-side .description ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  list-style: none;
  margin-bottom: 10px;
}

.wp-block.membership_advantages .inner .content-side .description ul li:before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../../assets/images/caret-right.svg) no-repeat center center;
  background-size: contain;
}

.wp-block.membership_advantages .inner .content-side .btn {
  margin-top: 20px;
}

.wp-block.membership_advantages .image-side {
  border-radius: 0px 0px 12px 12px;
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border: 1px solid #e6e6e6;
}

@media (min-width: 960px) {
  .wp-block.membership_advantages .image-side {
    border-radius: 0px 12px 12px 0px;
    flex-direction: column;
    max-width: 290px;
    border-left: 0px;
  }
}

.wp-block.membership_advantages .image-side img {
  display: block;
  margin: auto;
}

.wp-block.membership_advantages .image-side .image_wrapper {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid #e6e6e6;
  width: 100%;
}

@media (min-width: 960px) {
  .wp-block.membership_advantages .image-side .image_wrapper {
    border-bottom: 1px solid #e6e6e6;
    height: 100%;
  }
}

.wp-block.membership_advantages .image-side .image_wrapper:last-child {
  border-bottom: none;
}
