.component-wrapper {
  display: flex;
  justify-content: center;

  @media (min-width: 1440px) {
    padding: 24px 120px 48px 120px;
  }

  @media (min-width: 1200px) and (max-width: 1439px) {
    padding: 24px 60px 48px 60px;
  }

  @media (min-width: 768px) and (max-width: 1199px) {
    padding: 24px 60px 48px 60px;
  }

  @media (max-width: 767px) {
    padding: 24px 16px 48px 16px;
  }
}

.container {
  width: 100%;
  overflow: hidden;
  border: 1px solid #D0D4F3;
  background-color: #F3F4FB;

  position: relative;
  color: #000;
  border-radius: 40px;
  box-shadow: 10px 10px 15px 10px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  height: 448px;
  display: flex;
  align-items: center;

  @media (min-width: 1440px) {}

  @media (min-width: 1200px) and (max-width: 1439px) {}

  @media (min-width: 768px) and (max-width: 1199px) {
    display: flex;
    flex-direction: column;
    height: auto;
    max-width: 425px;
  }

  @media (max-width: 767px) {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 343px;
  }
}

.content-container {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  box-sizing: border-box;
  position: absolute;
  z-index: 2;

  @media (min-width: 1440px) {
    padding: 48px;
  }

  @media (min-width: 1200px) and (max-width: 1439px) {
    padding: 48px;
  }

  @media (min-width: 768px) and (max-width: 1199px) {
    padding: 16px;
    position: static;
    width: 100%;
    height: auto;
    order: 2;
    background-color: #fff;
  }


  @media (max-width: 767px) {
    position: static;
    width: 100%;
    height: auto;
    padding: 16px;
    order: 2;
    background-color: #fff;
  }
}

picture {
  max-width: 100%;
  height: 448px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;

  @media (min-width: 768px) and (max-width: 1199px) {
    position: static;
    width: 100%;
    height: 300px;
    order: 1;
  }

  @media (max-width: 767px) {
    position: static;
    width: 100%;
    height: 214px;
    order: 1;
  }
}

picture img {
  width: 100%;
  height: 448px;
  object-fit: cover;

  @media (min-width: 768px) and (max-width: 1199px) {
    height: 300px;
  }

  @media (max-width: 767px) {
    height: 214px;
  }
}

.button-container {
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;

  @media (max-width: 1199px) {
    flex-direction: column;
    align-items: stretch;

    .ta-button {
      width: 100%;
      justify-content: center;
    }
  }
}

.link-container {

  @media (max-width: 767px) {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

.link-smaller-text {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
}


.tags-container {
  display: flex;
  gap: 8px;
}

#paragraph-wide-card {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.h-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.b-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 0;
  flex: 1 1 0%;
}

.component-wrapper,
.container,
.content-container {
  max-height: none;
}

.custom-heading {
  margin-top: 12px;
  font-size: 24px;
  line-height: 31px;

  span {
    font-weight: 600;
  }
}

.custom-paragraph {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 300 !important;
  line-height: 23px;
}

.ta-margin-top-16 {
  margin-top: 16px;
}