/* Team Info page */

.info-section {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px;
}

.info-section__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-section__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    white-space: pre-line;
}

.leader-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f5;
}

.leader-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.leader-card:first-child {
    padding-top: 0;
}

.leader-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e5e5ea;
    object-fit: cover;
    flex-shrink: 0;
}

.leader-card__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.leader-card__avatar--placeholder svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.leader-card__info {
    flex: 1;
    min-width: 0;
}

.leader-card__name {
    font-size: 0.95rem;
    font-weight: 700;
}

.leader-card__role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.leader-card__contact {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
}

.leader-card__contact a {
    font-size: 0.72rem;
    color: var(--accent);
    text-decoration: none;
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.link-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f5;
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    -webkit-tap-highlight-color: transparent;
}

.link-list__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.link-list__item svg {
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
}
