/* Souligné esthétique (titre hero) */
.aesthetic-underline {
    position: relative;
    display: inline-block;
}

.aesthetic-underline::after {
    content: '';
    position: absolute;
    width: 105%;
    height: 35%;
    bottom: 5%;
    left: -2.5%;
    background-color: rgba(179, 74, 105, 0.2);
    z-index: -1;
    border-radius: 4px;
}

/* Image arche (hero portrait) */
.arch-image {
    border-radius: 12rem 12rem 2rem 2rem;
}

@media (max-width: 768px) {
    .arch-image {
        border-radius: 8rem 8rem 1rem 1rem;
    }
}

/* Pattern grille communauté */
.community-dot-pattern {
    background-image: radial-gradient(circle, white 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.2;
}

/* Carousel citations */
#carousel-track {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 50%;
    }
}
