.teaching-team {
    margin-bottom: 16px;

    @media (width > 768px) {
        margin-block: 48px;
    }

    h2 {
        color: var(--_bg-color);
    }

    .accordion {
        display: flex;
        flex-direction: column;

        .title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #0070B8;
            color: #FDFEFF;
            padding: 12px 24px;
            border-radius: 12px 12px 0 0;
            margin-bottom: 0;
            cursor: pointer;
            margin-top: 0;

            @media (width < 767px) {
                font-size: 1.6rem;
            }

            &:before {
                display: none;
            }

            &:focus-visible {
                outline: 2px solid #0D1A22;
                outline-offset: 2px;
            }

            span {
                display: flex;
                align-items: center;
                transition: rotate 300ms ease-out;
                rotate: 180deg;
            }
        }

        .content {
            margin-bottom: 0;
            border-radius: 0 0 12px 12px;
            padding: 0;
            height: 0;
            overflow: hidden;
            transition: height 0.3s ease, block-size 0.3s ease;
            transition-behavior: allow-discrete;
            
            p:last-child, ul:last-child, li:last-child {
                margin-bottom: 0;
            }
        }

        .title[aria-expanded="true"] {
            span {
                rotate: 0deg;
            }

            + .content {
                padding: 24px;
                height: auto;
                overflow: initial;
                border: 1px solid #E2E2E2;
            }
        }

        /* Items fermés : border-radius complet */
        .title:not([aria-expanded="true"]) {
            border-radius: 12px;
        }

        .item + .item {
            margin-top: 24px;
        }
    }
}

/* @starting-style {
    .teaching-team .accordion .content {
        height: 0;
    }
} */
