/* ========================================
   AUDIENCE COMPONENT - Section "Pour qui est Talaria ?"
   ======================================== */

.audience {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.audience__container {
    width: 1436px;
    max-width: calc(100% - 84px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

/* ========== En-tête centré ========== */

.audience__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.audience__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #4E203D;
    border: none;
    border-radius: 32px;
    background: rgba(78, 32, 61, 0.05);
}

.audience__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 36px;
    line-height: 120%;
    color: #4E203D;
    text-align: center;
}

.audience__subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #6F6F6F;
    text-align: center;
    max-width: 972px;
}

/* ========== Contenu principal : liste + visuel ========== */

.audience__body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 96px;
    gap: 0px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

/* ========== Liste des profils (gauche) ========== */

.audience__list {
    flex: 0 0 711px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.audience__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 24px;
    border-radius: 16px;
    transition: background var(--transition-base);
}

/* Items impairs (01, 03) ont un fond */
.audience__item:nth-child(odd) {
    background: rgba(78, 32, 61, 0.025);
}

/* Item pair (02) est transparent */
.audience__item:nth-child(even) {
    background: transparent;
}

.audience__item-number {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 32px;
    line-height: 20px;
    color: #4E203D;
}

.audience__item-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 24px;
    line-height: 20px;
    color: #4E203D;
}

.audience__item-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #6F6F6F;
}

/* ========== Image main + téléphone ========== */

.audience__bg-img {
    flex: 1 1 auto;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    margin-left: -80px;
}

/* ========== Fond décoratif ========== */

.audience__bg-gradient {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 350px;
    background: radial-gradient(ellipse at center bottom, rgba(220, 190, 160, 0.25) 0%, rgba(253, 250, 241, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .audience__body {
        flex-direction: column;
        gap: 48px;
    }

    .audience__list {
        max-width: 100%;
    }

    .audience__bg-img {
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .audience {
        padding: 60px 0;
    }

    .audience__container {
        max-width: calc(100% - 32px);
        gap: 28px;
    }

    .audience__title {
        font-size: 26px;
    }

    .audience__item {
        padding: 20px 16px;
    }

    .audience__item-number {
        font-size: 20px;
    }

    .audience__list {
        padding-left: 5%;
        padding-right: 5%;
    }

    .audience__bg-img {
        display: none;
    }
}

@media (max-width: 480px) {
    .audience {
        padding: 48px 0;
    }

    .audience__container {
        max-width: calc(100% - 24px);
        gap: 24px;
    }

    .audience__title {
        font-size: 22px;
    }

    .audience__item {
        padding: 16px 14px;
    }

    .audience__item-title {
        font-size: 14px;
    }

    .audience__item-text {
        font-size: 12px;
    }

    .audience__list {
        padding-left: 0;
        padding-right: 0;
    }
}