.section-T11-home-intro__text > * {
    text-shadow: 0 0 14px hsla(0, 0%, 0%, 0.85);
}

.accip-team {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.accip-team__intro {
    /* text-align: center; */
    /* max-width: 720px; */
    margin: 0 auto;
}

.accip-team__intro h2 {
    margin-bottom: .5rem;
}

.accip-team__subtitle {
    color: var(--color-text-accent, var(--color-primary));
    font-size: 1.05rem;
    margin: 0;
}

.accip-team__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .accip-team__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.accip-team__card {
    display: flex;
    flex-direction: column;
    background: #fff;
/*    border-radius: 8px; */
    overflow: hidden;
/*    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);*/
}

.accip-team__pict {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.accip-team__pict img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.accip-team__content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.accip-team__motto {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
    line-height: 1.3;
    color: var(--color-text-accent, var(--color-primary));
}

.accip-team__motto i {
    font-size: 1.3rem;
}

.accip-team__name {
    margin: 0;
    font-size: 1.3rem;
}

.accip-team__role {
    margin: 0;
    color: #666;
    font-style: italic;
}

.accip-team__quote {
    margin: 0;
    border: 0;
    padding: 0;
    font-size: .95rem;
}

.accip-team__quote p {
    margin: 0 0 .5rem;
}

.accip-team__quote ul {
    margin: 0;
    padding-left: 1.1rem;
}

.accip-team__quote li {
    margin-bottom: .3rem;
}

.accip-team__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.accip-team__contact a {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: inherit;
    text-decoration: none;
}

.accip-team__contact i {
    color: var(--color-primary);
}