:root {
  --first-color: #5341D3;
  --first-color-light: hsl(38, 100%, 78%);
  --first-color-alt: hsl(32, 75%, 50%);
  --second-color: hsl(195, 75%, 52%);
  --dark-color: #5341D3;
  --white-color: hsl(212, 4%, 95%);
  --body-color: hsl(212, 42%, 15%);
  --container-color: hsl(212, 42%, 20%);
}



.card__container {
  padding: 30px 0 60px 0;
  box-sizing: border-box;
  /* margin-bottom: 100px; */
}

.card__content {
  margin-inline: 1.75rem;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
}

.card__article {
  width: 300px; /* Remove after adding swiper js */
  border-radius: 16px;
  overflow: hidden;
}

.card__image {
  position: relative;
  background-color: hsl(252deg 45.81% 91.55%);
  /* padding-top: 1.5rem;
  margin-bottom: -.75rem; */
  text-align: center;
  display: flex;
  justify-content: flex-end;
  /* height: 300px;
  overflow: hidden;
  position: relative; */
}

.card__img {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  /* object-fit: cover;
  height: 300px; 
  position: absolute;
  bottom: 0;
  left: 0; */
}

.card__data {
  background-color: #f7f5ff;
  padding: 8px 48px 48px 48px;
  box-sizing: border-box;
  border-radius: 0 0 16px 16px;
  text-align: left;
  position: relative;
  z-index: 10;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.card__shadow {
  width: 540px;
  height: 250px;
  background-color: hsl(252deg 23.92% 70.18%);
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  left: 0;
  right: 0;
  margin-inline: auto;
  filter: blur(45px);
}

.card__name {
    font-size: 24px;
    color: #343434;
    margin-bottom: 8px;
    padding: 0;
}

.card__description {
  font-weight: 500;
  margin: 0 0 1.75rem 0;

}
.card__description ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card__description ul li {
  display: flex;
  font-size: 16px;
  gap: 6px;
}
.card__description ul li::before{
  content: "•";
  font-size: 24px;
  line-height: 24px;
  color: #aaa;
}
.card__button {
  display: inline-block;
  background-color: var(--first-color);
  color:#fff;
    font-weight: 600;
    font-size: 18px;
    border-radius: 12px;
    padding: 16px;
    box-sizing: border-box;
    width: fit-content;
    box-shadow: -8px 8px 0 0 rgba(0,0,0,0.1);
}

/* Swiper class */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  width: initial;
  height: initial;
  font-size: 3rem;
  color: var(--second-color);
  display: none;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-pagination-bullet {
  background-color: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #5341D3;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .card__content {
    background-color: #f7f5ff;
  }
  .card__data {
    padding: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .card__content {
    background-color: #f7f5ff;
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .card__content {
    margin-inline: 3rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: block;
  }
}

/* For large devices */
@media screen and (min-width: 1120px) {
  .card__container {
    width: 100%;
  }

  .swiper-button-prev {
    left: -1rem;
  }
  .swiper-button-next {
    right: -1rem;
  }
}