/*=========================
	IMAGE & TExt CARDS BLOCK
=========================*/

.block-image-text-cards .image-text-cards__header {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.block-image-text-cards .title {
  width: 100%;
  margin-bottom: var(--space-5);
}

.block-image-text-cards .swiper-slide {
  color: var(--color-t);
  background: var(--color-t-60);
  /* padding: var(--space-3); */
  border-radius: 20px;
   width: 465px;
}

.image-text-cards__cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 50px;
    row-gap: 10px;
}
.block-image-text-cards .image-text-cards__contentbox {
    display: flex;
    position: relative;
    flex-direction: column;
}
.block-image-text-cards .image-text-cards__contentbox .content {
    padding: 25px 0 25px;
    overflow: hidden;
    position: relative;
}
.image-text-cards__contentbox:last-child .content {
    padding-bottom: 0;
}

.block-image-text-cards .image-text-cards__contentbox .image img {
    width: 100%;
    height: 275px;
    object-fit: cover;
}
.block-image-text-cards span.right-arrow {
    position: absolute;
    bottom: 17px;
    right: 17px;
}


/* Swiper Pagination */
.block-image-text-cards .swiper-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    column-gap: 12px;
}
.block-image-text-cards .swiper-buttons div{
    opacity: 1;
    transition: 0.3s ease;
}
.block-image-text-cards .swiper-buttons div:hover{
    opacity: 0.8;
}

/* Swiper Navigation */
.block-image-text-cards .swiper-button-prev,
.block-image-text-cards .swiper-button-next {
    border: 1px solid var(--color-n-white);
    border-radius: 10px;
    width: 45px;
    height: 32px;

    position: relative !important;
    inset: 0;
    color: var(--color-n-white);
}
.block-image-text-cards .swiper-button-prev svg path,
.block-image-text-cards .swiper-button-next svg path {
  stroke: var(--color-p);
}
.block-image-text-cards.bg-color-n-white .swiper-button-prev svg path,
.block-image-text-cards.bg-color-n-white .swiper-button-next svg path {
  stroke: var(--color-p);
}
.block-image-text-cards .swiper-button-next:after, 
.block-image-text-cards .swiper-button-prev:after{
    font-size: 12px;
    font-weight: 800;    
}


/* Responsive */
@media only screen and (max-width: 768px) {
    .block-image-text-cards .image-text-cards__contentbox {
        grid-template-columns: 1fr;
        margin-bottom: 0px;
    }
  .block-image-text-cards .title {
    margin-bottom: var(--space-4);
  }
  .image-text-cards__cards {
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
    }
}

@media only screen and (max-width: 576px) {
    .block-image-text-cards {
        padding-top: var(--space-5);
        padding-bottom: var(--space-5);
    }
    .block-image-text-cards .image-text-cards__header{
        margin-bottom: 20px;
    }
    .block-image-text-cards .title {
        margin-bottom: 0;
    }
  .block-image-text-cards .swiper-slide .copy {
    font-size: 1.6rem;
  }
  .block-image-text-cards .swiper-buttons{
    margin-top: 15px;
    column-gap: 8px;
  }
  .block-image-text-cards .swiper-buttons .swiper-button-prev,
  .block-image-text-cards .swiper-buttons .swiper-button-next {
    width: 28px;
    height: 28px;
  }
  .image-text-cards__cards {
        grid-template-columns: 1fr;
    }
}