.testimonial {
    padding-bottom: 125px;
}

.testimonial-wrapper {
    column-count: 3;
    gap: 18px;
}

.testimonial .testimonial-card {
    border-radius: 12px;
    padding: 35px;
    background-color: var(--grey-color);
    margin-bottom: 18px;
    break-inside: avoid;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.testimonial .testimonial-card:has(.testimonial-main-title)  {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 550px;
}

.testimonial .testimonial-card.highlight {
    background-color: var(--default-blue);
}

.testimonial .testimonial-card .testimonial-desc {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--black-color);
    margin: 0;
}

.testimonial .testimonial-card .testimonial-title {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--default-blue);
    margin-top: 25px;
}

.testimonial .testimonial-card .testimonial-subtitle {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--black-color);
    margin-top: 10px;
}

.testimonial .testimonial-card.highlight .testimonial-desc,
.testimonial .testimonial-card.highlight .testimonial-title,
.testimonial .testimonial-card.highlight .testimonial-subtitle {
    color: var(--white-color);
}

.testimonial .testimonial-card .testimonial-icon{
    display: inline-block;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: contain;
}

.testimonial .testimonial-card .testimonial-main-title{
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--white-color);
}
.testimonial .testimonial-card .testimonial-img{
    display: inline-block;
    border-radius: 8px;
    object-fit: contain;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    margin: 10px auto 32px;
}

.testimonial .testimonial-card .btn{
    margin-top: auto;
    max-width: max-content;
}

@media only screen and (max-width: 1024px) {
    .testimonial-wrapper {
        column-count: 2;
    }

    .testimonial .testimonial-card {
        padding: 32px;
    }

    .testimonial .testimonial-card .testimonial-title {
        font-size: 1.4rem;
        margin-top: 18px;
    }
    .testimonial .testimonial-card .testimonial-main-title{
        font-size: 2rem;
    }
}

@media only screen and (max-width: 767px){
  .testimonial .testimonial-card .testimonial-desc {
    font-size: 0.875rem;
 }
}

@media only screen and (max-width: 575px) {
    .testimonial-wrapper {
        column-count: 1;
    }

    .testimonial .testimonial-card {
        padding: 24px;
    }

    .testimonial .testimonial-card .testimonial-title {
        font-size: 1.2rem;
        margin-top: 14px;
    }

    .testimonial .testimonial-card .testimonial-icon{
        width: 48px;
        height: 48px;
    }
    .testimonial .testimonial-card .testimonial-main-title{
        font-size: 1.4rem;
    }
    .testimonial .testimonial-card:has(.testimonial-main-title)  {
      min-height: 450px;
    }
}
