<!-- (team) a -->
.team-section {
    display: flex;
    gap: 30px;
    margin: 50px 0;
    padding-bottom: 30px;
    border-bottom: 2px solid #eaeaea;
    align-items: center;
}

.team-section:last-child {
    border-bottom: none;
}

.team-photo {
    width: 180px;
    aspect-ratio: 3/4; /* 📸 proporcje zdjęcia dokumentowego */
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid #ddd;
}

.team-content {
    flex: 1;
}

.team-name {
    font-size: 1.35em;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-desc {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.team-link {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 500;
}

.team-link:hover {
    text-decoration: underline;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .team-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-photo {
        width: 160px;
    }
}
<!-- (team) a -->