.three-column-cpt .be-container {
    width: min(calc(100% - 160px), 1300px);
    padding-inline: 0;
}

@media (max-width: 1500px) and (min-width: 1201px) {
.three-column-cpt .be-container {
    width: min(calc(100% - 160px), 1300px);
    padding-inline: 0;
}
}

@media (max-width: 1200px) and (min-width: 1025px) {
.three-column-cpt .be-container {
    width: min(calc(100% - 120px), 1300px);
    padding-inline: 0;
}
}

@media (max-width: 1024px) and (min-width: 768px) {
.three-column-cpt .be-container {
    width: min(calc(100% - 80px), 1300px);
    padding-inline: 0;
}
}

@media (max-width: 767px) { 
.three-column-cpt .be-container {
    width: min(calc(100% - 40px), 1300px);
    padding-inline: 0;
}
}



.three-column-cpt {
  --three-column-cpt-plum: #8f2c4b;
  --three-column-cpt-plum-dark: #7f2248;
  --three-column-cpt-overlay: rgba(190, 61, 116, 0.88);
  --three-column-cpt-white: #ffffff;
  padding: 60px 0px 40px;
  background: #ffffff;
  overflow: hidden;
}

.three-column-cpt .be-container {
  max-width: var(--be-container);
}

.three-column-cpt__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.three-column-cpt__card {
  position: relative;
  min-height: 134px;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  border-radius: 18px;
  background: #8f2c4b;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(80, 31, 58, 0.12);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.three-column-cpt__media {
  position: relative;
  width: 132px;
  height: calc(100% + 4px);
  min-height: 138px;
  margin: -2px 0 -2px -2px;
  background: #8f2c4b;
  border: 0;
  border-radius: 0;
  outline: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.three-column-cpt__media::after {
  content: none;
}

.three-column-cpt__svg {
  width: calc(100% + 2px);
  height: 100%;
  display: block;
}

.three-column-cpt__svg image {
  pointer-events: none;
}

.three-column-cpt__image-overlay {
  fill: #501f3a;
  opacity: 0.32;
  pointer-events: none;
}

.three-column-cpt__media {
  -webkit-tap-highlight-color: transparent;
}

.three-column-cpt__body {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  margin-left: 0;
  padding: 23px 72px 24px 18px;
  background: transparent;
}

.three-column-cpt__body::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -14px;
  z-index: 1;
  width: 120px;
  height: 82px;
  border-top-left-radius: 100%;
  background: #a23255;
  pointer-events: none;
}

.three-column-cpt__body span {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 5px;
  color: var(--three-column-cpt-white);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.1;
}

.three-column-cpt__body h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--three-column-cpt-white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    width: 128px;
}

.three-column-cpt__arrow {
  position: absolute;
  z-index: 4;
  right: 5px;
  bottom: 5px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--three-column-cpt-plum);
  background: transparent;
  transition: transform 180ms ease, background-color 180ms ease;
}

.three-column-cpt__arrow img {
  width: 46px;
  height: 46px;
  display: block;
}

.three-column-cpt__card:hover .three-column-cpt__arrow,
.three-column-cpt__card:focus-visible .three-column-cpt__arrow {
  transform: translateX(3px);
}

.three-column-cpt__card:hover {
  transform: none;
  box-shadow: 0 12px 24px rgba(80, 31, 58, 0.12);
}

.three-column-cpt__card:focus-visible {
  outline: 3px solid #ff8359;
  outline-offset: 4px;
}


@media (max-width: 1200px) and (min-width: 1025px) {
.three-column-cpt__body {
    padding: 23px 72px 24px 0px;
}
.three-column-cpt__media {
    position: relative;
    width: 110px;
}
}


@media (max-width: 1120px) {
  .three-column-cpt__grid {
    gap: 18px;
  }

  .three-column-cpt__card {
    min-height: 124px;
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .three-column-cpt__media {
    width: 118px;
    min-height: 128px;
    transform: none;
  }

  .three-column-cpt__body {
    padding: 18px 50px 18px 12px;
  }

  .three-column-cpt__body span {
    font-size: 13px;
    line-height: 1;
  }

  .three-column-cpt__body::after {
    right: -14px;
    bottom: -13px;
    width: 116px;
    height: 78px;
  }

  .three-column-cpt__body h3 {
    font-size: 18px;
  }

  .three-column-cpt__arrow {
    right: 12px;
    bottom: 10px;
    width: 44px;
    height: 44px;
  }

  .three-column-cpt__arrow img {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 1024px) {
  .three-column-cpt {
    padding-bottom: 46px;
  }

    .three-column-cpt__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

  .three-column-cpt__card {
    min-height: 128px;
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .three-column-cpt__media {
    width: 132px;
    min-height: 138px;
    transform: none;
  }

  .three-column-cpt__body h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .three-column-cpt {
    padding-bottom: 38px;
  }
  
      .three-column-cpt__grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;
    }

  .three-column-cpt__card {
    min-height: 112px;
    grid-template-columns: 106px minmax(0, 1fr);
    border-radius: 15px;
  }

  .three-column-cpt__media {
    width: 106px;
    min-height: 116px;
    transform: none;
  }

  .three-column-cpt__body {
    padding: 15px 48px 15px 14px;
  }

  .three-column-cpt__body::after {
    right: -8px;
    bottom: -11px;
    width: 92px;
    height: 62px;
  }

  .three-column-cpt__body span {
    font-size: 15px;
    line-height: 1.1;
  }

  .three-column-cpt__body h3 {
    font-size: 20px;
    line-height: 1.1;
  }

  .three-column-cpt__arrow {
    width: 40px;
    height: 40px;
    right: 3px;
    bottom: 2px;
  }

  .three-column-cpt__arrow img {
    width: 40px;
    height: 40px;
  }
}
