/* Team List Horizontal — aum-tmlh */
.aum-tmlh-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.aum-tmlh-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border, rgba(0,0,0,0.08));
    box-sizing: border-box;
}
.aum-tmlh-item:last-child { border-bottom: none; }

/* Photo */
.aum-tmlh-photo {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.aum-tmlh-photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary, #eeeeee);
    color: var(--text-muted, #888);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Body */
.aum-tmlh-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Header row */
.aum-tmlh-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.aum-tmlh-name {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-on-bg, #111110);
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.aum-tmlh-position {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary, #3b82f6);
    margin-top: 2px;
}

/* Tag */
.aum-tmlh-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    background-color: color-mix(in srgb, var(--primary, #3b82f6) 10%, transparent);
    color: var(--primary, #3b82f6);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Bio */
.aum-tmlh-bio {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted, #6f6e69);
    margin: 0;
}

/* Social */
.aum-tmlh-social { display: flex; gap: 12px; align-items: center; }
.aum-tmlh-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--text-muted, #6f6e69);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1;
}
.aum-tmlh-social-link:hover { color: var(--primary, #3b82f6); }

@media (max-width: 480px) {
    .aum-tmlh-item { flex-direction: column; align-items: flex-start; }
    .aum-tmlh-photo { width: 72px; height: 72px; }
}
