
/*  PT CAROUSEL */
.pt-carousel {
    padding-bottom: 0px;
    margin-block: 0px;
}

.carousel__container {
    max-width: 1500px;
    width: 100%;
}
.slider__wrapper {
    position: relative;
}
.slider__wrapper .pt__list {
    display: flex;                     /* ✅ instead of grid */
    gap: 15px;
    margin-top: 50px;
    margin-bottom: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider__wrapper .pt__list::-webkit-scrollbar {
    display: none;
}
.slider__wrapper .pt__item--content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}
.slider__wrapper .pt__list .pt__item {
    flex: 0 0 auto;                    /* ✅ each slide takes its own width */
    width: 225px;                      /* keep your design width */
    height: 220px;
    background-color: var(--color-light-carousel);
    color: #fff;
    object-fit: cover;
    padding: 40px 20px 20px 20px;
}
.slider__wrapper .pt__list .pt__item:hover {
    background-color: var(--color-blue-nav-carousel);
}
.pt__list .pt__item h5,
.pt__list .pt__item h4,
.pt__list .pt__item p {
    color: var(--color-white);
    font-size: 1.3rem;
    text-align: left;
    margin-left: 0;
} 
.pt__list .pt__item h4 {
    text-transform: capitalize;
    font-family: "Inter";
    font-weight: 600;
    padding-bottom: 15px;
    line-height: 1.4;
    min-height: 3em; /* ✅ Add this - adjust based on your line-height */
    /* This reserves space for 2 lines of heading */
}
.pt__list .pt__item h5 {
    text-transform: uppercase;
    font-family: "Inter";
    font-size: 1.3rem;
    font-weight: 300;
    padding-bottom: 15px;
    line-height: 1.3rem;
}

.pt__list .pt__item p {
    font-size: 1rem;
    line-height: 1.3rem;
    min-height: 5.2em; /* ✅ Add this - reserves space for ~4 lines */
    /* Adjust based on your longest paragraph */
}

.carousel__container .slider__scrollbar {
    max-width: 1500px;
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
    margin-inline: 0;
}  
.slider__scrollbar .scrollbar__track {
    height: 2px;
    width: 100%;
    background-color: #ccc;
    position: relative;
    border-radius: 4px;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
} 
.slider__scrollbar:hover .scrollbar__track {
    height: 4px;
}

.slider__scrollbar .scrollbar__thumb {
    position: absolute;
    height: 100%;
    width: 50%;
    background-color: #000;
    border-radius: inherit;
    cursor: grab;
} 
.slider__scrollbar .scrollbar__thumb:active {
    cursor: grabbing;
    height: 3px;
    top: 0;
}  
.slider__scrollbar .scrollbar__thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
}


@media (max-width: 768px) {
    .pt-carousel h2 {
        max-width: 300px;
        line-height: 1.4;
    }
    .pt-carousel p {
        padding: 0px 0px;
  }
}

/* SMALLER TABLETS LARGE PHONES  */
@media (max-width: 576px) {
    /*----- AURA CAROUSEL MOBILE  -----*/

    .pt-carousel {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .slider__wrapper .pt__list {
        display: flex;
        gap: 10px;
    }

    .slider__wrapper .pt__list .pt__item {
        flex: 0 0 auto;
        width: 280px;
        height: 280px;
        background-color: var(--color-light-carousel);
        color: #fff;
        object-fit: cover;
        padding: 150px 15px 0 20px;
    }
}