/* Carrousel Témoignages */
.atc-wrapper {
    position: relative;
    padding-bottom: 50px;
}

.atc-wrapper .swiper {
    overflow: hidden;
}

/* Card */
.atc-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Stars */
.atc-stars {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1;
}

.atc-star {
    display: inline-block;
}

.atc-star--full {
    color: #f5a623;
}

.atc-star--empty {
    color: #ddd;
}

.atc-star--partial {
    position: relative;
    color: #ddd;
}

.atc-star--partial::before {
    content: "\2733";
    content: attr(data-char);
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    color: #f5a623;
    width: var(--fill, 50%);
}

/* Use clip-path for partial star */
.atc-star--partial {
    background: linear-gradient(
        to right,
        #f5a623 var(--fill, 50%),
        #ddd var(--fill, 50%)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.atc-star--partial::before {
    display: none;
}

/* Message */
.atc-message {
    flex: 1;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.atc-message p:last-child {
    margin-bottom: 0;
}

/* Author */
.atc-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Author top variant */
.atc-card--author-top .atc-author {
    border-top: none;
    padding-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.atc-card--author-top .atc-message {
    margin-bottom: 0;
}

.atc-nom {
    font-weight: 600;
    color: #333;
}

.atc-lieu {
    color: #999;
    font-size: 0.9em;
}

.atc-lieu::before {
    content: "\2014\00a0";
}

/* Navigation arrows */
.atc-wrapper .swiper-button-prev,
.atc-wrapper .swiper-button-next {
    color: #333;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.atc-wrapper .swiper-button-prev::after,
.atc-wrapper .swiper-button-next::after {
    font-size: 16px;
}

/* Pagination */
.atc-pagination.swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.atc-pagination .swiper-pagination-bullet-active {
    background: #333;
}

/* Responsive */
@media (max-width: 767px) {
    .atc-card {
        padding: 20px;
    }

    .atc-wrapper .swiper-button-prev,
    .atc-wrapper .swiper-button-next {
        display: none;
    }
}
